mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-10 12:32:28 +10:00
Compare commits
23 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 92995d9c2b | |||
| b21f1648c4 | |||
| 94c04b44df | |||
| 54ed0678bf | |||
| 817ec96963 | |||
| 8ad5458e2a | |||
| a87c5edd60 | |||
| e4327736bd | |||
| 1fddbe5f92 | |||
| 2c482e7df8 | |||
| c8edcd3dad | |||
| a82c25c7cb | |||
| 73b423030f | |||
| 809551d0f8 | |||
| e795ec64d6 | |||
| f8373e4798 | |||
| a31c434fbc | |||
| 1fa8aae80a | |||
| 27b60a4df9 | |||
| d21983aab4 | |||
| 9406d78653 | |||
| c7ae0e94d7 | |||
| 308a8e3ae3 |
2
.github/workflows/lint-test-build.yml
vendored
2
.github/workflows/lint-test-build.yml
vendored
@ -39,7 +39,7 @@ jobs:
|
||||
run: pnpm run lint
|
||||
|
||||
- name: Format
|
||||
run: pnpm run format:check
|
||||
run: pnpm run format
|
||||
|
||||
- name: Test
|
||||
run: pnpm run test
|
||||
|
||||
@ -7,7 +7,7 @@ ARG NX_CLOUD_ACCESS_TOKEN
|
||||
ENV PNPM_HOME="/pnpm"
|
||||
ENV PATH="$PNPM_HOME:$PATH"
|
||||
|
||||
RUN corepack enable pnpm && corepack prepare pnpm --activate
|
||||
RUN corepack enable
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
|
||||
5
apps/artboard/src/constants/helmet.ts
Normal file
5
apps/artboard/src/constants/helmet.ts
Normal file
@ -0,0 +1,5 @@
|
||||
import { HelmetData } from "react-helmet-async";
|
||||
|
||||
export const helmetData = new HelmetData({});
|
||||
|
||||
export const helmetContext = helmetData.context;
|
||||
@ -61,8 +61,11 @@ export const ArtboardPage = () => {
|
||||
<>
|
||||
<Helmet>
|
||||
<title>{name} | Reactive Resume</title>
|
||||
|
||||
{metadata.css.visible && <style lang="css">{metadata.css.value}</style>}
|
||||
{metadata.css.visible && (
|
||||
<style id="custom-css" lang="css">
|
||||
{metadata.css.value}
|
||||
</style>
|
||||
)}
|
||||
</Helmet>
|
||||
|
||||
<Outlet />
|
||||
|
||||
@ -1,6 +1,8 @@
|
||||
import { useEffect } from "react";
|
||||
import { HelmetProvider } from "react-helmet-async";
|
||||
import { Outlet } from "react-router";
|
||||
|
||||
import { helmetContext } from "../constants/helmet";
|
||||
import { useArtboardStore } from "../store/artboard";
|
||||
|
||||
export const Providers = () => {
|
||||
@ -10,35 +12,28 @@ export const Providers = () => {
|
||||
useEffect(() => {
|
||||
const handleMessage = (event: MessageEvent) => {
|
||||
if (event.origin !== window.location.origin) return;
|
||||
|
||||
if (event.data.type === "SET_RESUME") setResume(event.data.payload);
|
||||
if (event.data.type === "SET_THEME") {
|
||||
event.data.payload === "dark"
|
||||
? document.documentElement.classList.add("dark")
|
||||
: document.documentElement.classList.remove("dark");
|
||||
}
|
||||
};
|
||||
|
||||
const resumeData = window.localStorage.getItem("resume");
|
||||
if (resumeData) {
|
||||
setResume(JSON.parse(resumeData));
|
||||
return;
|
||||
}
|
||||
|
||||
window.addEventListener("message", handleMessage);
|
||||
window.addEventListener("message", handleMessage, false);
|
||||
|
||||
return () => {
|
||||
window.removeEventListener("message", handleMessage);
|
||||
window.removeEventListener("message", handleMessage, false);
|
||||
};
|
||||
}, [setResume]);
|
||||
}, []);
|
||||
|
||||
// Only for testing, in production this will be fetched from window.postMessage
|
||||
// useEffect(() => {
|
||||
// setResume(sampleResume);
|
||||
// }, [setResume]);
|
||||
useEffect(() => {
|
||||
const resumeData = window.localStorage.getItem("resume");
|
||||
|
||||
if (resumeData) setResume(JSON.parse(resumeData));
|
||||
}, [window.localStorage.getItem("resume")]);
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
|
||||
if (!resume) return null;
|
||||
|
||||
return <Outlet />;
|
||||
return (
|
||||
<HelmetProvider context={helmetContext}>
|
||||
<Outlet />
|
||||
</HelmetProvider>
|
||||
);
|
||||
};
|
||||
|
||||
@ -6,7 +6,7 @@ import { PreviewLayout } from "../pages/preview";
|
||||
import { Providers } from "../providers";
|
||||
|
||||
export const routes = createRoutesFromChildren(
|
||||
<Route element={<Providers />} hydrateFallbackElement={<div>Loading...</div>}>
|
||||
<Route element={<Providers />}>
|
||||
<Route path="artboard" element={<ArtboardPage />}>
|
||||
<Route path="builder" element={<BuilderLayout />} />
|
||||
<Route path="preview" element={<PreviewLayout />} />
|
||||
|
||||
@ -8,6 +8,10 @@
|
||||
@apply border-current;
|
||||
}
|
||||
|
||||
body {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#root {
|
||||
@apply antialiased;
|
||||
}
|
||||
|
||||
@ -15,7 +15,7 @@ import type {
|
||||
URL,
|
||||
} from "@reactive-resume/schema";
|
||||
import { Education, Experience, Volunteer } from "@reactive-resume/schema";
|
||||
import { cn, isEmptyString, isUrl, linearTransform } from "@reactive-resume/utils";
|
||||
import { cn, isEmptyString, isUrl, linearTransform, sanitize } from "@reactive-resume/utils";
|
||||
import get from "lodash.get";
|
||||
import React, { Fragment } from "react";
|
||||
|
||||
@ -98,9 +98,9 @@ const Summary = () => {
|
||||
<div className="absolute left-[-4.5px] top-[8px] hidden size-[8px] rounded-full bg-primary group-[.main]:block" />
|
||||
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: section.content }}
|
||||
className="wysiwyg"
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(section.content) }}
|
||||
style={{ columns: section.columns }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
</main>
|
||||
</section>
|
||||
@ -224,7 +224,10 @@ const Section = <T,>({
|
||||
<div>{children?.(item as T)}</div>
|
||||
|
||||
{summary !== undefined && !isEmptyString(summary) && (
|
||||
<div dangerouslySetInnerHTML={{ __html: summary }} className="wysiwyg" />
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(summary) }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
)}
|
||||
|
||||
{level !== undefined && level > 0 && <Rating level={level} />}
|
||||
|
||||
@ -15,7 +15,7 @@ import type {
|
||||
URL,
|
||||
} from "@reactive-resume/schema";
|
||||
import { Education, Experience, Volunteer } from "@reactive-resume/schema";
|
||||
import { cn, isEmptyString, isUrl } from "@reactive-resume/utils";
|
||||
import { cn, isEmptyString, isUrl, sanitize } from "@reactive-resume/utils";
|
||||
import get from "lodash.get";
|
||||
import { Fragment } from "react";
|
||||
|
||||
@ -89,9 +89,9 @@ const Summary = () => {
|
||||
</div>
|
||||
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: section.content }}
|
||||
className="wysiwyg col-span-4"
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(section.content) }}
|
||||
style={{ columns: section.columns }}
|
||||
className="wysiwyg col-span-4"
|
||||
/>
|
||||
</section>
|
||||
);
|
||||
@ -205,7 +205,10 @@ const Section = <T,>({
|
||||
</div>
|
||||
|
||||
{summary !== undefined && !isEmptyString(summary) && (
|
||||
<div dangerouslySetInnerHTML={{ __html: summary }} className="wysiwyg" />
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(summary) }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
)}
|
||||
|
||||
{level !== undefined && level > 0 && <Rating level={level} />}
|
||||
|
||||
@ -15,7 +15,7 @@ import type {
|
||||
URL,
|
||||
} from "@reactive-resume/schema";
|
||||
import { Education, Experience, Volunteer } from "@reactive-resume/schema";
|
||||
import { cn, isEmptyString, isUrl } from "@reactive-resume/utils";
|
||||
import { cn, isEmptyString, isUrl, sanitize } from "@reactive-resume/utils";
|
||||
import get from "lodash.get";
|
||||
import { Fragment } from "react";
|
||||
|
||||
@ -89,9 +89,9 @@ const Summary = () => {
|
||||
<h4 className="mb-2 border-b pb-0.5 text-sm font-bold">{section.name}</h4>
|
||||
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: section.content }}
|
||||
className="wysiwyg"
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(section.content) }}
|
||||
style={{ columns: section.columns }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
</section>
|
||||
);
|
||||
@ -209,7 +209,7 @@ const Section = <T,>({
|
||||
|
||||
{summary !== undefined && !isEmptyString(summary) && (
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: summary }}
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(summary) }}
|
||||
className="wysiwyg group-[.sidebar]:prose-invert"
|
||||
/>
|
||||
)}
|
||||
|
||||
@ -15,7 +15,7 @@ import type {
|
||||
URL,
|
||||
} from "@reactive-resume/schema";
|
||||
import { Education, Experience, Volunteer } from "@reactive-resume/schema";
|
||||
import { cn, isEmptyString, isUrl } from "@reactive-resume/utils";
|
||||
import { cn, isEmptyString, isUrl, sanitize } from "@reactive-resume/utils";
|
||||
import get from "lodash.get";
|
||||
import { Fragment } from "react";
|
||||
|
||||
@ -109,9 +109,9 @@ const Summary = () => {
|
||||
<h4 className="mb-2 text-base font-bold">{section.name}</h4>
|
||||
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: section.content }}
|
||||
className="wysiwyg"
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(section.content) }}
|
||||
style={{ columns: section.columns }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
</section>
|
||||
);
|
||||
@ -230,7 +230,10 @@ const Section = <T,>({
|
||||
</div>
|
||||
|
||||
{summary !== undefined && !isEmptyString(summary) && (
|
||||
<div dangerouslySetInnerHTML={{ __html: summary }} className="wysiwyg" />
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(summary) }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
)}
|
||||
|
||||
{level !== undefined && level > 0 && <Rating level={level} />}
|
||||
|
||||
@ -15,7 +15,7 @@ import type {
|
||||
URL,
|
||||
} from "@reactive-resume/schema";
|
||||
import { Education, Experience, Volunteer } from "@reactive-resume/schema";
|
||||
import { cn, hexToRgb, isEmptyString, isUrl } from "@reactive-resume/utils";
|
||||
import { cn, hexToRgb, isEmptyString, isUrl, sanitize } from "@reactive-resume/utils";
|
||||
import get from "lodash.get";
|
||||
import { Fragment } from "react";
|
||||
|
||||
@ -89,9 +89,9 @@ const Summary = () => {
|
||||
<div className="p-custom space-y-4" style={{ backgroundColor: hexToRgb(primaryColor, 0.2) }}>
|
||||
<section id={section.id}>
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: section.content }}
|
||||
className="wysiwyg"
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(section.content) }}
|
||||
style={{ columns: section.columns }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
</section>
|
||||
</div>
|
||||
@ -210,7 +210,10 @@ const Section = <T,>({
|
||||
</div>
|
||||
|
||||
{summary !== undefined && !isEmptyString(summary) && (
|
||||
<div dangerouslySetInnerHTML={{ __html: summary }} className="wysiwyg" />
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(summary) }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
)}
|
||||
|
||||
{level !== undefined && level > 0 && <Rating level={level} />}
|
||||
|
||||
@ -15,7 +15,14 @@ import type {
|
||||
URL,
|
||||
} from "@reactive-resume/schema";
|
||||
import { Education, Experience, Volunteer } from "@reactive-resume/schema";
|
||||
import { cn, hexToRgb, isEmptyString, isUrl, linearTransform } from "@reactive-resume/utils";
|
||||
import {
|
||||
cn,
|
||||
hexToRgb,
|
||||
isEmptyString,
|
||||
isUrl,
|
||||
linearTransform,
|
||||
sanitize,
|
||||
} from "@reactive-resume/utils";
|
||||
import get from "lodash.get";
|
||||
import { Fragment } from "react";
|
||||
|
||||
@ -89,9 +96,9 @@ const Summary = () => {
|
||||
<h4 className="mb-2 border-b pb-0.5 text-sm font-bold">{section.name}</h4>
|
||||
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: section.content }}
|
||||
className="wysiwyg"
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(section.content) }}
|
||||
style={{ columns: section.columns }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
</section>
|
||||
);
|
||||
@ -213,7 +220,10 @@ const Section = <T,>({
|
||||
</div>
|
||||
|
||||
{summary !== undefined && !isEmptyString(summary) && (
|
||||
<div dangerouslySetInnerHTML={{ __html: summary }} className="wysiwyg" />
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(summary) }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
)}
|
||||
|
||||
{level !== undefined && level > 0 && <Rating level={level} />}
|
||||
|
||||
@ -14,7 +14,7 @@ import type {
|
||||
URL,
|
||||
} from "@reactive-resume/schema";
|
||||
import { Education, Experience, Volunteer } from "@reactive-resume/schema";
|
||||
import { cn, isEmptyString, isUrl } from "@reactive-resume/utils";
|
||||
import { cn, isEmptyString, isUrl, sanitize } from "@reactive-resume/utils";
|
||||
import get from "lodash.get";
|
||||
import React, { Fragment } from "react";
|
||||
|
||||
@ -108,9 +108,9 @@ const Summary = () => {
|
||||
</h4>
|
||||
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: section.content }}
|
||||
className="wysiwyg"
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(section.content) }}
|
||||
style={{ columns: section.columns }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
</section>
|
||||
);
|
||||
@ -221,7 +221,10 @@ const Section = <T,>({
|
||||
<div>{children?.(item as T)}</div>
|
||||
|
||||
{summary !== undefined && !isEmptyString(summary) && (
|
||||
<div dangerouslySetInnerHTML={{ __html: summary }} className="wysiwyg" />
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(summary) }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
)}
|
||||
|
||||
{level !== undefined && level > 0 && <Rating level={level} />}
|
||||
|
||||
@ -14,7 +14,7 @@ import type {
|
||||
URL,
|
||||
} from "@reactive-resume/schema";
|
||||
import { Education, Experience, Volunteer } from "@reactive-resume/schema";
|
||||
import { cn, hexToRgb, isEmptyString, isUrl } from "@reactive-resume/utils";
|
||||
import { cn, hexToRgb, isEmptyString, isUrl, sanitize } from "@reactive-resume/utils";
|
||||
import get from "lodash.get";
|
||||
import React, { Fragment } from "react";
|
||||
|
||||
@ -42,9 +42,9 @@ const Header = () => {
|
||||
</div>
|
||||
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: section.content }}
|
||||
className="wysiwyg"
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(section.content) }}
|
||||
style={{ columns: section.columns }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@ -216,7 +216,10 @@ const Section = <T,>({
|
||||
<div>{children?.(item as T)}</div>
|
||||
|
||||
{summary !== undefined && !isEmptyString(summary) && (
|
||||
<div dangerouslySetInnerHTML={{ __html: summary }} className="wysiwyg" />
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(summary) }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
)}
|
||||
|
||||
{level !== undefined && level > 0 && <Rating level={level} />}
|
||||
|
||||
@ -15,7 +15,7 @@ import type {
|
||||
URL,
|
||||
} from "@reactive-resume/schema";
|
||||
import { Education, Experience, Volunteer } from "@reactive-resume/schema";
|
||||
import { cn, isEmptyString, isUrl } from "@reactive-resume/utils";
|
||||
import { cn, isEmptyString, isUrl, sanitize } from "@reactive-resume/utils";
|
||||
import get from "lodash.get";
|
||||
import { Fragment } from "react";
|
||||
|
||||
@ -105,9 +105,9 @@ const Summary = () => {
|
||||
</div>
|
||||
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: section.content }}
|
||||
className="wysiwyg"
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(section.content) }}
|
||||
style={{ columns: section.columns }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
</div>
|
||||
</section>
|
||||
@ -217,7 +217,10 @@ const Section = <T,>({
|
||||
{url !== undefined && section.separateLinks && <Link url={url} />}
|
||||
|
||||
{summary !== undefined && !isEmptyString(summary) && (
|
||||
<div dangerouslySetInnerHTML={{ __html: summary }} className="wysiwyg" />
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(summary) }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
)}
|
||||
|
||||
{keywords !== undefined && keywords.length > 0 && (
|
||||
@ -252,7 +255,10 @@ const Section = <T,>({
|
||||
{url !== undefined && section.separateLinks && <Link url={url} />}
|
||||
|
||||
{summary !== undefined && !isEmptyString(summary) && (
|
||||
<div dangerouslySetInnerHTML={{ __html: summary }} className="wysiwyg" />
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(summary) }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
)}
|
||||
|
||||
{keywords !== undefined && keywords.length > 0 && (
|
||||
|
||||
@ -14,7 +14,7 @@ import type {
|
||||
URL,
|
||||
} from "@reactive-resume/schema";
|
||||
import { Education, Experience, Volunteer } from "@reactive-resume/schema";
|
||||
import { cn, isEmptyString, isUrl } from "@reactive-resume/utils";
|
||||
import { cn, isEmptyString, isUrl, sanitize } from "@reactive-resume/utils";
|
||||
import get from "lodash.get";
|
||||
import React, { Fragment } from "react";
|
||||
|
||||
@ -109,9 +109,9 @@ const Summary = () => {
|
||||
<h4 className="font-bold text-primary">{section.name}</h4>
|
||||
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: section.content }}
|
||||
className="wysiwyg"
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(section.content) }}
|
||||
style={{ columns: section.columns }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
</section>
|
||||
);
|
||||
@ -223,7 +223,10 @@ const Section = <T,>({
|
||||
</div>
|
||||
|
||||
{summary !== undefined && !isEmptyString(summary) && (
|
||||
<div dangerouslySetInnerHTML={{ __html: summary }} className="wysiwyg" />
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(summary) }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
)}
|
||||
|
||||
{level !== undefined && level > 0 && <Rating level={level} />}
|
||||
|
||||
@ -15,7 +15,7 @@ import type {
|
||||
URL,
|
||||
} from "@reactive-resume/schema";
|
||||
import { Education, Experience, Volunteer } from "@reactive-resume/schema";
|
||||
import { cn, isEmptyString, isUrl } from "@reactive-resume/utils";
|
||||
import { cn, isEmptyString, isUrl, sanitize } from "@reactive-resume/utils";
|
||||
import get from "lodash.get";
|
||||
import { Fragment } from "react";
|
||||
|
||||
@ -110,9 +110,9 @@ const Summary = () => {
|
||||
<h4 className="mb-2 border-b border-primary text-base font-bold">{section.name}</h4>
|
||||
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: section.content }}
|
||||
className="wysiwyg"
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(section.content) }}
|
||||
style={{ columns: section.columns }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
</section>
|
||||
);
|
||||
@ -238,7 +238,10 @@ const Section = <T,>({
|
||||
</div>
|
||||
|
||||
{summary !== undefined && !isEmptyString(summary) && (
|
||||
<div dangerouslySetInnerHTML={{ __html: summary }} className="wysiwyg" />
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(summary) }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
)}
|
||||
|
||||
{level !== undefined && level > 0 && <Rating level={level} />}
|
||||
|
||||
@ -15,7 +15,7 @@ import type {
|
||||
URL,
|
||||
} from "@reactive-resume/schema";
|
||||
import { Education, Experience, Volunteer } from "@reactive-resume/schema";
|
||||
import { cn, isEmptyString, isUrl } from "@reactive-resume/utils";
|
||||
import { cn, isEmptyString, isUrl, sanitize } from "@reactive-resume/utils";
|
||||
import get from "lodash.get";
|
||||
import { Fragment } from "react";
|
||||
|
||||
@ -90,9 +90,9 @@ const Summary = () => {
|
||||
<h4 className="mb-2 border-b pb-0.5 text-sm font-bold">{section.name}</h4>
|
||||
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: section.content }}
|
||||
className="wysiwyg"
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(section.content) }}
|
||||
style={{ columns: section.columns }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
</section>
|
||||
);
|
||||
@ -204,7 +204,10 @@ const Section = <T,>({
|
||||
</div>
|
||||
|
||||
{summary !== undefined && !isEmptyString(summary) && (
|
||||
<div dangerouslySetInnerHTML={{ __html: summary }} className="wysiwyg" />
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(summary) }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
)}
|
||||
|
||||
{level !== undefined && level > 0 && <Rating level={level} />}
|
||||
|
||||
@ -7,9 +7,10 @@ import { useMemo } from "react";
|
||||
|
||||
type Props = {
|
||||
size?: number;
|
||||
className?: string;
|
||||
};
|
||||
|
||||
export const ThemeSwitch = ({ size = 20 }: Props) => {
|
||||
export const ThemeSwitch = ({ size = 20, className }: Props) => {
|
||||
const { theme, toggleTheme } = useTheme();
|
||||
|
||||
const variants: Variants = useMemo(() => {
|
||||
@ -21,7 +22,7 @@ export const ThemeSwitch = ({ size = 20 }: Props) => {
|
||||
}, [size]);
|
||||
|
||||
return (
|
||||
<Button size="icon" variant="ghost" onClick={toggleTheme}>
|
||||
<Button size="icon" variant="ghost" className={className} onClick={toggleTheme}>
|
||||
<div className="cursor-pointer overflow-hidden" style={{ width: size, height: size }}>
|
||||
<motion.div animate={theme} variants={variants} className="flex">
|
||||
<Sun size={size} className="shrink-0" />
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: af\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Afrikaans\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -46,11 +46,11 @@ msgstr ""
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr ""
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr ""
|
||||
msgid "Add a custom field"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr ""
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr ""
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr ""
|
||||
msgid "Confident"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr ""
|
||||
msgid "Create Sample Resume"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
@ -423,14 +424,14 @@ msgstr ""
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr ""
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr ""
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr ""
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
@ -564,19 +565,19 @@ msgstr ""
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr ""
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr ""
|
||||
msgid "Hide"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr ""
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr ""
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr ""
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr ""
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr ""
|
||||
@ -853,7 +856,7 @@ msgstr ""
|
||||
msgid "Light or dark theme"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr ""
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr ""
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
@ -1043,7 +1048,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr ""
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr ""
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr ""
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr ""
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr ""
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
@ -1465,15 +1470,12 @@ msgstr ""
|
||||
msgid "Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr ""
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr ""
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: am\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Amharic\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
@ -46,11 +46,11 @@ msgstr ""
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr ""
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr ""
|
||||
msgid "Add a custom field"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr ""
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr ""
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr ""
|
||||
msgid "Confident"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr ""
|
||||
msgid "Create Sample Resume"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
@ -423,14 +424,14 @@ msgstr ""
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr ""
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr ""
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr ""
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
@ -564,19 +565,19 @@ msgstr ""
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr ""
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr ""
|
||||
msgid "Hide"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr ""
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr ""
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr ""
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr ""
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr ""
|
||||
@ -853,7 +856,7 @@ msgstr ""
|
||||
msgid "Light or dark theme"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr ""
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr ""
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
@ -1043,7 +1048,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr ""
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr ""
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr ""
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr ""
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr ""
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
@ -1465,15 +1470,12 @@ msgstr ""
|
||||
msgid "Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr ""
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr ""
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ar\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Arabic\n"
|
||||
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||
@ -46,11 +46,11 @@ msgstr "<0>ملاحظة: </0>، باستخدام API OpenAI ، فإنك تقر
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr "<0>لقد قضى المجتمع الكثير من الوقت في كتابة الوثائق للاستئناف التفاعلي، وأنا متأكد من أنه سيساعدك على البدء في التطبيق. /0><1>هناك أيضا الكثير من الأمثلة لمساعدتك على البدء، والمميزات التي قد لا تعرفها عن أيها يمكن أن تساعدك على بناء مستأنفتك المثالية. /1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>المصادقة الثنائية معطلة حاليا.</0> يمكنك تفعيلها عن طريق إضافة تطبيق مصادقة إلى حسابك."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>المصادقة الثنائية عامل مفعل.</0> سوف يطلب منك إدخال رمز في كل مرة تقوم فيها بتسجيل الدخول."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "حساب"
|
||||
msgid "Add a custom field"
|
||||
msgstr "أضافه حقل مخصص"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "إضافة عنصر جديد"
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr "التوسيط إلى اللوحة"
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "تغيير كلمة المرور"
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr "الشركة"
|
||||
msgid "Confident"
|
||||
msgstr "واثق"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "تأكيد كلمة المرور الجديدة"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr "قم بإنشاء واحدة الآن"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "إنشاء نموذج السيرة الذاتية"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "CSS مخصص"
|
||||
@ -423,14 +424,14 @@ msgstr "تصميم السيرة الذاتية بصفحة واحدة/متعدد
|
||||
msgid "Disable"
|
||||
msgstr "تعطيل"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "تعطيل المصادقة الثنائية 2FA"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "تجاهل"
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr "قم بتنزيل ملف PDF الخاص باستعادتك. يمكن استخدام هذا الملف لطباعة استعادتك، أو إرساله إلى القائمين بالتجنيد، أو تحميله على بوابات العمل."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "تنزيل PDF"
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr "المؤثرات"
|
||||
msgid "Email"
|
||||
msgstr "البريد الإلكتروني"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "تمكين المصادقة الثنائية (2FA)"
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr "استكشف القوالب المتاحة في Resume التفاعلي وعرض الاستئنافات التي تمت صياغتها معهم. ويمكنها أيضا أن تكون أمثلة للمساعدة في توجيه عملية إنشاء مستأنفتك المقبلة."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "تصدير"
|
||||
@ -564,19 +565,19 @@ msgstr "أخيرًا،"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "إصلاح الإملاء والنحو"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "مجموعة الخطوط"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "حجم الخط"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "مجموعات الخط الفرعية"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "متغير الخط"
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr "مخفي"
|
||||
msgid "Hide"
|
||||
msgstr "إخفاء"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "إخفاء الأيقونات"
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr "تحسين الكتابة"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "في حال كنت غير قادر على مسح رمز QR هذا، يمكنك أيضًا نسخ ولصق هذا الرابط في تطبيق المصادقة الخاص بك."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "في هذا القسم، يمكنك تغيير كلمة المرور الخاصة بك وتمكين/تعطيل المصادقة ذات العاملين."
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "في هذا القسم، يمكنك حذف حسابك وجميع البيانات المرتبطة بالمستخدم الخاص بك، ولكن يرجى مراعاة أن <0>هذا الإجراء لا رجعة فيه</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr "المعلومات"
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "آخر تحديث {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr "التصميم"
|
||||
@ -853,7 +856,7 @@ msgstr "مضيئ"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "سمة مضيئة أو داكنة"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "ارتفاع الخط"
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr "الاسم"
|
||||
msgid "Network"
|
||||
msgstr "الشبكة"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "كلمة مرور جديدة"
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "ملاحظة: هذا سيجعل حسابك أقل أمانًا."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "ملاحظات"
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr "تكامل OpenAI/Ollama"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "خيارات"
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr "الشركة"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "صفحة"
|
||||
@ -1043,7 +1048,7 @@ msgstr "الصفحة {pageNumber}"
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "كلمة المرور"
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr "اللون الأساسي"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr "سياسة الخصوصية"
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr "طرح مشكلة"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr "التمرير إلى المقلاة"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "التمرير للتكبير"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "ابحث عن عائلة خطوط"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "البحث عن مجموعة خطوط فرعية"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "ابحث عن متغير الخط"
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr "ابحث عن لغة"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "أمّن بالمصادقة الثنائية"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "الأمان"
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "أعدّ المصادقة الثنائية على حسابك"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "المشاركة"
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "ابدأ في بناء مستأنفتك عن طريق إعطائها اسماً."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "الإحصائيات"
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr "النظام"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "قالب"
|
||||
@ -1465,15 +1470,12 @@ msgstr "الشهادات"
|
||||
msgid "Text Color"
|
||||
msgstr "لون النص"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "كلمات المرور التي أدخلتها غير متطابقة."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "تم تأمين الاستئناف الذي تريد تحديثه، يرجى إلغاء قفل إذا كنت ترغب في إجراء أي تغييرات عليه."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr "تتبع وجهات النظر والتنزيلات"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "المصادقة الثنائية"
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr "نوع الدراسة"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "الطبقات"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "أسفل الروابط"
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr "تم التحقق من عنوان البريد الإلكتروني ال
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "لم يتم تعيين مفتاح API OpenAI الخاص بك بعد. يرجى الذهاب إلى إعدادات الحساب الخاص بك لتمكين تكامل OpenAI."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "تم تحديث كلمة المرور الخاصة بك بنجاح."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: bg\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Bulgarian\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -46,11 +46,11 @@ msgstr "<0>Забележка: </0>Използвайки API на OpenAI, ви
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr "<0>Общността е отделила много време, за да напише документацията за Reactive Resume, и съм сигурен, че тя ще ви помогне да започнете работа с приложението.</0><1>Има и много примери, които ще ви помогнат да започнете, както и функции, за които може би не знаете и които биха ви помогнали да създадете перфектното си CV.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>Понастоящем двуфакторното удостоверяване е деактивирано.</0> Можете да я активирате, като добавите приложение за удостоверяване към профила си."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>Разрешено е двуфакторно удостоверяване.</0> Всеки път, когато влизате в системата, ще бъдете помолени да въведете код."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Сметка"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Добавяне на потребителско поле"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Добавяне на нов елемент"
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr "Център Артборд"
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Промяна на паролата"
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr "Компания"
|
||||
msgid "Confident"
|
||||
msgstr "Уверен"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Потвърждаване на новата парола"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr "Създайте такъв сега"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Създаване на примерна автобиография"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "Потребителски CSS"
|
||||
@ -423,14 +424,14 @@ msgstr "Проектиране на автобиографии от една/н
|
||||
msgid "Disable"
|
||||
msgstr "Деактивиране на"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Деактивиране на 2FA"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Изхвърляне"
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr "Изтеглете PDF файл с автобиографията си. Този файл може да се използва за отпечатване на автобиографията ви, за изпращане до специалисти по подбор на персонал или за качване в портали за работа."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Изтегляне на PDF"
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr "Ефекти"
|
||||
msgid "Email"
|
||||
msgstr "Имейл"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Активиране на 2FA"
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr "Разгледайте шаблоните, налични в Reactive Resume, и вижте автобиографиите, създадени с тях. Те могат да послужат и като примери, които да ви помогнат да създадете следващата си автобиография."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Експорт"
|
||||
@ -564,19 +565,19 @@ msgstr "Накрая,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Поправяне на правописа и граматиката"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Семейство шрифтове"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Размер на шрифта"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Подгрупа шрифтове"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Варианти на шрифта"
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr "Скрит"
|
||||
msgid "Hide"
|
||||
msgstr "Скрий"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Скриване на икони"
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr "Подобряване на писането"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "В случай че не можете да сканирате този QR код, можете също така да копирате и поставите тази връзка в приложението си за удостоверяване на автентичност."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "В този раздел можете да промените паролата си и да активирате/деактивирате двуфакторното удостоверяване."
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "В този раздел можете да изтриете профила си и всички данни, свързани с него, но имайте предвид, че <0>това действие е необратимо</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr "Информация"
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Последна актуализация {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr "Макет"
|
||||
@ -853,7 +856,7 @@ msgstr "Светлина"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Светла или тъмна тема"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Височина на линията"
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr "Име"
|
||||
msgid "Network"
|
||||
msgstr "Мрежа"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Нова парола"
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Забележка: Това ще намали сигурността на акаунта ви."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Бележки"
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr "Интеграция на OpenAI/Ollama"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Опции"
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr "Организация"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Страница"
|
||||
@ -1043,7 +1048,7 @@ msgstr "Страница {pageNumber}"
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Парола"
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr "Основен цвят"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Политика за поверителност"
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr "Повдигане на въпрос"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr "Превъртете към Pan"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Превъртете, за да увеличите мащаба"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Търсене на семейство шрифтове"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Търсене на подмножество на шрифт"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Търсене на вариант на шрифт"
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr "Търсене на език"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Сигурност с двуфакторно удостоверяване"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Защита"
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Настройка на двуфакторно удостоверяване в акаунта ви"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Споделяне на"
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Започнете да изграждате автобиографията си, като й дадете име."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Статистика"
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr "Система"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Шаблон"
|
||||
@ -1465,15 +1470,12 @@ msgstr "Отзиви"
|
||||
msgid "Text Color"
|
||||
msgstr "Цвят на текста"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "Въведените пароли не съвпадат."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "Автобиографията, която искате да актуализирате, е заключена, моля, отключете я, ако искате да направите промени в нея."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr "Проследяване на изгледи и изтегляния"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Двуфакторно удостоверяване на автентичността"
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr "Вид на изследването"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Типография"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Подчертаване на връзки"
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr "Имейл адресът ви е проверен успешно."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Вашият API ключ на OpenAI все още не е зададен. Моля, отидете в настройките на профила си, за да разрешите интеграцията с OpenAI."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Вашата парола е актуализирана успешно."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: bn\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Bengali\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -46,11 +46,11 @@ msgstr "<0>দ্রষ্টব্য: </0>OpenAI API ব্যবহার ক
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr "<0>সম্প্রদায়টি প্রতিক্রিয়াশীল জীবনবৃত্তান্তের জন্য ডকুমেন্টেশন লেখার জন্য অনেক সময় ব্যয় করেছে এবং আমি নিশ্চিত যে এটি আপনাকে অ্যাপটি শুরু করতে সহায়তা করবে৷</0><1>আপনাকে শুরু করতে সাহায্য করার জন্য অনেক উদাহরণও রয়েছে এবং এমন বৈশিষ্ট্য রয়েছে যা আপনি জানেন না যেগুলি আপনাকে আপনার নিখুঁত জীবনবৃত্তান্ত তৈরি করতে সহায়তা করতে পারে।</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>দ্বি-ফ্যাক্টর প্রমাণীকরণ বর্তমানে অক্ষম আছে৷</0>আপনি আপনার অ্যাকাউন্টে একটি প্রমাণীকরণকারী অ্যাপ যোগ করে এটি সক্ষম করতে পারেন।"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>দ্বি-ফ্যাক্টর প্রমাণীকরণ সক্ষম করা হয়েছে।</0>প্রতিবার সাইন ইন করার সময় আপনাকে একটি কোড লিখতে বলা হবে।"
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "খাতা "
|
||||
msgid "Add a custom field"
|
||||
msgstr "একটি কাস্টম ক্ষেত্র যোগ করুন"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "একটি নতুন জিনিস যোগ করুন"
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr ""
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr ""
|
||||
msgid "Confident"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr ""
|
||||
msgid "Create Sample Resume"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
@ -423,14 +424,14 @@ msgstr ""
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr ""
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr ""
|
||||
msgid "Email"
|
||||
msgstr "ইমেইল"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "2FA চালু করুন"
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
@ -564,19 +565,19 @@ msgstr "অবশেষে,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "বানান ও ব্যাকরণ ঠিক করুন"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "ফন্ট ফ্যামিলি"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "ফন্টের মাপ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "বিকল্প ফন্ট"
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr "গোপন করা"
|
||||
msgid "Hide"
|
||||
msgstr "লুকানো"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "আইকনগুলো লুকিয়ে রাখুন"
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr ""
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr ""
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr ""
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr ""
|
||||
@ -853,7 +856,7 @@ msgstr ""
|
||||
msgid "Light or dark theme"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr ""
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr "নাম"
|
||||
msgid "Network"
|
||||
msgstr "নেটওয়ার্ক"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "নতুন পাসওয়ার্ড"
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "দ্রষ্টব্য: এটি আপনার অ্যাকাউন্টকে কম সুরক্ষিত করে তুলবে।"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "দ্রষ্টব্য:"
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "বিকল্পসমূহ"
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr "প্রতিষ্ঠান"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "পৃষ্ঠা"
|
||||
@ -1043,7 +1048,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "পাসওয়ার্ড"
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr "প্রাথমিক রঙ"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr ""
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr "ত্রুটি / সমস্যা তুলে ধরুন"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr ""
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr ""
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr ""
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr ""
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
@ -1465,15 +1470,12 @@ msgstr ""
|
||||
msgid "Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr ""
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr ""
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ca\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Catalan\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -46,11 +46,11 @@ msgstr ""
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr ""
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Compte"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Afegir un camp personalitzat"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Afegiu un nou element"
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr ""
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr ""
|
||||
msgid "Confident"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr ""
|
||||
msgid "Create Sample Resume"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
@ -423,14 +424,14 @@ msgstr ""
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr ""
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr "Efectes"
|
||||
msgid "Email"
|
||||
msgstr "Correu electrònic"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr ""
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
@ -564,19 +565,19 @@ msgstr "Finalment,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Corregir ortografia i gramàtica"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr ""
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr ""
|
||||
msgid "Hide"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr ""
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr ""
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr ""
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr ""
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr ""
|
||||
@ -853,7 +856,7 @@ msgstr ""
|
||||
msgid "Light or dark theme"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr ""
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr "Nom"
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
@ -1043,7 +1048,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Contrasenya"
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr ""
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr ""
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr ""
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr ""
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr ""
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
@ -1465,15 +1470,12 @@ msgstr ""
|
||||
msgid "Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr ""
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr ""
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: cs\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Czech\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n"
|
||||
@ -46,11 +46,11 @@ msgstr "<0>Poznámka </0>: Používáním rozhraní API OpenAI berete na vědom
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr "<0>Komunita strávila spoustu času psaním dokumentace k aplikaci Reactive Resume a jsem si jistý, že vám pomůže začít s aplikací pracovat.</0><1>Je zde také spousta příkladů, které vám pomohou začít, a funkcí, o kterých možná nevíte a které by vám mohly pomoci vytvořit dokonalý životopis.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>Dvoufaktorové ověřování je v současné době zakázáno.</0> Můžete jej povolit přidáním aplikace autentizátoru do svého účtu."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>Je povoleno dvoufaktorové ověřování.</0> Při každém přihlášení budete vyzváni k zadání kódu."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Účet"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Přidání vlastního pole"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Přidat novou položku"
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr "Střed Artboard"
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Změnit heslo"
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr "Společnost"
|
||||
msgid "Confident"
|
||||
msgstr "Spolehlivost"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Potvrďte nové heslo"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr "Vytvořit nyní"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Vytvořit ukázkový životopis"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "Vlastní CSS"
|
||||
@ -423,14 +424,14 @@ msgstr "Obnovení jedné nebo více stránek"
|
||||
msgid "Disable"
|
||||
msgstr "Zakázat"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Zakázat 2FA"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Zahodit"
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr "Stáhněte si svůj životopis ve formátu PDF. Tento soubor lze použít k vytištění životopisu, jeho odeslání náborářům nebo nahrání na pracovní portály."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Stáhnout PDF"
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr "Efekty"
|
||||
msgid "Email"
|
||||
msgstr "e-mail"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Aktivovat overeni 2FA"
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr "Prozkoumejte šablony dostupné v Reactive Resume a podívejte se na obnovení s nimi. Mohli by také sloužit jako příklady, které by pomohly řídit vytvoření vašeho dalšího životopisu."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Exportovat"
|
||||
@ -564,19 +565,19 @@ msgstr "Konečně"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Fix Spelling & Grammar"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Rodina písma"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Font Size"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Podmnožina písma"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Font Variants"
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr "Hidden"
|
||||
msgid "Hide"
|
||||
msgstr "Skrýt"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Skrýt ikony"
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr "Zlepšit psaní"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "V případě, že nemůžete naskenovat tento QR kód, můžete také zkopírovat tento odkaz do vaší ověřovací aplikace."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "V této sekci můžete změnit své heslo a povolit/zakázat dvoufaktorové ověřování."
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "V této sekci můžete smazat svůj účet a všechna data spojená s vaším uživatelem, ale mějte prosím na paměti, že <0>tato akce je nevratná</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr "Informace"
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Naposledy aktualizováno {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr "Rozložení"
|
||||
@ -853,7 +856,7 @@ msgstr "Světlý"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Světlý nebo tmavý motiv"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Výška řádku"
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr "Název"
|
||||
msgid "Network"
|
||||
msgstr "Síť"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Nové heslo"
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Poznámka: Váš účet bude méně bezpečný."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Poznámky"
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr "Integrace OpenAI/Ollama"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Možnosti"
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr "Organizace"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Stránka"
|
||||
@ -1043,7 +1048,7 @@ msgstr "Stránka {pageNumber}"
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Heslo"
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr "Primární barva"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Ochrana osobních údajů"
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr "Vyvolat problém"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr "Posuňte se na Pan"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Posouvání pro zvětšení"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Hledat rodinu písem"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Hledat podsadu písma"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Hledat variantu písma"
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr "Hledat jazyk"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Zabezpečit s dvoufaktorovým ověřením"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Zabezpečení"
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Nastavení dvoufaktorového ověřování na vašem účtu"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Sdílení"
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Začněte budovat svůj životopis zadáním jména."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Statistiky"
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr "Systém"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Šablona"
|
||||
@ -1465,15 +1470,12 @@ msgstr "Referenční údaje"
|
||||
msgid "Text Color"
|
||||
msgstr "Barva textu"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "Zadaná hesla se neshodují."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "Pokračování aktualizace, které chcete aktualizovat, je uzamknuto, pokud chcete provést nějaké změny."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr "Sledovat zobrazení a stahování"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Dvoufaktorové ověření"
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr "Typ studia"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Typografie"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Podtrhnout odkazy"
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr "Vaše e-mailová adresa byla úspěšně ověřena."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Váš OpenAI API klíč zatím nebyl nastaven. Přejděte do nastavení účtu a povolte OpenAI integraci."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Vaše heslo bylo úspěšně aktualizováno."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: da\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Danish\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -46,11 +46,11 @@ msgstr "<0>Bemærk:</0> Ved at bruge OpenAI API'en anerkender og accepterer du <
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr "<0>Fællesskabet har brugt meget tid på at skrive dokumentationen til Reactive Resume, og jeg er sikker på, at det vil hjælpe dig i gang med appen.</0> <1>Der er også en masse eksempler til at hjælpe dig i gang, og funktioner, som du måske ikke kender til, som kan hjælpe dig med at opbygge dit perfekte CV.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>Tofaktorgodkendelse er i øjeblikket deaktiveret.</0> Du kan aktivere det ved at tilføje en godkendelsesapp til din konto."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>Tofaktorgodkendelse er aktiveret.</0> Du bliver bedt om at indtaste en kode, hver gang du logger ind."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Konto"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Tilføj et brugerdefineret felt"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Tilføj et nyt element"
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr "Center tegnebræt"
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Skift adgangskode"
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr "Virksomhed"
|
||||
msgid "Confident"
|
||||
msgstr "Selvsikker"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Bekræft ny adgangskode"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr "Opret en nu"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Opret eksempel på CV"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "Brugerdefineret CSS"
|
||||
@ -423,14 +424,14 @@ msgstr "Design af enkelt- og flersidede CV'er"
|
||||
msgid "Disable"
|
||||
msgstr "Deaktivér"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Deaktivér 2FA"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Kassér"
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr "Download en PDF af dit CV. Denne fil kan bruges til at udskrive dit CV, sende det til rekrutteringsfolk eller uploade det på jobportaler."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Download PDF"
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr "Effekter"
|
||||
msgid "Email"
|
||||
msgstr "Email"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Aktiver 2FA"
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr "Udforsk de tilgængelige skabeloner i Reactive Resume og se de CV'er der er lavet med dem. De kan også tjene som eksempler til at hjælpe med at guide oprettelsen af dit næste CV."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Eksportér"
|
||||
@ -564,19 +565,19 @@ msgstr "Endelig,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Ret stavning og grammatik"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Skrifttype"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Skriftstørrelse"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Skrifttype-undersæt"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Skrifttype-varianter"
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr "Skjult"
|
||||
msgid "Hide"
|
||||
msgstr "Skjul"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Skjul ikoner"
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr "Forbedre skrivning"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Hvis du ikke kan scanne denne QR-kode, kan du også copy-paste dette link i din authenticator-app."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "I dette afsnit kan du ændre din adgangskode og aktivere/deaktivere to-faktor godkendelse."
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "I dette afsnit kan du slette din konto og alle de data, der er knyttet til din bruger, men husk, at <0>denne handling er uigenkaldelig</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr "Information"
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Sidst opdateret {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr "Layout"
|
||||
@ -853,7 +856,7 @@ msgstr "Lyst"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Lyst eller mørkt tema"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Linjehøjde"
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr "Navn"
|
||||
msgid "Network"
|
||||
msgstr "Netværk"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Ny adgangskode"
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Bemærk: Dette vil gøre din konto mindre sikker."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Noter"
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr "OpenAI/Ollama-integration"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Indstillinger"
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr "Organisation"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Side"
|
||||
@ -1043,7 +1048,7 @@ msgstr "Side {pageNumber}"
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Adgangskode"
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr "Primær farve"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Fortrolighedspolitik"
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr "Løft et problem"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr "Rul til Pan"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Rul til zoom"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Søg efter en skrifttypefamilie"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Søg efter et skrifttypeundersæt"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Søg efter en skrifttypevariant"
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr "Søg efter et sprog"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Sikker med to-faktor godkendelse"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Sikkerhed"
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Opsæt to-faktor godkendelse på din konto"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Deling"
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Begynd at opbygge dit CV ved at give det et navn."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Statistik"
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr "System"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Skabelon"
|
||||
@ -1465,15 +1470,12 @@ msgstr "Udtalelser"
|
||||
msgid "Text Color"
|
||||
msgstr "Tekstfarve"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "De indtastede adgangskoder matcher ikke."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "Det CV, du vil opdatere, er låst. Lås op, hvis du vil foretage ændringer i det."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr "Spor visninger og downloads"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "To-faktor godkendelse"
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr "Type af studie"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Typografi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Understreg links"
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr "Din e-mailadresse er blevet verificeret."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Din OpenAI API-nøgle er ikke blevet indstillet endnu. Gå til dine kontoindstillinger for at aktivere OpenAI-integration."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Din adgangskode er blevet ændret."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: de\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: German\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -46,11 +46,11 @@ msgstr "<0>Hinweis:</0> Wenn du die OpenAI API nutzt, erkennst du die <1>Nutzung
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr "<0>Die Community hat viel Zeit mit der Erstellung der Dokumentation für Reactive Resume verbracht. Ich bin mir sicher, dass sie dir beim Einstieg in die App helfen wird.</0><1>Darin findest du viele Beispiele, sowie Erklärungen für Funktionen, von denen du vielleicht noch nichts weißt, die dir aber helfen könnten, deinen perfekten Lebenslauf zu erstellen.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>Zwei-Faktor-Authentifizierung ist derzeit deaktiviert.</0> Du kannst sie aktivieren, indem Du eine Authentifizierungs-App Deinem Konto hinzufügst."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>Zwei-Faktor-Authentifizierung ist aktiviert.</0> Du wirst bei jeder Anmeldung aufgefordert, einen Code einzugeben."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Konto"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Benutzerdefiniertes Feld hinzufügen"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Eintrag hinzufügen"
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr "Artboard zentrieren"
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Passwort ändern"
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr "Unternehmen"
|
||||
msgid "Confident"
|
||||
msgstr "Selbstbewusst"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Neues Passwort bestätigen"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr "Jetzt eins erstellen"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Musterlebenslauf erstellen"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr "Aktuelles Passwort"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "Benutzerdefiniertes CSS"
|
||||
@ -423,14 +424,14 @@ msgstr "Entwerfe ein- oder mehrseitige Lebensläufe"
|
||||
msgid "Disable"
|
||||
msgstr "Deaktivieren"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "2FA deaktivieren"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Verwerfen"
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr "Lade Deinen Lebenslauf als PDF herunter. Diese Datei kannst Du dann ausdrucken, an Recruiter schicken oder in Jobbörsen hochladen."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "PDF herunterladen"
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr "Effekte"
|
||||
msgid "Email"
|
||||
msgstr "E-Mail"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "2FA aktivieren"
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr "Sieh dir die verfügbaren Vorlagen in Reactive Resume an und betrachte die Lebensläufe, die damit erstellt wurden. Sie können auch als Beispiele dienen, um dich bei der Erstellung deines nächsten Lebenslaufs zu inspirieren."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Exportieren"
|
||||
@ -564,19 +565,19 @@ msgstr "Endlich!"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Rechtschreibung und Grammatik korrigieren"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Schriftfamilie"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Schriftgröße"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Schriftart-Subset"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Schriftvariante"
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr "Ausgeblendet"
|
||||
msgid "Hide"
|
||||
msgstr "Ausblenden"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Symbole ausblenden"
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr "Schreiben verbessern"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Falls Du diesen QR-Code nicht scannen kannst, kopiere den Link und in füge ihn in Deine Authenticator-App ein."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "In diesem Bereich kannst du dein Passwort ändern und die Zwei-Faktor-Authentifizierung aktivieren oder deaktivieren."
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "In diesem Bereich kannst du dein Konto und alle damit verbundenen Daten löschen. Bitte bedenke, dass <0>diese Aktion nicht rückgängig gemacht werden kann</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr "Informationen"
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Letzte Aktualisierung: {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr "Layout"
|
||||
@ -853,7 +856,7 @@ msgstr "Hell"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Helles oder dunkles Design"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Zeilenhöhe"
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr "Name"
|
||||
msgid "Network"
|
||||
msgstr "Netzwerk"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Neues Passwort"
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Achtung: Dadurch wird dein Konto weniger sicher sein."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Notizen"
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr "OpenAI/Ollama Integration"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Optionen"
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr "Organisation"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Seite"
|
||||
@ -1043,7 +1048,7 @@ msgstr "Seite {pageNumber}"
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Passwort"
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr "Primärfarbe"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Datenschutzerklärung"
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr "Problem melden"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr "Zum Schwenken blättern"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Zum Zoom blättern"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Suche nach einer Schriftfamilie"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Nach einem Schriftart-Subset suchen"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Nach einer Schriftvariante suchen"
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr "Nach einer Sprache suchen"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Abgesichert mit Zwei-Faktor-Authentifizierung"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Sicherheit"
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Zwei-Faktor-Authentifizierung für dein Konto einrichten"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Freigeben"
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Beginne mit der Erstellung Deines Lebenslaufs, indem Du ihm einen Namen gibst."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Statistiken"
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr "System"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Vorlage"
|
||||
@ -1465,15 +1470,12 @@ msgstr "Erfahrungsberichte"
|
||||
msgid "Text Color"
|
||||
msgstr "Schriftfarbe"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "Die eingegebenen Passwörter stimmen nicht überein."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "Der Lebenslauf, den Du aktualisieren möchtest, ist gesperrt. Bitte entsperre ihn, falls Du Änderungen daran vornehmen möchtest."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr "Statistiken für Aufrufe und Downloads"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Zwei-Faktor-Authentifizierung"
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr "Studienart"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Typografie"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Links unterstreichen"
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr "Deine E-Mail-Adresse wurde erfolgreich verifiziert."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Du hast noch keinen OpenAI API-Schlüssel abgespeichert. Gehe in deine Kontoeinstellungen, um die OpenAI-Integration zu aktivieren."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Dein Passwort wurde erfolgreich geändert."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: el\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Greek\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -46,11 +46,11 @@ msgstr "<0>Σημείωση: </0>Χρησιμοποιώντας το API του
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr "<0>Η κοινότητα έχει αφιερώσει πολύ χρόνο στη συγγραφή της τεκμηρίωσης για το Reactive Resume και είμαι σίγουρος ότι θα σας βοηθήσει να ξεκινήσετε με την εφαρμογή.</0><1>Υπάρχουν επίσης πολλά παραδείγματα που θα σας βοηθήσουν να ξεκινήσετε, καθώς και χαρακτηριστικά που ίσως δεν γνωρίζετε και τα οποία θα μπορούσαν να σας βοηθήσουν να φτιάξετε το τέλειο βιογραφικό σας.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>Ο έλεγχος ταυτότητας δύο παραγόντων είναι επί του παρόντος απενεργοποιημένος.</0> Μπορείτε να τον ενεργοποιήσετε προσθέτοντας μια εφαρμογή ελέγχου ταυτότητας στο λογαριασμό σας."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>Ο έλεγχος ταυτότητας δύο παραγόντων είναι ενεργοποιημένος.</0> Θα σας ζητηθεί να εισάγετε έναν κωδικό κάθε φορά που συνδέεστε."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Λογαριασμός χρήστη"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Προσθέστε ένα προσαρμοσμένο πεδίο"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Προσθήκη νέου αντικείμενου"
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr "Κεντράρισμα Πίνακα"
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Αλλαγή κωδικού πρόσβασης"
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr "Εταιρεια"
|
||||
msgid "Confident"
|
||||
msgstr "Αυτοπεποίθηση"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Επιβεβαιώστε τον νέο κωδικό πρόσβασης"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr "Δημιουργήστε ένα τώρα"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Δημιουργία νέου βιογραφικού σημειώματος"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "Προσαρμοσμένη CSS"
|
||||
@ -423,14 +424,14 @@ msgstr "Σχεδιασμός μονοσέλιδων/πολυσέλιδων βι
|
||||
msgid "Disable"
|
||||
msgstr "Απενεργοποίηση"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Απενεργοποίηση 2FA"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Απόρριψη"
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr "Κατεβάστε ένα PDF του βιογραφικού σας σημειώματος. Αυτό το αρχείο μπορεί να χρησιμοποιηθεί για να εκτυπώσετε το βιογραφικό σας, να το στείλετε σε εργοδότες ή να το ανεβάσετε σε πύλες εργασίας."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Λήψη PDF"
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr "Εφέ:"
|
||||
msgid "Email"
|
||||
msgstr "Ηλ.Ταχυδρομείο"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Ενεργοποίηση 2FA"
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr "Εξερευνήστε τα πρότυπα που είναι διαθέσιμα στο Reactive Resume και δείτε τα βιογραφικά που έχουν δημιουργηθεί με αυτά. Θα μπορούσαν επίσης να χρησιμεύσουν ως παραδείγματα που θα σας βοηθήσουν να καθοδηγήσετε τη δημιουργία του επόμενου βιογραφικού σας."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Εξαγωγή"
|
||||
@ -564,19 +565,19 @@ msgstr "Τέλος,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Ορθογραφία & γραμματική"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Οικογένεια γραμματοσειράς"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Μέγεθος γραμματοσειράς"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Υποσύνολο γραμματοσειρών"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Παραλλαγές γραμματοσειράς"
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr "Hidden"
|
||||
msgid "Hide"
|
||||
msgstr "Απόκρυψη"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Απόκρυψη Εικονιδίων"
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr "Βελτίωση Εγγραφής"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Σε περίπτωση που δεν μπορείτε να σαρώσετε αυτόν τον κωδικό QR, μπορείτε επίσης να αντιγράψετε αυτόν τον σύνδεσμο στην εφαρμογή ελέγχου ταυτότητας."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "Σε αυτή την ενότητα, μπορείτε να αλλάξετε τον κωδικό πρόσβασής σας και να ενεργοποιήσετε/απενεργοποιήσετε τον έλεγχο ταυτότητας δύο παραγόντων."
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "Σε αυτή την ενότητα, μπορείτε να διαγράψετε το λογαριασμό σας και όλα τα δεδομένα που σχετίζονται με τον χρήστη σας, αλλά λάβετε υπόψη ότι <0>αυτή η ενέργεια είναι μη αναστρέψιμη</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr "Πληροφορίες"
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Τελευταία ενημέρωση {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr "Διάταξη"
|
||||
@ -853,7 +856,7 @@ msgstr "Φωτεινό"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Ανοιχτό ή σκοτεινό θέμα"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Ύψος Γραμμής"
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr "Ονομα"
|
||||
msgid "Network"
|
||||
msgstr "Τύπος δικτύου"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Νέος κωδικός"
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Σημείωση: Αυτό θα καταστήσει το λογαριασμό σας λιγότερο ασφαλή."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Σημειώσεις"
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr "Ενσωμάτωση OpenAI/Ollama"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Ρυθμίσεις"
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr "Οργανισμος"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Σελίδα"
|
||||
@ -1043,7 +1048,7 @@ msgstr "Σελίδα {pageNumber}"
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Κωδικός"
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr "Βασικό χρώμα"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Πολιτική Απορρήτου"
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr "Θέστε ένα θέμα"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr "Μετακινηθείτε στο Pan"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Μετακινηθείτε στο Ζουμ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Αναζήτηση οικογένειας γραμματοσειρών"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Αναζήτηση οικογένειας γραμματοσειρών"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Αναζήτηση οικογένειας γραμματοσειρών"
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr "Αναζήτηση γλώσσας"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Ασφάλεια με έλεγχο ταυτότητας δύο παραγόντων"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Ασφάλεια"
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Ρυθμίστε τον έλεγχο ταυτότητας δύο παραγόντων στο λογαριασμό σας"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Κοινοποίηση"
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Ξεκινήστε να φτιάχνετε το βιογραφικό σας δίνοντάς του ένα όνομα."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Στατιστικά"
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr "Σύστημα"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Πρότυπο"
|
||||
@ -1465,15 +1470,12 @@ msgstr "Αναφορές πελατών"
|
||||
msgid "Text Color"
|
||||
msgstr "Χρώματα κειμένου"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "Οι κωδικοί πρόσβασης που εισάγατε δεν ταιριάζουν"
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "Το βιογραφικό σημείωμα που θέλετε να ενημερώσετε είναι κλειδωμένο, παρακαλούμε ξεκλειδώστε το αν θέλετε να κάνετε αλλαγές σε αυτό."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr "Παρακολούθηση προβολών και λήψεων"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Ελεγχος ταυτότητας δυο σταδίων"
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr "Τύπος μελέτης"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Τυπογραφία"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Υπογράμμιση συνδέσμων"
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr "Η διεύθυνση email σας έχει επαληθευτεί επ
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Το OpenAI API κλειδί σας δεν έχει οριστεί ακόμα. Παρακαλώ πηγαίνετε στις ρυθμίσεις του λογαριασμού σας για να ενεργοποιήσετε την ενοποίηση OpenAI."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Ο κωδικός πρόσβασής σας έχει ενημερωθεί με επιτυχία."
|
||||
|
||||
|
||||
@ -46,11 +46,11 @@ msgstr "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Account"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Add a custom field"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Add a new item"
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr "Center Artboard"
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Change Password"
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr "Company"
|
||||
msgid "Confident"
|
||||
msgstr "Confident"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Confirm New Password"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr "Create one now"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Create Sample Resume"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr "Current Password"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "Custom CSS"
|
||||
@ -423,14 +424,14 @@ msgstr "Design single/multi page resumes"
|
||||
msgid "Disable"
|
||||
msgstr "Disable"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Disable 2FA"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Discard"
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Download PDF"
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr "Effects"
|
||||
msgid "Email"
|
||||
msgstr "Email"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Enable 2FA"
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr "Explore the templates available in Reactive Resume and view the resumes crafted with them. They could also serve as examples to help guide the creation of your next resume."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Export"
|
||||
@ -564,19 +565,19 @@ msgstr "Finally,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Fix Spelling & Grammar"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Font Family"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Font Size"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Font Subset"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Font Variants"
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr "Hidden"
|
||||
msgid "Hide"
|
||||
msgstr "Hide"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Hide Icons"
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr "Improve Writing"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "In this section, you can delete your account and all the data associated to your user, but please keep in mind that <0>this action is irreversible</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr "Information"
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Last updated {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr "Layout"
|
||||
@ -853,7 +856,7 @@ msgstr "Light"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Light or dark theme"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Line Height"
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr "Name"
|
||||
msgid "Network"
|
||||
msgstr "Network"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "New Password"
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Note: This will make your account less secure."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Notes"
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr "OpenAI/Ollama Integration"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Options"
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr "Organization"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Page"
|
||||
@ -1043,7 +1048,7 @@ msgstr "Page {pageNumber}"
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Password"
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr "Primary Color"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Privacy Policy"
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr "Raise an issue"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr "Scroll to Pan"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Scroll to Zoom"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Search for a font family"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Search for a font subset"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Search for a font variant"
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr "Search for a language"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Secure with two-factor authentication"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Security"
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Setup two-factor authentication on your account"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Sharing"
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Start building your resume by giving it a name."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Statistics"
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr "System"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Template"
|
||||
@ -1465,15 +1470,12 @@ msgstr "Testimonials"
|
||||
msgid "Text Color"
|
||||
msgstr "Text Color"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "The passwords you entered do not match."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr "Track views and downloads"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Two-Factor Authentication"
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr "Type of Study"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Typography"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Underline Links"
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr "Your email address has been verified successfully."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Your password has been updated successfully."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: es\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Spanish\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -46,11 +46,11 @@ msgstr "<0>Nota:</0> Al utilizar la API de OpenAI, reconoces y aceptas los <1>t
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr "<0>La comunidad ha dedicado mucho tiempo a escribir la documentación de Reactive Resume, y estoy seguro de que te ayudará al utilizar la aplicación.</0><1>También hay un montón de ejemplos que te ayudarán a empezar, y características que quizás no conozcas y que podrían ayudarte a construir un currículum perfecto.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>La autenticación de doble factor está actualmente deshabilitada.</0> Puedes habilitarla añadiendo una aplicación de autenticación a tu cuenta."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>La autenticación de doble factor está habilitada.</0> Se te pedirá que introduzcas un código cada vez que inicies sesión."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Cuenta"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Añadir campo personalizado"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Añadir un nuevo elemento"
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr "Mesa de trabajo central"
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Cambiar contraseña"
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr "Empresa"
|
||||
msgid "Confident"
|
||||
msgstr "Confiado"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Confirmar nueva contraseña"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr "Crear uno ahora"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Crear un currículum de ejemplo"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "CSS personalizado"
|
||||
@ -423,14 +424,14 @@ msgstr "Diseñar currículums de una o varias páginas"
|
||||
msgid "Disable"
|
||||
msgstr "Deshabilitar"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Deshabilitar 2FA"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Descartar"
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr "Descarga un PDF de tu currículum. Este archivo se puede utilizar para imprimir tu currículum, enviarlo a los reclutadores o cargarlo en portales de empleo."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Descargar PDF"
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr "Efectos"
|
||||
msgid "Email"
|
||||
msgstr "Correo electrónico"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Habilitar 2FA"
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr "Explora las plantillas disponibles en Reactive Resume y ve los currículums elaborados con ellas. También podrían servir como ejemplos para ayudar a guiar la creación de tu próximo currículum."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Exportar"
|
||||
@ -564,19 +565,19 @@ msgstr "Por último,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Corregir la ortografía y la gramática"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Familia tipográfica"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Tamaño de fuente"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Subconjunto de fuentes"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Variante de fuente"
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr "Oculto"
|
||||
msgid "Hide"
|
||||
msgstr "Ocultar"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Ocultar iconos"
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr "Mejorar la escritura"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "En caso de que no puedas escanear este código QR, también puedes copiar y pegar este enlace en tu aplicación de autenticación."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "En esta sección, puedes cambiar tu contraseña y habilitar o deshabilitar la autenticación de doble factor."
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "En esta sección podrás eliminar tu cuenta y todos los datos asociados a tu usuario, pero ten en cuenta que <0>esta acción es irreversible</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr "Información"
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Última actualización: {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr "Diseño"
|
||||
@ -853,7 +856,7 @@ msgstr "Claro"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Tema claro u oscuro"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Altura de la línea"
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr "Nombre"
|
||||
msgid "Network"
|
||||
msgstr "Red"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Nueva contraseña"
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Nota: Esto hará que tu cuenta sea menos segura."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Notas"
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr "Integración OpenAI/Ollama"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Opciones"
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr "Organización"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Página"
|
||||
@ -1043,7 +1048,7 @@ msgstr "Página {pageNumber}"
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Contraseña"
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr "Color primario"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Política de privacidad"
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr "Reportar problema"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr "Desplácese hasta Pan"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Zoom"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Buscar una familia tipográfica"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Buscar un subconjunto de fuentes"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Buscar una variante de fuente"
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr "Buscar un idioma"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Seguridad con autenticación de doble factor"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Seguridad"
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Configura la autenticación de doble factor en tu cuenta"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Compartir"
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Comienza a crear tu currículum dándole un nombre."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Estadísticas"
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr "Sistema"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Plantilla"
|
||||
@ -1465,15 +1470,12 @@ msgstr "Testimonios"
|
||||
msgid "Text Color"
|
||||
msgstr "Color del texto"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "Las contraseñas ingresadas no coinciden."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "El currículum que deseas actualizar está bloqueado; desbloquéalo si deseas realizar algún cambio."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr "Seguimiento de visitas y descargas"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Autenticación de doble factor"
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr "Tipo de estudio"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Tipografía"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Subrayar enlaces"
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr "Tu dirección de correo electrónico se ha verificado con éxito."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Su clave API de OpenAI aún no ha sido configurada. Por favor, vaya a la configuración de su cuenta para habilitar la integración de OpenAI."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Tu contraseña se ha actualizado con éxito."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: fa\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Persian\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -46,11 +46,11 @@ msgstr "<0>توجه:</0> با استفاده از امکانات OpenAI API، <1
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr "<0>جامعه Reactive Resume زمان زیادی را صرف نوشتن مستندات کرده است، و من مطمئن هستم که به شما در شروع کار با برنامه کمک خواهد کرد.</0> <1>همچنین مثالها و تمپلتهای زیادی وجود دارد که به شما در شروع کار کمک میکند، و شاید این مثالها در شناخت امکاناتی که ممکن است در روند ساختن رزومه ندانید مفید باشند.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0> احراز هویت دو مرحلهای در حال حاضر غیرفعال است.</0> می توانید با نصب یک اپلیکیشن احراز هویت (مثل Google Authenticator یا Microsoft Authenticator) و افزودن آن به حساب خود، ورود دو مرحلهای را فعال کنید."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>احراز هویت دو عاملی فعال است.</0> در هر بار ورود، از شما خواسته میشود که یک کد وارد کنید."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "حساب"
|
||||
msgid "Add a custom field"
|
||||
msgstr "افزودن فیلد دلخواه"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "افزودن مورد جدید"
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr "Center Artboard"
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "تغییر رمز عبور"
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr "شرکت"
|
||||
msgid "Confident"
|
||||
msgstr "مطمئن"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "تایید گذرواژه جدید"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr "اکنون یکی ایجاد کنید"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "ایجاد نمونه رزومه"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
@ -423,14 +424,14 @@ msgstr "طراحی رزومه تک / چند صفحهای"
|
||||
msgid "Disable"
|
||||
msgstr "غیرفعال"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "غیرفعالسازی ورود دو مرحلهای"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "صرفنظر"
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr "دریافت یک پیدیاف از رزومهی خود. این فایل میتواند برای چاپ رزومهی شما، ارسال آن به کارفرمایان، یا آپلود آن در پورتالهای کاریابی استفاده شود."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "دربافت پیدیاف"
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr "جلوهها"
|
||||
msgid "Email"
|
||||
msgstr "ایمیل"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "فعالسازی ورود دو مرحلهای"
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr "قالبهای موجود در Reactive Resume را بررسی کرده و رزومههای تولید شده با آنها را مشاهده کنید. آنها همچنین میتوانند به عنوان نمونهها برای کمک در هدایت ایجاد رزومه بعدی شما خدمت کنند."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "خروجی گرفتن"
|
||||
@ -564,19 +565,19 @@ msgstr "سرانجام،"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "تصحیح املا و گرامر"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "خانواده فونت"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "اندازه فونت"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "زیر مجموعه فونت"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "انواع فونت"
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr "پنهان"
|
||||
msgid "Hide"
|
||||
msgstr "پنهان کردن"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "آیکونها را پنهان کن"
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr "بهبود بخشیدن نگارش"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "در صورت عدم توانایی شما برای اسکن این کد QR، میتوانید همچنین این لینک را به برنامه authenticator خود کپی و پیست کنید."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "در این بخش، شما میتوانید رمز عبور خود را تغییر دهید و احراز هویت دو عاملی را فعال یا غیرفعال کنید."
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "در این بحث، شما میتوانید حساب کاربری خود را و تمام دادههای مرتبط با کاربر خود حذف کنید، اما لطفاً به خاطر داشته باشید که <0>این عملیات غیرقابل بازگشت</0> است."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr "اطلاعات"
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "آخرین بروزرسانی {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr "چیدمان"
|
||||
@ -853,7 +856,7 @@ msgstr "روشن"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "تم روشن یا تاریک"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "فاصلهی بین خطوط"
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr "نام"
|
||||
msgid "Network"
|
||||
msgstr "شبکه"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "رمز عبور جدید"
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "توجه: این باعث کاهش امنیت حساب کاربری شما می شود."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "یادداشتها"
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "گزینهها"
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr "سازمان"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "صفحه"
|
||||
@ -1043,7 +1048,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "رمز عبور"
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr "رنگ اصلی"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr "سیاست حفظ حریم شخصی"
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr "ایجاد یک گزارش"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr ""
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "جستجو برای فونت"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "جستجو برای زیرمجموعه فونت"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "جستجو برای فونت"
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr "جستجو برای زبان"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "امن با احراز هویت دو عاملی"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "امنیت"
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "راهاندازی تأیید هویت دو مرحلهای بر روی حساب کاربری خود"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "اشتراکگذاری"
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "شروع به ساخت رزومه خود با دادن یک نام به آن کنید."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "آمارها"
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr "سامانه"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "قالب"
|
||||
@ -1465,15 +1470,12 @@ msgstr "رضایت ها"
|
||||
msgid "Text Color"
|
||||
msgstr "رنگ متن"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "رمز عبورهایی که وارد کردهاید مطابقت ندارند."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "رزومهای که میخواهید بهروزرسانی کنید قفل شده است، لطفاً اگر میخواهید تغییری در آن انجام دهید آن را باز کنید."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr "بررسی تعداد بازدیدها و دانلودها"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "احراز هویت دو مرحلهای"
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr "نوع تحصیلات"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "تایپوگرافی"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "زیر پیوندها خط بکش"
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr "آدرس ایمیل شما با موفقیت تأیید شد."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "کلید API OpenAI شما هنوز تنظیم نشده است. لطفاً به تنظیمات حساب کاربری خود بروید تا امکان ادغام OpenAI را فعال کنید."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "رمز عبور شما با موفقیت به روز شد."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: fi\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Finnish\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -46,11 +46,11 @@ msgstr "<0>Huom:</0> Hyödyntämällä OpenAI API:a, tunnustat ja hyväksyt Open
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr "<0>Yhteisö on käyttänyt paljon aikaa kirjoittaakseen dokumentaation Reaktiiviselle ansioluettelolle, ja olen varma, että se auttaa sinua pääsemään alkuun sovelluksessa.</0><1>Siellä on myös paljon esimerkkejä auttamaan sinua pääsemään alkuun, ja ominaisuuksia, joista et ehkä tiedä ja jotka voisivat auttaa sinua rakentamaan täydellisen ansioluettelosi.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>Kaksivaiheinen todennus on tällä hetkellä poistettu käytöstä.</0> Voit ottaa sen käyttöön lisäämällä aitoustunnistussovelluksen tilillesi."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>Kaksivaiheinen todennus on käytössä.</0> Sinua pyydetään syöttämään koodi joka kerta, kun kirjaudut sisään."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Tili"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Lisää mukautettu kenttä"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Lisää uusi kohde"
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr "Keskitä taidetaulu"
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Vaihda salasana"
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr "Yritys"
|
||||
msgid "Confident"
|
||||
msgstr "Itsevarma"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Vahvista uusi salasana"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr "Luo yksi nyt"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Luo esimerkki ansioluettelosta"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "Mukautettu CSS"
|
||||
@ -423,14 +424,14 @@ msgstr "Suunnittele yksittäisiä/multi-sivuisia ansioluetteloita"
|
||||
msgid "Disable"
|
||||
msgstr "Poista käytöstä"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Poista kaksivaiheinen todennus"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Hylkää"
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr "Lataa PDF-ansioluettelosi. Tätä tiedostoa voidaan käyttää ansioluettelon tulostamiseen, lähettämiseen rekrytoijille tai lataamiseen työportaaleihin."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Lataa PDF"
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr "Efektit"
|
||||
msgid "Email"
|
||||
msgstr "Sähköposti"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Ota käyttöön 2FA"
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr "Tutustu saatavilla oleviin mallipohjiin Reactive Resumessa ja katsele niiden avulla luotuja ansioluetteloita. Ne voivat toimia myös esimerkkeinä auttaakseen seuraavan ansioluettelosi luomisessa."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Vie"
|
||||
@ -564,19 +565,19 @@ msgstr "Lopuksi,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Korjaa oikeinkirjoitus ja kielioppi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Fontin perhe"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Fontin koko"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Fontin alajoukko"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Fonttivariantit"
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr "Piilotettu"
|
||||
msgid "Hide"
|
||||
msgstr "Piilota"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Piilota kuvakkeet"
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr "Paranna kirjoitusta"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Mikäli et voi skannata tätä QR-koodia, voit myös kopioida tämän linkin ja liittää sen tunnistussovellukseen."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "Tässä osiossa voit vaihtaa salasanasi ja ottaa käyttöön/poistaa kaksivaiheisen tunnistuksen."
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "Tässä osiossa voit poistaa tilisi ja siihen liittyvät tiedot, mutta pidä mielessäsi, että <0> tämä toiminto on peruuttamaton </0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr "Tiedot"
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Päivitetty viimeksi {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr "Asettelu"
|
||||
@ -853,7 +856,7 @@ msgstr "Vaalea"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Vaalea tai tumma teema"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Riviväli"
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr "Nimi"
|
||||
msgid "Network"
|
||||
msgstr "Verkko"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Uusi salasana"
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Huom: Tämä tekee tilisi vähemmän turvalliseksi."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Muistiinpanot"
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr "OpenAI/Ollama-integraatio"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Asetukset"
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr "Organisaatio"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Sivu"
|
||||
@ -1043,7 +1048,7 @@ msgstr "Sivu {pageNumber}"
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Salasana"
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr "Primary Color"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Tietosuojakäytäntö"
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr "Luo ongelma"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr "Vieritä kohtaan Pan"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Vieritä zoomaukseen"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Etsi fonttiperhettä"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Etsi fonttialueetta"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Etsi fonttivarianttia"
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr "Etsi kieltä"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Turvaa kaksivaiheisella todennuksella"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Turvallisuus"
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Aseta kaksivaiheinen todennus tilillesi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Jakaminen"
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Aloita ansioluettelosi rakentaminen antamalla sille nimi."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Tilastot"
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr "Järjestelmä"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Pohja"
|
||||
@ -1465,15 +1470,12 @@ msgstr "Asiakaspalautteet"
|
||||
msgid "Text Color"
|
||||
msgstr "Tekstin väri"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "Syöttämäsi salasanat eivät täsmää."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "Ansioluetteloa, jonka haluat päivittää, on lukittu. Ole hyvä ja avaa se, jos haluat tehdä siihen muutoksia."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr "Seuraa näkymiä ja latauksia"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Kaksivaiheinen tunnistautuminen"
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr "Opiskelumuoto"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Typografia"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Alleviivaa Linkit"
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr "Sähköpostiosoitteesi on vahvistettu onnistuneesti."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "OpenAI API-avaintasi ei ole vielä asetettu. Siirry tilisi asetuksiin ottaaksesi OpenAI-integraation käyttöön."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Salasanasi on päivitetty onnistuneesti."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: fr\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: French\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
@ -46,11 +46,11 @@ msgstr "<0>Remarque :</0> En utilisant l'API OpenAI, vous reconnaissez et accep
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr "<0>La communauté a passé beaucoup de temps à écrire la documentation de Reactive Resume, et je suis sûr qu'elle vous aidera à démarrer avec l'application.</0><1>Il y a aussi beaucoup d'exemples pour vous aider à démarrer, et des fonctionnalités que vous ne connaissez peut-être pas et qui pourraient vous aider à construire votre CV parfait.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>L'authentification à deux facteurs est actuellement désactivée.</0> Vous pouvez l'activer en ajoutant une application d'authentification à votre compte."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>L'authentification à deux facteurs est activée.</0> Il vous sera demandé de saisir un code à chaque connexion."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Compte"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Ajouter un champ personnalisé"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Ajouter un nouvel élément"
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr "Plan de travail central"
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Changer le mot de passe"
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr "Société"
|
||||
msgid "Confident"
|
||||
msgstr "Confiant"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Confirmez le nouveau mot de passe"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr "Créez-en un maintenant"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Créer un exemple de CV"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr "Mot de passe actuel"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "CSS personnalisé"
|
||||
@ -423,14 +424,14 @@ msgstr "Concevoir des CV d'une ou plusieurs pages"
|
||||
msgid "Disable"
|
||||
msgstr "Désactiver"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Désactiver la 2FA"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Abandonner"
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr "Téléchargez un PDF de votre CV. Ce fichier peut être utilisé pour imprimer votre CV, l'envoyer aux recruteurs ou le télécharger sur des portails d'emploi."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Télécharger au format PDF"
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr "Effets"
|
||||
msgid "Email"
|
||||
msgstr "Email"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Activer l'A2F"
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr "Explorez les modèles disponibles dans Reactive Resume et consultez les CV qui en sont issus. Ils peuvent également servir d'exemples pour guider la création de votre prochain CV."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Exporter"
|
||||
@ -564,19 +565,19 @@ msgstr "Enfin,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Correcteur orthographique"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Famille de police"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Taille de la police"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Sous-ensemble de polices"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Variantes de polices"
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr "Masqué"
|
||||
msgid "Hide"
|
||||
msgstr "Masquer"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Masquer les icônes"
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr "Améliorer l'écriture"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Si vous ne parvenez pas à scanner ce code QR, vous pouvez également copier-coller ce lien dans votre application d'authentification."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "Dans cette section, vous pouvez modifier votre mot de passe et activer/désactiver l'authentification à deux facteurs."
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "Dans cette section, vous pouvez supprimer votre compte et toutes les données associées à votre utilisateur, mais gardez à l'esprit que <0>cette action est irréversible</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr "Information"
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Dernière mise à jour {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr "Mise en page"
|
||||
@ -853,7 +856,7 @@ msgstr "Clair"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Thème clair ou sombre"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Interligne"
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr "Nom"
|
||||
msgid "Network"
|
||||
msgstr "Réseau"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Nouveau mot de passe"
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Remarque : Cela rendra votre compte moins sécurisé."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Notes"
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr "Intégration OpenAI/Ollama"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Options"
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr "Organisation"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Page"
|
||||
@ -1043,7 +1048,7 @@ msgstr "Page {pageNumber}"
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Mot de passe"
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr "Couleur Primaire"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Politique de confidentialité"
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr "Signaler un problème"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr "Défilement vers Pan"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Défilement vers le zoom"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Rechercher une famille de polices"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Rechercher un sous-ensemble de polices"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Rechercher une variante de police"
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr "Rechercher une langue"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Sécurisé avec l'authentification à deux facteurs"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Sécurité"
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Configurer l'authentification à deux facteurs sur votre compte"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Partager"
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Commencez à créer votre CV en lui donnant un nom."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Statistiques"
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr "Système"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Modèle"
|
||||
@ -1465,15 +1470,12 @@ msgstr "Témoignages"
|
||||
msgid "Text Color"
|
||||
msgstr "Couleur du texte"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "Les mots de passe saisis ne correspondent pas."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "Le CV que vous souhaitez mettre à jour est verrouillé, veuillez le déverrouiller si vous souhaitez y apporter des modifications."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr "Suivre les vues et les téléchargements"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Authentification à deux facteurs"
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr "Type d'étude"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Typographie"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Souligner les liens"
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr "Votre adresse e-mail a été vérifiée avec succès."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Votre clé API OpenAI n'a pas encore été définie. Veuillez accéder aux paramètres de votre compte pour activer l'intégration OpenAI."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Votre mot de passe a été mis à jour."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: he\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Hebrew\n"
|
||||
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n"
|
||||
@ -46,11 +46,11 @@ msgstr "<0>לתשומת ליבך: </0>עצם השימוש ב־API של OpenAI מ
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr "<0>הקהילה השקיעה זמן רב בכתיבת התיעוד של Reactive Resume ואני משוכנע שהוא יסייע לך להתחיל את דרכך עם היישום.</0><1>יש גם דוגמאות רבות שיסייעו לך להיכנס לעניינים ויכולות שאולי לא הכרת ועשויות לסייע לך לבנות קורות חיים מושקעים.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>אימות דו־שלבי מושבת כרגע.</0> אפשר להפעיל אותו על ידי הוספת יישומון מאמת לחשבון שלך."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>אימות דו־שלבי פעיל.</0> תופיע בקשה למלא את הקוד שלך עם כל כניסה למערכת."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "חשבון"
|
||||
msgid "Add a custom field"
|
||||
msgstr "הוספת שדה מותאם אישית"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "הוספת פריט חדש"
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr "מירכוז לוח היצירה"
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "החלפת סיסמה"
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr "חברה"
|
||||
msgid "Confident"
|
||||
msgstr "מלא בטחון עצמי"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "אישור הסיסמה החדשה"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr "יצירת אחד כזה עכשיו"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "יצירת קורות חיים לדוגמה"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
@ -423,14 +424,14 @@ msgstr "תכנון קורות חיים עם עמוד אחד/יותר"
|
||||
msgid "Disable"
|
||||
msgstr "השבתה"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "השבתת האימות הדו־שלבי"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "התעלמות"
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr "הורדת PDF של קורות החיים שלך. אפשר להשתמש בקובץ הזה כדי להדפיס את קורות החיים שלך, לשלוח אותו למגייסים או להעלות אותו לפורטלים של מעסיקים."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "הורדת PDF"
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr "אפקטים"
|
||||
msgid "Email"
|
||||
msgstr "דוא״ל"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "הפעלת אימות דו־שלבי"
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr "אפשר לעיין בתבניות שזמינות ב־Reactive Resume ולצפות בקורות החיים מעוצבים בהן. הן גם יכולות לשמש דוגמאות כדי לסייע בהכוונת יצירת קורות החיים הבאים שלך."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "ייצוא"
|
||||
@ -564,19 +565,19 @@ msgstr "ואחרונים חביבים,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "תיקון איות ודקדוק"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "משפחת גופנים"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "גודל כתב"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "קבוצת משנה של גופנים"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "הגווני גופן"
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr "מוסתר"
|
||||
msgid "Hide"
|
||||
msgstr "הסתרה"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "הסתרת סמלים"
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr "שיפור הכתיבה"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "אם לא הצלחת לסרוק את קוד ה־QR הזה, תמיד אפשר להעתיק ולהדביק את הקישור הזה לתוך יישומון המאמת שלך."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "בסעיף הזה, אפשר לשנות את הסיסמה שלך ולהפעיל/להשבית אימות דו־שלבי."
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "בסעיף הזה, אפשר למחוק את החשבון שלך ואת כל הנתונים שמשויכים למשתמש שלך, אך נא לשים לב ש<0>זאת פעולה בלתי הפיכה</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr "מידע"
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "העדכון האחרון היה ב־{lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr "פריסה"
|
||||
@ -853,7 +856,7 @@ msgstr "בהירה"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "ערכת עיצוב בהירה או כהה"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "גובה שורה"
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr "שם"
|
||||
msgid "Network"
|
||||
msgstr "רשת"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "סיסמה חדשה"
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "לתשומת ליבך: זה ישפר את ההגנה על החשבון שלך."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "הערות"
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "אפשרויות"
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr "ארגון"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "עמוד"
|
||||
@ -1043,7 +1048,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "סיסמה"
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr "צבע עיקרי"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr ""
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr "דיווח על בעיה"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr ""
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "חיפוש משפחת גופנים"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "חיפוש תת־קבוצת גופנים"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "חיפוש הגוון גופן"
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr "חיפוש שפה"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "הגנה עם אימות דו־שלבי"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "אבטחה"
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "הקמת אימות דו־שלבי לחשבון שלך"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "שיתוף"
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "אפשר להתחיל לבנות את קורות החיים שלך על ידי ציון שם."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "סטטיסטיקה"
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr "מערכת"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "תבנית"
|
||||
@ -1465,15 +1470,12 @@ msgstr "המלצות"
|
||||
msgid "Text Color"
|
||||
msgstr "צבע כתב"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "הסיסמאות שמילאת לא זהות."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "קורות החיים שברצונך לעדכן נעולים, נא לשחרר אותם כדי לבצע שינויים."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr "מעקב אחר צפיות והורדות"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "אימות דו־שלבי"
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr "סוג הלימודים"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "טיפוגרפיה"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "הוספת קווים מתחת לקישורים"
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr "כתובת הדוא״ל שלך עברה אימות בהצלחה."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "מפתח ה־API של OpenAI טרם הוגדר. נא לגשת להגדרות החשבון שלך ולהפעיל את השילוב מול OpenAI."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "הסיסמה שלך עודכנה בהצלחה."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: hi\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Hindi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -46,11 +46,11 @@ msgstr "<0>ध्यान दें:</0> OpenAI API का उपयोग क
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr "<0>समुदाय ने रिएक्टिव रेज़्यूमे के लिए दस्तावेज़ लिखने में बहुत समय बिताया है, और मुझे यकीन है कि यह आपको ऐप के साथ शुरुआत करने में मदद करेगा।</0> <1>शुरुआत करने में आपकी मदद करने के लिए बहुत सारे उदाहरण भी हैं, और ऐसी विशेषताएं भी हैं जिनके बारे में आप नहीं जानते होंगे जो आपको अपना संपूर्ण बायोडाटा बनाने में मदद कर सकती हैं।</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>दो-कारक प्रमाणीकरण वर्तमान में अक्षम है।</0> आप अपने खाते में एक प्रमाणक ऐप जोड़कर इसे सक्षम कर सकते हैं।"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>दो-कारक प्रमाणीकरण सक्षम है।</0> हर बार साइन इन करने पर आपसे एक कोड दर्ज करने के लिए कहा जाएगा।"
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "खाता"
|
||||
msgid "Add a custom field"
|
||||
msgstr "नया कस्टम फ़ील्ड जोड़ें"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "एक नया आइटम जोड़ें"
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr "केंद्र आर्टबोर्ड"
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "पासवर्ड बदलिए"
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr "कंपनी"
|
||||
msgid "Confident"
|
||||
msgstr "आत्मविश्वासी"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "नए पासवर्ड की पुष्टि करें"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr "अभी एक बनाएं"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "नमूना बायोडाटा बनाएं"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
@ -423,14 +424,14 @@ msgstr "सिंगल/मल्टी पेज बायोडाटा ड
|
||||
msgid "Disable"
|
||||
msgstr "अक्षम करें"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "2FA निलम्बित करें"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "रद्द करें"
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr "अपने बायोडाटा का एक पीडीएफ डाउनलोड करें। इस फ़ाइल का उपयोग आपके बायोडाटा को प्रिंट करने, भर्तीकर्ताओं को भेजने या नौकरी पोर्टल पर अपलोड करने के लिए किया जा सकता है।"
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "डाउनलोड PDF"
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr "प्रभाव"
|
||||
msgid "Email"
|
||||
msgstr "ई-मेल"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "2FA चालू करें"
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr "रिएक्टिव रेज़्यूमे में उपलब्ध टेम्पलेट्स का अन्वेषण करें और उनके साथ तैयार किए गए रेज़्यूमे देखें। वे आपके अगले बायोडाटा के निर्माण में मार्गदर्शन के लिए उदाहरण के रूप में भी काम कर सकते हैं।"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "निर्यात"
|
||||
@ -564,19 +565,19 @@ msgstr "अंत में,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "वर्तनी और व्याकरण ठीक करें"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "फ़ॉन्ट फ़ैमिली"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "फ़ॉन्ट आकार"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "फ़ॉन्ट उपसमुच्चय"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "फ़ॉन्ट प्रकार"
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr "छुपा हुआ"
|
||||
msgid "Hide"
|
||||
msgstr "छुपायें"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "ऑइकन छुपायें"
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr "लेखन में सुधार करें"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "यदि आप इस क्यूआर कोड को स्कैन करने में असमर्थ हैं, तो आप इस लिंक को अपने प्रमाणक ऐप में कॉपी-पेस्ट भी कर सकते हैं।"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "इस अनुभाग में, आप अपना पासवर्ड बदल सकते हैं और दो-कारक प्रमाणीकरण को सक्षम/अक्षम कर सकते हैं।"
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "इस अनुभाग में, आप अपना खाता और अपने उपयोगकर्ता से जुड़े सभी डेटा को हटा सकते हैं, लेकिन कृपया ध्यान रखें कि <0>यह कार्रवाई अपरिवर्तनीय है</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr "जानकारी"
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "अंतिम अद्यतन {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr "लेआउट"
|
||||
@ -853,7 +856,7 @@ msgstr "हल्का रंग"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "प्रकाश या अंधेरा थीम"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "पंक्ति ऊँचाई"
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr "नाम"
|
||||
msgid "Network"
|
||||
msgstr "नेटवर्क"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "नया पासवर्ड"
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "नोट: इससे आपका खाता कम सुरक्षित हो जाएगा."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "टिप्पणियाँ"
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "विकल्प"
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr "संगठन"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "पृष्ठ"
|
||||
@ -1043,7 +1048,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "पासवर्ड"
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr "प्राथमिक रंग"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr "गोपनीयता नीति"
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr "एक मुद्दा उठाओ"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr ""
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "फ़ॉन्ट परिवार खोजें"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "फ़ॉन्ट उपसमुच्चय खोजें"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "फ़ॉन्ट प्रकार खोजें"
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr "एक भाषा के लिए खोज करे"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "दो-कारक प्रमाणीकरण के साथ सुरक्षित"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "सुरक्षा"
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "अपने खाते पर दो-कारक प्रमाणीकरण सेट करें"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "साझा करना"
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "अपना बायोडाटा एक नाम देकर बनाना शुरू करें।"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "आंकड़े"
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr "सिस्टम"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "खाका"
|
||||
@ -1465,15 +1470,12 @@ msgstr "प्रशंसापत्र"
|
||||
msgid "Text Color"
|
||||
msgstr "अक्षरों का रंग"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "आपके द्वारा दर्ज किया गया पासवर्ड मेल नहीं खाता है।"
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "आप जिस बायोडाटा को अपडेट करना चाहते हैं वह लॉक है, यदि आप इसमें कोई बदलाव करना चाहते हैं तो कृपया अनलॉक करें।"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr "दृश्य और डाउनलोड ट्रैक करे
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "दो कारक प्रमाणीकरण"
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr "अध्ययन का प्रकार"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "टाइपोग्राफी"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "लिंक को रेखांकित करें"
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr "आपका ईमेल पता सफलतापूर्वक
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "आपकी OpenAI API कुंजी अभी तक सेट नहीं की गई है। OpenAI एकीकरण को सक्षम करने के लिए कृपया अपनी खाता सेटिंग में जाएं।"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "आपका पासवर्ड बदला जा चुका है।"
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: hu\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Hungarian\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -46,11 +46,11 @@ msgstr "<0>Megjegyzés: </0>Az OpenAI API használatával Ön tudomásul veszi
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr "<0>A közösség rengeteg időt töltött a Reactive Resume dokumentációjának megírásával, és biztos vagyok benne, hogy ez segíteni fog az alkalmazás használatának megkezdésében.</0><1>Rengeteg példát is találsz a kezdéshez, és olyan funkciókat, amelyekről talán nem is tudsz, és amelyek segíthetnek a tökéletes önéletrajz elkészítésében.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>A kétfaktoros hitelesítés jelenleg ki van kapcsolva.</0> A hitelesítést egy hitelesítő alkalmazás hozzáadásával engedélyezheti a fiókjához."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>A kétfaktoros hitelesítés engedélyezve van.</0> Minden bejelentkezéskor meg kell adnia egy kódot."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Fiók"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Egyéni mező hozzáadása"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Elem hozzáadása"
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr "Vászon középre igazítása"
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Jelszó módosítása"
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr "Cég"
|
||||
msgid "Confident"
|
||||
msgstr "Magabiztos"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Új jelszó megerősítése"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr "Létrehozás most"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Minta önéletrajz létrehozása"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "Egyéni CSS"
|
||||
@ -423,14 +424,14 @@ msgstr "Egy/több oldalas önéletrajzok tervezése"
|
||||
msgid "Disable"
|
||||
msgstr "Letiltás"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "2FA Kikapcsolása"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Elvetés"
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr "Töltsd le önéletrajzod PDF formátumban. Ezzel a fájllal kinyomtathatod önéletrajzod, elküldheted a toborzóknak, vagy feltöltheted az állásportálokra."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "PDF letöltése"
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr "Effektek"
|
||||
msgid "Email"
|
||||
msgstr "E-mail"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "2FA bekapcsolása"
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr "Fedezze fel a Reaktív önéletrajzban elérhető sablonokat, és tekintse meg a velük készített önéletrajzokat. Ezek példaként is szolgálhatnak a következő önéletrajzának elkészítéséhez."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Exportálás"
|
||||
@ -564,19 +565,19 @@ msgstr "Végül,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Helyesírás és nyelvtan javítása"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Betűkészlet"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Betűméret"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Betűkészlet részhalmaz"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Betűtípusok"
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr "Rejtett"
|
||||
msgid "Hide"
|
||||
msgstr "Elrejtés"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Ikonok elrejtése"
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr "Az írás javítása"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Ha nem tudja beolvasni ezt a QR-kódot, akkor másolja be ezt a linket a hitelesítési alkalmazásba."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "Ebben a szakaszban módosíthatja jelszavát, és engedélyezheti/letilthatja a kétfaktoros hitelesítést."
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "Ebben a szakaszban törölheti fiókját és a felhasználóhoz kapcsolódó összes adatot, de ne feledje, hogy <0>ez a művelet visszafordíthatatlan</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr "Információ"
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Utoljára frissítve {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr "Elrendezés"
|
||||
@ -853,7 +856,7 @@ msgstr "Fény"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Világos vagy sötét téma"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Vonalmagasság"
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr "Név"
|
||||
msgid "Network"
|
||||
msgstr "Honlap"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Új Jelszó"
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Megjegyzés: Ezzel fiókja kevésbé lesz biztonságos."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Jegyzetek"
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr "OpenAI/Ollama integráció"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Opciók"
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr "Szervezet"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Oldal"
|
||||
@ -1043,7 +1048,7 @@ msgstr "Oldal {pageNumber}"
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Jelszó"
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr "Elsődleges szín"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Adatvédelmi irányelvek"
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr "Kérdés felvetése"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr "Görgessen a Pan-ra"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Görgessen a nagyításhoz"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Betűcsalád keresése"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Betűkészlet keresése"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Betűtípus-változat keresése"
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr "Nyelv keresése"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Biztonságos kétfaktoros hitelesítéssel"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Biztonság"
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Kétfaktoros hitelesítés beállítása a fiókjában"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Megosztás"
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Kezdje el az önéletrajz felépítését azzal, hogy nevet ad neki."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Statisztikák"
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr "Rendszer"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Sablon"
|
||||
@ -1465,15 +1470,12 @@ msgstr "Ajánlások"
|
||||
msgid "Text Color"
|
||||
msgstr "Szöveg színe"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "A megadott jelszavak nem egyeznek."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "A frissíteni kívánt önéletrajz zárolva van, kérjük, oldja fel a zárolást, ha változtatni szeretne rajta."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr "Nézettség és letöltések nyomon követése"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Kétfaktoros hitelesítés"
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr "Tanulmány típusa"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Tipográfia"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Linkek aláhúzása"
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr "Az e-mail címét sikeresen ellenőriztük."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Az OpenAI API kulcsa még nem lett beállítva. Kérjük, lépjen be a fiókbeállításokba az OpenAI integráció engedélyezéséhez."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Jelszavát sikeresen frissítettük."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: id\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Indonesian\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
@ -46,11 +46,11 @@ msgstr "<0>Catatan: </0>Dengan menggunakan API OpenAI, Anda mengakui dan menerim
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr "<0>Komunitas ini telah menghabiskan banyak waktu untuk menulis dokumentasi untuk Reactive Resume, dan saya yakin ini akan membantu Anda mulai menggunakan aplikasi ini.</0><1>Ada juga banyak contoh untuk membantu Anda memulai, dan fitur-fitur yang mungkin tidak Anda ketahui yang dapat membantu Anda membuat resume yang sempurna.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>Autentikasi dua faktor saat ini dinonaktifkan.</0> Anda dapat mengaktifkannya dengan menambahkan aplikasi pengautentikasi ke akun Anda."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>Autentikasi dua faktor diaktifkan.</0> Anda akan diminta untuk memasukkan kode setiap kali masuk."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Akun"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Tambahkan kolom kustom"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Tambah item baru"
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr "Papan Seni Tengah"
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Ubah Kata Sandi"
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr "Perusahaan"
|
||||
msgid "Confident"
|
||||
msgstr "Percaya diri"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Konfirmasi Kata Sandi Baru"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr "Buat satu sekarang"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Buat Contoh Resume"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "CSS khusus"
|
||||
@ -423,14 +424,14 @@ msgstr "Desain resume satu / beberapa halaman"
|
||||
msgid "Disable"
|
||||
msgstr "Nonaktifkan"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Nonaktifkan 2FA"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Buang"
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr "Unduh file PDF resume Anda. File ini dapat digunakan untuk mencetak resume Anda, mengirimkannya ke perekrut, atau mengunggahnya di portal pekerjaan."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Unduh PDF"
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr "Efek"
|
||||
msgid "Email"
|
||||
msgstr "Email"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Aktifkan 2FA"
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr "Jelajahi templat yang tersedia di Reactive Resume dan melihat resume yang dibuat dengan templat tersebut. Templat ini juga dapat digunakan sebagai contoh untuk membantu dalam pembuatan resume Anda."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Ekspor"
|
||||
@ -564,19 +565,19 @@ msgstr "Akhirnya,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Perbaiki Ejaan & Tata Bahasa"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Keluarga Font"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Ukuran Font"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Subset Font"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Varian Font"
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr "Tersembunyi"
|
||||
msgid "Hide"
|
||||
msgstr "Sembunyikan"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Sembunyikan Ikon"
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr "Meningkatkan kualitasPenulisan"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Jika Anda tidak dapat memindai Kode QR ini, Anda juga dapat menyalin dan tempel tautan ini ke dalam aplikasi autentikator Anda."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "Pada bagian ini, Anda dapat mengubah kata sandi dan mengaktifkan/menonaktifkan autentikasi dua faktor."
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "Pada bagian ini, Anda dapat menghapus akun dan semua data yang terkait dengan pengguna Anda, tetapi harap diingat bahwa <0>tindakan ini tidak dapat dibatalkan</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr "Informasi"
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Terakhir diperbarui {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr "Tata letak"
|
||||
@ -853,7 +856,7 @@ msgstr "Cahaya"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Tema terang atau gelap"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Tinggi Garis"
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr "Nama"
|
||||
msgid "Network"
|
||||
msgstr "Jaringan"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Kata Sandi Baru"
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Catatan: Hal ini akan membuat akun Anda kurang aman."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Catatan"
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr "Integrasi OpenAI/Ollama"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Pilihan"
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr "Organisasi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Halaman"
|
||||
@ -1043,7 +1048,7 @@ msgstr "Halaman {pageNumber}"
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Kata sandi"
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr "Warna Primer"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Kebijakan Privasi"
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr "Mengajukan masalah"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr "Gulir ke Geser"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Gulir ke Zoom"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Mencari keluarga font"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Mencari subset font"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Mencari varian font"
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr "Mencari bahasa"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Aman dengan autentikasi dua faktor"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Keamanan"
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Menyiapkan autentikasi dua faktor di akun Anda"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Berbagi"
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Mulailah membuat resume Anda dengan memberikan nama."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Statistik"
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr "Sistem"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Templat"
|
||||
@ -1465,15 +1470,12 @@ msgstr "Testimonial"
|
||||
msgid "Text Color"
|
||||
msgstr "Warna Teks"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "Kata sandi yang Anda masukkan tidak cocok."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "Resume yang ingin Anda perbarui terkunci, silakan buka kuncinya jika Anda ingin melakukan perubahan."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr "Melacak tampilan dan unduhan"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Autentikasi Dua Faktor"
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr "Jenis Studi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Tipografi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Garis bawahi Tautan"
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr "Alamat email Anda telah berhasil diverifikasi."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Kunci API OpenAI Anda belum ditetapkan. Silakan buka pengaturan akun Anda untuk mengaktifkan Integrasi OpenAI."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Kata sandi Anda telah berhasil diperbarui."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: it\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Italian\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -46,11 +46,11 @@ msgstr "<0>Nota:</0> Utilizzando l'API OpenAI, riconosci e accetti i <1>termini
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr "<0>La community ha dedicato molto tempo a scrivere la documentazione per Reactive Resume e sono sicuro che ti aiuterà a iniziare a utilizzare l'app.</0> <1>Ci sono anche molti esempi per aiutarti a iniziare e funzionalità che potresti non conoscere e che potrebbero aiutarti a creare il tuo curriculum perfetto.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>L'autenticazione a due fattori è attualmente disabilitata.</0> Puoi abilitarlo aggiungendo un'app di autenticazione al tuo account."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>L'autenticazione a due fattori è abilitata.</0> Ti verrà chiesto di inserire un codice ogni volta che accedi."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Account"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Aggiungi un campo personalizzato"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Aggiungi nuovo elemento"
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr "Cartella Centrata"
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Cambia password"
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr "Azienda"
|
||||
msgid "Confident"
|
||||
msgstr "Fiducioso"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Conferma nuova password"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr "Creane uno ora"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Creare un campione di curriculum"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "CSS personalizzato"
|
||||
@ -423,14 +424,14 @@ msgstr "Progetta curriculum a pagina singola/multipagina"
|
||||
msgid "Disable"
|
||||
msgstr "Disabilita"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Disabilita l'autenticazione a due fattori"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Scarta"
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr "Scarica un PDF del tuo curriculum. Questo file può essere utilizzato per stampare il tuo curriculum, inviarlo ai reclutatori o caricarlo su portali di lavoro."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Scarica PDF"
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr "Effetti"
|
||||
msgid "Email"
|
||||
msgstr "Email"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Abilita 2FA"
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr "Esplora i modelli disponibili in Reactive Resume e visualizza i curriculum realizzati con essi. Potrebbero anche servire come esempi per guidare la creazione del tuo prossimo curriculum."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Esporta"
|
||||
@ -564,19 +565,19 @@ msgstr "Finalmente,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Correggi ortografia e grammatica"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Famiglia font"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Dimensioni carattere"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Sottoinsieme di caratteri"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Varianti di carattere"
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr "Nascosto"
|
||||
msgid "Hide"
|
||||
msgstr "Nascondi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Nascondi icone"
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr "Migliora la scrittura"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Nel caso in cui non riuscisse a scansionare questo Codice QR, può anche copiare-incollare questo link nella sua app Authenticator."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "In questa sezione puoi modificare la tua password e abilitare/disabilitare l'autenticazione a due fattori."
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "In questa sezione puoi eliminare il tuo account e tutti i dati associati al tuo utente, ma tieni presente che <0>questa azione è irreversibile</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr "Informazioni"
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Ultimo aggiornamento: {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr "Disposizione"
|
||||
@ -853,7 +856,7 @@ msgstr "Chiaro"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Tema chiaro o scuro"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Altezza linea"
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr "Nome"
|
||||
msgid "Network"
|
||||
msgstr "Rete"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Nuova Password"
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Nota: ciò renderà il tuo account meno sicuro."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Note"
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr "Integrazione OpenAI/Ollama"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Opzioni"
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr "Organizzazione"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Pagina"
|
||||
@ -1043,7 +1048,7 @@ msgstr "Pagina {pageNumber}"
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Password"
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr "Colore primario"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Politica Sulla Privacy"
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr "Segnala un problema"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr "Scorri fino a Pan"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Scorri per zoomare"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Cerca una famiglia di caratteri"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Cerca un sottoinsieme di caratteri"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Cerca una variante del carattere"
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr "Cerca una lingua"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Proteggi con l'autenticazione a due fattori"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Sicurezza"
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Imposta l'autenticazione a due fattori sul tuo account"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Condivisione"
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Inizia a costruire il tuo curriculum dandogli un nome."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Statistiche"
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr "Sistema"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Modello"
|
||||
@ -1465,15 +1470,12 @@ msgstr "Testimonial"
|
||||
msgid "Text Color"
|
||||
msgstr "Colore del testo"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "Le password inserite non corrispondono."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "Il curriculum che desideri aggiornare è bloccato, sbloccalo se desideri apportarvi modifiche."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr "Tieni traccia delle visualizzazioni e dei download"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Autenticazione a due fattori"
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr "Tipo di studio"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Tipografia"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Sottolinea i link"
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr "Il tuo indirizzo e-mail è stato verificato correttamente."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "La tua chiave API OpenAI non è stata ancora impostata. Vai alle impostazioni del tuo account per abilitare l'integrazione OpenAI."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "L'aggiornamento della password è stato completato con successo."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ja\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Japanese\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
@ -46,11 +46,11 @@ msgstr "<0>注意:</0>OpenAI APIを利用することにより、利用者はO
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr "<0>コミュニティはReactive Resumeのドキュメントを作成することに多くの時間を費やしました。</0><1>また、使い始めるのに役立つ例や、完璧な履歴書を作成するのに役立つあなたが知らないかもしれない機能もたくさんあります。</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>二要素認証は現在無効になっています。</0>アカウントに認証アプリを追加することで有効にできます。"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>二要素認証が有効になっています。</0>サインインのたびにコードの入力が求められます。"
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "アカウント"
|
||||
msgid "Add a custom field"
|
||||
msgstr "カスタムフィールドを追加"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "アイテムを追加"
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr "中央のアート"
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "パスワードを変更"
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr "会社名"
|
||||
msgid "Confident"
|
||||
msgstr "自信があります"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "新しいパスワードの確認"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr "今すぐ作成する"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "サンプルの再開を作成"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "カスタムCSS"
|
||||
@ -423,14 +424,14 @@ msgstr "デザインシングル/マルチページの再開"
|
||||
msgid "Disable"
|
||||
msgstr "無効"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "2段階認証を無効にする"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "破棄する"
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr "履歴書のPDFをダウンロードします。このファイルは履歴書の印刷、採用担当者への送信、ジョブポータルへのアップロードに使用できます。"
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "PDFをダウンロード"
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr "効果"
|
||||
msgid "Email"
|
||||
msgstr "Eメール"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "二段階認証を有効にする"
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr "Reactive Resume で利用可能なテンプレートを探索し、作成した履歴書を表示します。 また、次の履歴書の作成をガイドするための例としても役立ちます。"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "輸出"
|
||||
@ -564,19 +565,19 @@ msgstr "最後に"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Fix Spelling & Grammar"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "フォントファミリー"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Font Size"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "フォントサブセット"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Font Variants"
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr "Hidden"
|
||||
msgid "Hide"
|
||||
msgstr "非表示"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "アイコンを隠す"
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr "ライティングの改善"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "このQRコードをスキャンできない場合は、このリンクを認証アプリにコピー&ペーストすることもできます。"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "このセクションでは、パスワードを変更し、2段階認証を有効/無効にすることができます。"
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "このセクションでは、アカウントとユーザーに関連付けられているすべてのデータを削除できます。 しかし、このアクションは <0>不可逆</0>であることに留意してください。"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr "情報"
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "最終更新 {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr "レイアウト"
|
||||
@ -853,7 +856,7 @@ msgstr "ライト"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "ライトまたはダークテーマ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "行の高さ"
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr "名前"
|
||||
msgid "Network"
|
||||
msgstr "ネットワーク"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "新しいパスワード"
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "注意: これにより、アカウントの安全性が低下します。"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "メモ"
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr "OpenAIとOllamaの統合"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "オプション"
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr "組織"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "ページ"
|
||||
@ -1043,7 +1048,7 @@ msgstr "ページ {pageNumber}"
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "パスワード"
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr "プライマリ色"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr "プライバシーポリシー"
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr "課題を上げる"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr "パンまでスクロール"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "スクロールしてズーム"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "フォントファミリーを検索"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "フォントサブセットを検索"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "フォントバリアントを検索"
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr "言語を検索"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "2要素認証で保護"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "セキュリティ"
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "アカウントに2要素認証を設定する"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "共有"
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "履歴書の作成を開始するには名前を付けてください。"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "統計情報"
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr "システム"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "テンプレート"
|
||||
@ -1465,15 +1470,12 @@ msgstr "Testimonials"
|
||||
msgid "Text Color"
|
||||
msgstr "テキストの色"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "入力したパスワードが一致しません。"
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "更新したい履歴書はロックされています。変更を加えたい場合はロックを解除してください。"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr "ビューとダウンロードを追跡する"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "2要素認証"
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr "研究の種類"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "タイポグラフィー(文法)"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "下線リンク"
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr "メールアドレスの確認が完了しました。"
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "OpenAI API キーがまだ設定されていません。OpenAI 統合を有効にするには、アカウント設定を開いてください。"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "パスワードが正常に更新されました。"
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: km\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Khmer\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
@ -46,11 +46,11 @@ msgstr ""
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr ""
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr ""
|
||||
msgid "Add a custom field"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr ""
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr ""
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr ""
|
||||
msgid "Confident"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr ""
|
||||
msgid "Create Sample Resume"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
@ -423,14 +424,14 @@ msgstr ""
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr ""
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr ""
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr ""
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
@ -564,19 +565,19 @@ msgstr ""
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr ""
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr ""
|
||||
msgid "Hide"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr ""
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr ""
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr ""
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr ""
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr ""
|
||||
@ -853,7 +856,7 @@ msgstr ""
|
||||
msgid "Light or dark theme"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr ""
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr ""
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
@ -1043,7 +1048,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr ""
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr ""
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr ""
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr ""
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr ""
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
@ -1465,15 +1470,12 @@ msgstr ""
|
||||
msgid "Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr ""
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr ""
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: kn\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Kannada\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -46,11 +46,11 @@ msgstr "<0>ಗಮನಿಸಿ:</0> OpenAI API ಅನ್ನು ಬಳಸುವ
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr "<0>ಪ್ರತಿಕ್ರಿಯಾತ್ಮಕ ಪುನರಾರಂಭಕ್ಕಾಗಿ ದಸ್ತಾವೇಜನ್ನು ಬರೆಯಲು ಸಮುದಾಯವು ಸಾಕಷ್ಟು ಸಮಯವನ್ನು ಕಳೆದಿದೆ ಮತ್ತು ಅಪ್ಲಿಕೇಶನ್ನೊಂದಿಗೆ ಪ್ರಾರಂಭಿಸಲು ಇದು ನಿಮಗೆ ಸಹಾಯ ಮಾಡುತ್ತದೆ ಎಂದು ನನಗೆ ಖಾತ್ರಿಯಿದೆ.</0> <1>ಪ್ರಾರಂಭಿಸಲು ನಿಮಗೆ ಸಹಾಯ ಮಾಡಲು ಸಾಕಷ್ಟು ಉದಾಹರಣೆಗಳಿವೆ ಮತ್ತು ನಿಮಗೆ ತಿಳಿದಿಲ್ಲದ ವೈಶಿಷ್ಟ್ಯಗಳು ನಿಮ್ಮ ಪರಿಪೂರ್ಣ ಪುನರಾರಂಭವನ್ನು ನಿರ್ಮಿಸಲು ನಿಮಗೆ ಸಹಾಯ ಮಾಡುತ್ತವೆ.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>ಎರಡು ಅಂಶದ ದೃಢೀಕರಣವನ್ನು ಪ್ರಸ್ತುತ ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ.</0> ನಿಮ್ಮ ಖಾತೆಗೆ ದೃಢೀಕರಣ ಅಪ್ಲಿಕೇಶನ್ ಅನ್ನು ಸೇರಿಸುವ ಮೂಲಕ ನೀವು ಅದನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಬಹುದು."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>ಎರಡು ಅಂಶದ ದೃಢೀಕರಣವನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ.</0> ನೀವು ಸೈನ್ ಇನ್ ಮಾಡಿದಾಗಲೆಲ್ಲಾ ಕೋಡ್ ಅನ್ನು ನಮೂದಿಸಲು ನಿಮ್ಮನ್ನು ಕೇಳಲಾಗುತ್ತದೆ."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "ಖಾತೆಗಳು"
|
||||
msgid "Add a custom field"
|
||||
msgstr "ಕಸ್ಟಮ್ ಕ್ಷೇತ್ರವನ್ನು ಸೇರಿಸಿ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "ಹೊಸ ಐಟಂ ಸೇರಿಸಿ"
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr "ಸೆಂಟರ್ ಆರ್ಟ್ಬೋರ್ಡ್"
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "ಗುಪ್ತಪದವನ್ನು ಬದಲಾಯಿಸು"
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr "ಕಂಪನಿ"
|
||||
msgid "Confident"
|
||||
msgstr "ಆತ್ಮವಿಶ್ವಾಸ"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "ಹೊಸ ಗುಪ್ತಪದವನ್ನು ದೃಢೀಕರಿಸಿ"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr "ಇದೀಗ ಒಂದನ್ನು ರಚಿಸಿ"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "ಮಾದರಿ ರೆಸ್ಯೂಮ್ ರಚಿಸಿ"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
@ -423,14 +424,14 @@ msgstr "ಏಕ/ಬಹು ಪುಟ ರೆಸ್ಯೂಮ್ಗಳನ್ನು
|
||||
msgid "Disable"
|
||||
msgstr "ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "2FA ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "ತಿರಸ್ಕರಿಸು"
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr "ನಿಮ್ಮ ರೆಸ್ಯೂಮ್ನ PDF ಅನ್ನು ಡೌನ್ಲೋಡ್ ಮಾಡಿ. ನಿಮ್ಮ ರೆಸ್ಯೂಮ್ ಅನ್ನು ಪ್ರಿಂಟ್ ಮಾಡಲು, ನೇಮಕಾತಿ ಮಾಡುವವರಿಗೆ ಕಳುಹಿಸಲು ಅಥವಾ ಜಾಬ್ ಪೋರ್ಟಲ್ಗಳಲ್ಲಿ ಅಪ್ಲೋಡ್ ಮಾಡಲು ಈ ಫೈಲ್ ಅನ್ನು ಬಳಸಬಹುದು."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr ""
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr "ಪರಿಣಾಮಗಳು"
|
||||
msgid "Email"
|
||||
msgstr "ಇಮೇಲ್"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "2FA ಸಕ್ರಿಯಗೊಳಿಸಿ"
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr "ಪ್ರತಿಕ್ರಿಯಾತ್ಮಕ ರೆಸ್ಯೂಮ್ ಲಭ್ಯವಿರುವ ಟೆಂಪ್ಲೇಟ್ಗಳನ್ನು ಅನ್ವೇಷಿಸಿ ಮತ್ತು ಅವರೊಂದಿಗೆ ರಚಿಸಲಾದ ರೆಸ್ಯೂಮ್ಗಳನ್ನು ವೀಕ್ಷಿಸಿ. ನಿಮ್ಮ ಮುಂದಿನ ರೆಸ್ಯೂಮ್ ರಚನೆಗೆ ಮಾರ್ಗದರ್ಶನ ನೀಡಲು ಅವರು ಉದಾಹರಣೆಗಳಾಗಿ ಕಾರ್ಯನಿರ್ವಹಿಸಬಹುದು."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "ರಫ್ತು ಮಾಡು"
|
||||
@ -564,19 +565,19 @@ msgstr "ಅಂತಿಮವಾಗಿ,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "ಕಾಗುಣಿತ ಮತ್ತು ವ್ಯಾಕರಣವನ್ನು ಸರಿಪಡಿಸಿ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "ಅಕ್ಷರಗಳ ಸಮೂಹ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "ಅಕ್ಷರ ಗಾತ್ರ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "ಅಕ್ಷರಗಳ ಉಪವಿಭಾಗ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "ಅಕ್ಷರಗಳ ರೂಪಾಂತರಗಳು"
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr "ಮರೆಮಾಡಲಾಗಿದೆ"
|
||||
msgid "Hide"
|
||||
msgstr "ಮರೆಮಾಡಿ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "ಐಕಾನ್ಗಳನ್ನು ಮರೆಮಾಡಿ"
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr "ಬರವಣಿಗೆಯನ್ನು ಸುಧಾರಿಸಿ"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "ಈ QR ಕೋಡ್ ಅನ್ನು ಸ್ಕ್ಯಾನ್ ಮಾಡಲು ನಿಮಗೆ ಸಾಧ್ಯವಾಗದಿದ್ದರೆ, ನೀವು ಈ ಲಿಂಕ್ ಅನ್ನು ನಿಮ್ಮ ದೃಢೀಕರಣ ಅಪ್ಲಿಕೇಶನ್ಗೆ ನಕಲಿಸಬಹುದು."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "ಈ ವಿಭಾಗದಲ್ಲಿ, ನೀವು ನಿಮ್ಮ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ಬದಲಾಯಿಸಬಹುದು ಮತ್ತು ಎರಡು ಅಂಶಗಳ ದೃಢೀಕರಣವನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಬಹುದು/ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಬಹುದು."
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "ಈ ವಿಭಾಗದಲ್ಲಿ, ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಮತ್ತು ನಿಮ್ಮ ಬಳಕೆದಾರರಿಗೆ ಸಂಬಂಧಿಸಿದ ಎಲ್ಲಾ ಡೇಟಾವನ್ನು ನೀವು ಅಳಿಸಬಹುದು, ಆದರೆ ದಯವಿಟ್ಟು <0>ಈ ಕ್ರಿಯೆಯನ್ನು ಬದಲಾಯಿಸಲಾಗುವುದಿಲ್ಲ</0> ಎಂಬುದನ್ನು ನೆನಪಿನಲ್ಲಿಡಿ."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr "ಮಾಹಿತಿ"
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "ಕೊನೆಯದಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr "ಲೇಔಟ್"
|
||||
@ -853,7 +856,7 @@ msgstr "ತಿಳಿ ಬಣ್ಣ"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "ಲೈಟ್ ಅಥವಾ ಡಾರ್ಕ್ ಥೀಮ್"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "ಗೆರೆಯ ಎತ್ತರ"
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr "ಹೆಸರು"
|
||||
msgid "Network"
|
||||
msgstr "ನೆಟ್ವರ್ಕ್"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "ಹೊಸ ಪಾಸ್ವರ್ಡ್"
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "ಗಮನಿಸಿ: ಇದು ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಕಡಿಮೆ ಸುರಕ್ಷಿತಗೊಳಿಸುತ್ತದೆ."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "ಟಿಪ್ಪಣಿಗಳು"
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "ಆಯ್ಕೆಗಳು"
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr "ಸಂಸ್ಥೆ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "ಪುಟ"
|
||||
@ -1043,7 +1048,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "ಗುಪ್ತಪದ"
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr "ಪ್ರಾಥಮಿಕ ಬಣ್ಣ"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr ""
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr "ಒಂದು ಸಮಸ್ಯೆಯನ್ನು ಎತ್ತಿಕೊಳ
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr ""
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "ಫಾಂಟ್ ಕುಟುಂಬಕ್ಕಾಗಿ ಹುಡುಕಿ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "ಫಾಂಟ್ ಉಪವಿಭಾಗಕ್ಕಾಗಿ ಹುಡುಕಿ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "ಫಾಂಟ್ ಉಪವಿಭಾಗಕ್ಕಾಗಿ ಹುಡುಕಿ"
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr "ಭಾಷೆಗಾಗಿ ಹುಡುಕಿ"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "ಎರಡು ಅಂಶದ ದೃಢೀಕರಣದೊಂದಿಗೆ ಸುರಕ್ಷಿತ"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "ಭದ್ರತೆ"
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "ನಿಮ್ಮ ಖಾತೆಯಲ್ಲಿ ಎರಡು ಅಂಶದ ದೃಢೀಕರಣವನ್ನು ಹೊಂದಿಸಿ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "ಹಂಚಿಕೆ"
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "ಹೆಸರನ್ನು ನೀಡುವ ಮೂಲಕ ನಿಮ್ಮ ರೆಸ್ಯೂಮ್ ಅನ್ನು ನಿರ್ಮಿಸಲು ಪ್ರಾರಂಭಿಸಿ."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "ಅಂಕಿಅಂಶಗಳು"
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr "ಸಿಸ್ಟಂ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "ಮಾದರಿ"
|
||||
@ -1465,15 +1470,12 @@ msgstr "ಪ್ರಶಂಸಾಪತ್ರಗಳು"
|
||||
msgid "Text Color"
|
||||
msgstr "ಅಕ್ಷರದ ಬಣ್ಣ"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "ನೀವು ನಮೂದಿಸಿದ ಪಾಸ್ವರ್ಡ್ಗಳು ಹೊಂದಿಕೆಯಾಗುತ್ತಿಲ್ಲ."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "ನೀವು ನವೀಕರಿಸಲು ಬಯಸುವ ರೆಸ್ಯೂಮ್ ಲಾಕ್ ಆಗಿದೆ, ನೀವು ಅದರಲ್ಲಿ ಯಾವುದೇ ಬದಲಾವಣೆಗಳನ್ನು ಮಾಡಲು ಬಯಸಿದರೆ ದಯವಿಟ್ಟು ಅನ್ಲಾಕ್ ಮಾಡಿ."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr "ವೀಕ್ಷಣೆಗಳು ಮತ್ತು ಡೌನ್ಲೋಡ
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "ಎರಡು ಅಂಶಗಳ ದೃಢೀಕರಣ"
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr "ಅಧ್ಯಯನದ ಪ್ರಕಾರ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "ಮುದ್ರಣಕಲೆ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "ಲಿಂಕ್ಗಳನ್ನು ಅಂಡರ್ಲೈನ್ ಮಾಡಿ"
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr "ನಿಮ್ಮ ಇಮೇಲ್ ವಿಳಾಸವನ್ನು ಯಶಸ
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "ನಿಮ್ಮ OpenAI API ಕೀಯನ್ನು ಇನ್ನೂ ಹೊಂದಿಸಲಾಗಿಲ್ಲ. OpenAI ಇಂಟಿಗ್ರೇಶನ್ ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಲು ದಯವಿಟ್ಟು ನಿಮ್ಮ ಖಾತೆಯ ಸೆಟ್ಟಿಂಗ್ಗಳಿಗೆ ಹೋಗಿ."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "ನಿಮ್ಮ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ಯಶಸ್ವಿಯಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ko\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Korean\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
@ -46,11 +46,11 @@ msgstr "<0>참고: </0>OpenAI API를 이용함으로써 귀하는 OpenAI가 명
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr "<0>커뮤니티에서 반응형 이력서 문서를 작성하는 데 많은 시간을 투자했으며, 이 문서가 앱을 시작하는 데 도움이 될 것이라고 확신합니다.</0><1>또한 시작하는 데 도움이 되는 많은 예시와 완벽한 이력서를 만드는 데 도움이 될 수 있는 미처 몰랐던 기능도 많이 있습니다.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>현재 2단계 인증은 비활성화되어 있습니다.</0> 계정에 인증 앱을 추가하여 사용하도록 설정할 수 있습니다."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>2단계 인증이 활성화되었습니다.</0> 로그인할 때마다 코드를 입력하라는 메시지가 표시됩니다."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "계정"
|
||||
msgid "Add a custom field"
|
||||
msgstr "사용자 지정 필드 추가"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "새 항목 추가"
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr "중앙 아트보드"
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "비밀번호 변경"
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr "회사"
|
||||
msgid "Confident"
|
||||
msgstr "자신감"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "새 비밀번호 확인"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr "지금 만들기"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "샘플 이력서 만들기"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "사용자 정의 CSS"
|
||||
@ -423,14 +424,14 @@ msgstr "단일/다중 페이지 이력서 디자인"
|
||||
msgid "Disable"
|
||||
msgstr "비활성화"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "2FA 비활성화"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "폐기"
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr "이력서 PDF를 다운로드하세요. 이 파일은 이력서를 인쇄하거나 채용 담당자에게 보내거나 취업 포털에 업로드하는 데 사용할 수 있습니다."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "PDF 다운로드"
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr "효과"
|
||||
msgid "Email"
|
||||
msgstr "이메일"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "2단계 인증 활성화"
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr "Reactive Resume 에서 사용할 수 있는 템플릿을 살펴보고 이 템플릿으로 만든 이력서를 확인하세요. 다음 이력서를 작성할 때 참고할 수 있는 예시로도 사용할 수 있습니다."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "내보내기"
|
||||
@ -564,19 +565,19 @@ msgstr "마지막으로,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "맞춤법 및 문법 수정"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "글꼴"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "글자 크기"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "글꼴 하위 집합"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "글꼴 변형"
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr "숨겨진"
|
||||
msgid "Hide"
|
||||
msgstr "숨기기"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "아이콘 숨기기"
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr "글쓰기 향상"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "이 QR 코드를 스캔할 수 없는 경우, 이 링크를 복사하여 인증 앱에 붙여넣을 수도 있습니다."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "이 섹션에서는 비밀번호를 변경하고 2단계 인증을 활성화/비활성화할 수 있습니다."
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "이 섹션에서는 계정 및 사용자와 관련된 모든 데이터를 삭제할 수 있지만, <0>이 작업은 되돌릴 수</0> 없다는 점에 유의하세요."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr "정보"
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "마지막 업데이트 {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr "레이아웃"
|
||||
@ -853,7 +856,7 @@ msgstr "빛"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "밝거나 어두운 테마"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "선 높이"
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr "이름"
|
||||
msgid "Network"
|
||||
msgstr "네트워크"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "새 비밀번호"
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "참고: 이렇게 하면 계정의 보안이 약해집니다."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "참고"
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr "OpenAI/올라마 통합"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "옵션"
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr "조직"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "페이지"
|
||||
@ -1043,7 +1048,7 @@ msgstr "페이지 {pageNumber}"
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "비밀번호"
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr "기본 색상"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr "개인정보 보호정책"
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr "문제 제기"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr "팬으로 스크롤"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "줌으로 스크롤"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "글꼴 패밀리 검색"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "글꼴 하위 집합 검색"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "글꼴 변형 검색"
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr "언어 검색"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "2단계 인증으로 보안 유지"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "보안"
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "계정에 2단계 인증 설정하기"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "공유"
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "이름을 지정하여 이력서 작성을 시작하세요."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "통계"
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr "시스템"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "템플릿"
|
||||
@ -1465,15 +1470,12 @@ msgstr "사용 후기"
|
||||
msgid "Text Color"
|
||||
msgstr "텍스트 색상"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "입력한 비밀번호가 일치하지 않습니다."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "업데이트하려는 이력서가 잠겨 있으므로 변경하려면 잠금을 해제하세요."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr "조회수 및 다운로드 추적"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "2단계 인증"
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr "학습 유형"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "타이포그래피"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "밑줄 링크"
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr "이메일 주소가 성공적으로 확인되었습니다."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "OpenAI API 키가 아직 설정되지 않았습니다. 계정 설정으로 이동하여 OpenAI 연동을 활성화하세요."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "비밀번호가 성공적으로 업데이트되었습니다."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: lt\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Lithuanian\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && (n%100>19 || n%100<11) ? 0 : (n%10>=2 && n%10<=9) && (n%100>19 || n%100<11) ? 1 : n%1!=0 ? 2: 3);\n"
|
||||
@ -46,11 +46,11 @@ msgstr "<0>Pastaba: </0>naudodamiesi \"OpenAI\" API pripažįstate ir sutinkate
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr "<0>Bendruomenė daug laiko skyrė \"Reactive Resume\" dokumentacijai rašyti ir esu tikras, kad ji padės jums pradėti dirbti su programa.</0><1>Taip pat yra daug pavyzdžių, kurie padės jums pradėti dirbti, ir funkcijų, apie kurias galbūt nežinojote ir kurios gali padėti sukurti tobulą gyvenimo aprašymą.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>Šiuo metu dviejų veiksnių autentifikavimas yra išjungtas.</0> Jį galite įjungti į savo paskyrą įtraukę autentifikatoriaus programėlę."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>Įjungtas dviejų veiksnių autentifikavimas.</0> Kiekvieną kartą prisijungdami turėsite įvesti kodą."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Paskyra"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Pridėti pasirinktinį lauką"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Pridėti naują elementą"
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr "Centrinė meno lenta"
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Keisti slaptažodį"
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr "Įmonė"
|
||||
msgid "Confident"
|
||||
msgstr "Pasitikintis savimi"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Patvirtinti naują slaptažodį"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr "Sukurkite jį dabar"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Sukurti pavyzdinį gyvenimo aprašymą"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "Pasirinktinis CSS"
|
||||
@ -423,14 +424,14 @@ msgstr "Sukurkite vieno / kelių puslapių gyvenimo aprašymus"
|
||||
msgid "Disable"
|
||||
msgstr "Išjungti"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Išjungti 2FA"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Išmesti"
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr "Atsisiųskite savo gyvenimo aprašymą PDF formatu. Šis failas gali būti naudojamas atspausdinti savo gyvenimo aprašymą, išsiųsti jį įdarbintojams arba įkelti į darbo portalus."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Atsisiųsti PDF"
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr "Efektai"
|
||||
msgid "Email"
|
||||
msgstr "El. paštas"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Įjungti 2FA"
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr "Išnagrinėkite \"Reactive Resume\" esančius šablonus ir peržiūrėkite pagal juos sukurtus gyvenimo aprašymus. Jie taip pat gali būti pavyzdžiai, kuriais vadovaudamiesi galėsite kurti kitą savo gyvenimo aprašymą."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Eksportuoti"
|
||||
@ -564,19 +565,19 @@ msgstr "Pagaliau,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Taisyti rašybą ir gramatiką"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Šriftų šeima"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Šrifto dydis"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Šriftų pogrupis"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Šrifto variantai"
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr "Paslėptas"
|
||||
msgid "Hide"
|
||||
msgstr "Paslėpti"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Paslėpti piktogramas"
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr "Pagerinti rašymą"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Jei negalite nuskaityti šio QR kodo, taip pat galite nukopijuoti ir įklijuoti šią nuorodą į autentifikatoriaus programą."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "Šiame skyriuje galite pakeisti slaptažodį ir įjungti / išjungti dviejų veiksnių autentifikavimą."
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "Šiame skyriuje galite ištrinti savo paskyrą ir visus su naudotoju susijusius duomenis, tačiau nepamirškite, kad <0>šis veiksmas yra negrįžtamas</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr "Informacija"
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Paskutinį kartą atnaujinta {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr "Išdėstymas"
|
||||
@ -853,7 +856,7 @@ msgstr "Šviesa"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Šviesi arba tamsi tema"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Linijos aukštis"
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr "Vardas"
|
||||
msgid "Network"
|
||||
msgstr "Tinklas"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Naujas slaptažodis"
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Pastaba: dėl to jūsų paskyra taps mažiau saugi."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Pastabos"
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr "\"OpenAI/Ollama\" integracija"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Parinktys"
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr "Organizacija"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Puslapis"
|
||||
@ -1043,7 +1048,7 @@ msgstr "Puslapis {pageNumber}"
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Slaptažodis"
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr "Pagrindinė spalva"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Privatumo politika"
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr "Iškelti problemą"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr "Slinkite prie Pan"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Slinkti į priartinimą"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Šriftų šeimos paieška"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Šrifto poaibio paieška"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Šrifto varianto paieška"
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr "Kalbos paieška"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Apsaugokite naudodami dviejų veiksnių autentifikavimą"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Apsauga"
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Nustatykite dviejų veiksnių autentifikavimą savo paskyroje"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Dalijimasis"
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Pradėkite kurti savo gyvenimo aprašymą suteikdami jam pavadinimą."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Statistika"
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr "Sistema"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Šablonas"
|
||||
@ -1465,15 +1470,12 @@ msgstr "Atsiliepimai"
|
||||
msgid "Text Color"
|
||||
msgstr "Teksto spalva"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "Įvesti slaptažodžiai nesutampa."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "Gyvenimo aprašymas, kurį norite atnaujinti, yra užrakintas, jei norite jį keisti, atrakinkite jį."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr "Stebėkite peržiūras ir atsisiuntimus"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Dviejų veiksnių autentiškumo patvirtinimas"
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr "Studijų tipas"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Tipografija"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Pabraukite nuorodas"
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr "Jūsų el. pašto adresas buvo sėkmingai patvirtintas."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Jūsų \"OpenAI\" API raktas dar nenustatytas. Eikite į savo paskyros nustatymus ir įjunkite \"OpenAI\" integraciją."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Jūsų slaptažodis sėkmingai atnaujintas."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: lv\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Latvian\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n"
|
||||
@ -46,11 +46,11 @@ msgstr "<0>Piezīme: </0>Izmantojot OpenAI API, jūs atzīstat un piekrītat Ope
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr "<0>Kopiena ir pavadījusi daudz laika, rakstot Reactive Resume dokumentāciju, un esmu pārliecināts, ka tā palīdzēs jums sākt strādāt ar šo programmu.</0><1>Tur ir arī daudz piemēru, kas palīdzēs jums sākt darbu, un funkcijas, par kurām jūs, iespējams, nezināt un kuras varētu palīdzēt jums izveidot perfektu CV.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>Divu faktoru autentifikācija pašlaik ir atspējota.</0> To var aktivizēt, pievienojot savam kontam autentifikatora lietotni."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>Ir iespējota divu faktoru autentifikācija.</0> Katru reizi, kad pierakstīsieties, jums būs jāievada kods."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Konts"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Pielāgotā lauka pievienošana"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Pievienot jaunu elementu"
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr "Centrs Artboard"
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Mainīt paroli"
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr "Uzņēmums"
|
||||
msgid "Confident"
|
||||
msgstr "Pārliecināts"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Jaunās paroles apstiprināšana"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr "Izveidojiet to tagad"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Izveidot parauga CV"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "Pielāgotais CSS"
|
||||
@ -423,14 +424,14 @@ msgstr "Vienas/vairāku lappušu CV dizains"
|
||||
msgid "Disable"
|
||||
msgstr "Atslēgt"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "2FA atspējošana"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Izmest"
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr "Lejupielādējiet savu CV PDF formātā. Šo failu var izmantot, lai izdrukātu savu CV, nosūtītu to personāla atlases speciālistiem vai augšupielādētu darba portālos."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Lejupielādēt PDF"
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr "Ietekme"
|
||||
msgid "Email"
|
||||
msgstr "E-pasts"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Ieslēgt 2FA"
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr "Iepazīstieties ar Reactive Resume pieejamajām veidnēm un apskatiet ar tām izstrādātos CV. Tie var kalpot arī kā piemēri, kas palīdzēs jums izveidot nākamo CV."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Eksportēt"
|
||||
@ -564,19 +565,19 @@ msgstr "Visbeidzot,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Labot pareizrakstību un gramatiku"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Fontu ģimene"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Fonta lielums"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Fontu apakškomplekts"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Fontu varianti"
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr "Slēptais"
|
||||
msgid "Hide"
|
||||
msgstr "Paslēpt"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Slēpt ikonas"
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr "Uzlabot rakstīšanu"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Ja nevarat skenēt šo QR kodu, varat arī kopēt un ielīmēt šo saiti autentifikatora lietotnē."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "Šajā sadaļā varat mainīt paroli un iespējot/izslēgt divu faktoru autentifikāciju."
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "Šajā sadaļā varat dzēst savu kontu un visus ar lietotāju saistītos datus, taču ņemiet vērā, ka <0>šī darbība ir neatgriezeniska</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr "Informācija"
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Pēdējo reizi atjaunināts {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr "Izkārtojums"
|
||||
@ -853,7 +856,7 @@ msgstr "Gaisma"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Gaišs vai tumšs temats"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Līnijas augstums"
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr "Nosaukums"
|
||||
msgid "Network"
|
||||
msgstr "Tīkls"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Jauna parole"
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Piezīme: Tādējādi jūsu konts kļūs mazāk drošs."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Piezīmes"
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr "OpenAI/Ollama integrācija"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Iespējas"
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr "Organizācija"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Lapa"
|
||||
@ -1043,7 +1048,7 @@ msgstr "Lapa {pageNumber}"
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Parole"
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr "Primārā krāsa"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Konfidencialitātes politika"
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr "Izvirzīt jautājumu"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr "Ritiniet uz Pan"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Ritiniet, lai palielinātu"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Meklēt fontu saimi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Meklēt fontu apakškopu"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Meklēt fonta variantu"
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr "Meklēt valodu"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Droša ar divu faktoru autentifikāciju"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Drošība"
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Divu faktoru autentifikācijas iestatīšana kontā"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Koplietošana"
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Sāciet veidot savu CV, piešķirot tam nosaukumu."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Statistika"
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr "Sistēma"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Šablons"
|
||||
@ -1465,15 +1470,12 @@ msgstr "Atsauksmes"
|
||||
msgid "Text Color"
|
||||
msgstr "Teksta krāsa"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "Ievadītās paroles nesakrīt."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "CV, kuru vēlaties atjaunināt, ir bloķēts, lūdzu, atbloķējiet to, ja vēlaties tajā veikt izmaiņas."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr "Skatījumu un lejupielāžu izsekošana"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Divu faktoru autentifikācija"
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr "Pētījuma veids"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Tipogrāfija"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Pasvītrot saites"
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr "Jūsu e-pasta adrese ir veiksmīgi pārbaudīta."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Jūsu OpenAI API atslēga vēl nav iestatīta. Lūdzu, dodieties uz sava konta iestatījumiem, lai iespējotu OpenAI integrāciju."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Jūsu parole ir veiksmīgi atjaunināta."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ml\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Malayalam\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -46,11 +46,11 @@ msgstr ""
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr ""
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr ""
|
||||
msgid "Add a custom field"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr ""
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr ""
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr ""
|
||||
msgid "Confident"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr ""
|
||||
msgid "Create Sample Resume"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
@ -423,14 +424,14 @@ msgstr ""
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr ""
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr ""
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr ""
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
@ -564,19 +565,19 @@ msgstr ""
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr ""
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr ""
|
||||
msgid "Hide"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr ""
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr ""
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr ""
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr ""
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr ""
|
||||
@ -853,7 +856,7 @@ msgstr ""
|
||||
msgid "Light or dark theme"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr ""
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr ""
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
@ -1043,7 +1048,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr ""
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr ""
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr ""
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr ""
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr ""
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
@ -1465,15 +1470,12 @@ msgstr ""
|
||||
msgid "Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr ""
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr ""
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: mr\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Marathi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -46,11 +46,11 @@ msgstr ""
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr ""
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "खाते"
|
||||
msgid "Add a custom field"
|
||||
msgstr "सानुकूल रकाना जोडा"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "नवीन वस्तू जोडा"
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "पासवर्ड बदला"
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr "कंपनी"
|
||||
msgid "Confident"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr "आता बनवा"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "नमुना रेझ्युमे बनवा"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
@ -423,14 +424,14 @@ msgstr "एक किंवा अनेक पानांचे रेझ्
|
||||
msgid "Disable"
|
||||
msgstr "अक्षम करा"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "2FA अक्षम करा"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "टाकून द्या"
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "PDF डाउनलोड करा"
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr "इफेक्ट"
|
||||
msgid "Email"
|
||||
msgstr "ईमेल"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "2FA सक्षम करा"
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "निर्यात करा"
|
||||
@ -564,19 +565,19 @@ msgstr "शेवटी,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "फाँट फॅमिली"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "फाँटचा आकार"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "फाँट उपसंच"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "फाँट प्रतिरूप"
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr "लपवलेले"
|
||||
msgid "Hide"
|
||||
msgstr "लपवा"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "आयकन लपवा"
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr "लेखन सुधारा"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr ""
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr "माहिती"
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "याआधी {lastUpdated} ला अपडेट केले"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr "मांडणी"
|
||||
@ -853,7 +856,7 @@ msgstr "हलकी"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "हलकी किंवा गडद थीम"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "रेषेची उंची"
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr "नाव"
|
||||
msgid "Network"
|
||||
msgstr "नेटवर्क"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "नवीन पासवर्ड"
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "टीप: याने आपले खाते कमी सुरक्षित होईल."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "टिपा"
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "विकल्प"
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr "संघटना"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "पान"
|
||||
@ -1043,7 +1048,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "पासवर्ड"
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr "प्राथमिक रंग"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr ""
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr ""
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "फाँट फॅमिलीचा शोध घ्या"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "फाँट उपसंचाचा शोध घ्या"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "फाँट प्रतिरूपाचा शोध घ्या"
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr "भाषेचा शोध घ्या"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "सुरक्षा"
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "शेअर करणे"
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "रेझ्युमेला नाव देऊन तो बनवायला सुरू करा."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "आकडेवारी"
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "साचा"
|
||||
@ -1465,15 +1470,12 @@ msgstr ""
|
||||
msgid "Text Color"
|
||||
msgstr "मजकुराचा रंग"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "तुम्ही प्रविष्ट केलेले पासवर्ड एकमेकांशी जुळत नाहीत."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "तुम्हाला जो रेझ्युमे अपडेट करायचा आहे तो लॉक केलेला आहे. त्यात बदल करायचे असल्यास त्याला कृपया अनलोक करा."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr "व्ह्यू आणि डाउनलोड ट्रॅक क
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr "अभ्यासाचा प्रकार"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "टायपोग्राफी"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "दुवे अधोरेखित करा"
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr ""
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ms\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Malay\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
@ -46,11 +46,11 @@ msgstr "<0>Nota: </0>Dengan menggunakan API OpenAI, anda mengakui dan menerima <
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr "<0>Masyarakat telah banyak menghabiskan masa menulis dokumentasi untuk Resume Reaktif, dan saya yakin ia akan membantu anda memulakan dengan aplikasi.</0><1>Juga terdapat banyak contoh untuk membantu anda memulakan, dan ciri-ciri yang mungkin anda tidak tahu tentang yang boleh membantu anda membina resume yang sempurna.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>Pengesahan dua faktor kini dimatikan.</0> Anda boleh mengaktifkannya dengan menambah aplikasi pengesah ke akaun anda."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>Pengesahan dua faktor diaktifkan.</0> Anda akan diminta untuk memasukkan kod setiap kali anda log masuk."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Akaun"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Tambahkan medan tersuai"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Tambah item baru"
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr "Papan Seni Tengah"
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Tukar Kata Laluan"
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr "Syarikat"
|
||||
msgid "Confident"
|
||||
msgstr "Keyakinan"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Sahkan Kata Laluan Baru"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr "Cipta satu sekarang"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Buat Resume Sampel"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
@ -423,14 +424,14 @@ msgstr "Mereka bentuk resume satu/multi muka surat"
|
||||
msgid "Disable"
|
||||
msgstr "Matikan"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Matikan 2FA"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Buang"
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr "Muat turunkan PDF resume anda. Fail ini boleh digunakan untuk mencetak resume anda, menghantarkannya kepada perekrut, atau memuat naik ke portal pekerjaan."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Muat turun PDF"
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr "Kesan"
|
||||
msgid "Email"
|
||||
msgstr "E-mel"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Aktifkan 2FA"
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr "Terokai templat yang tersedia dalam Reaktif Resume dan lihat resume yang dibuat dengan mereka. Mereka juga boleh berfungsi sebagai contoh untuk membimbing penciptaan resume anda seterusnya."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Eksport"
|
||||
@ -564,19 +565,19 @@ msgstr "Akhirnya,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Betulkan Ejaan & Tatabahasa"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Keluarga fon"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Saiz Fon"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Subset Fon"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Varian Fon"
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr "Tersembunyi"
|
||||
msgid "Hide"
|
||||
msgstr "Sembunyi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Sembunyikan Icon"
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr "Meningkatkan Menulis"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Sekiranya anda tidak boleh mengimbas Kod QR ini, anda juga boleh menyalin-dan-tampal pautan ini ke dalam aplikasi pengesah anda."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "Di bahagian ini, anda boleh menukar kata laluan anda dan mengaktifkan/menonaktifkan pengesahan dua faktor."
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "Dalam bahagian ini, anda boleh memadam akaun anda dan semua data yang berkaitan dengan pengguna anda, tetapi sila ambil perhatian bahawa <0>tindakan ini tidak dapat dikembalikan</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr "Maklumat"
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Terakhir dikemaskini {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr "Tataletak"
|
||||
@ -853,7 +856,7 @@ msgstr "Cerah"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Tema terang atau gelap"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Tinggi Baris"
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr "Nama"
|
||||
msgid "Network"
|
||||
msgstr "Rangkaian"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Kata Laluan Baru"
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Nota: Ini akan menjadikan akaun anda kurang selamat."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Nota"
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Pilihan"
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr "Organisasi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Halaman"
|
||||
@ -1043,7 +1048,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Kata Laluan"
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr "Warna Utama"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Dasar Privasi"
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr "Timbulkan isu"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr ""
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Cari keluarga fon"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Cari subset fon"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Cari varian font"
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr "Cari bahasa"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Selamatkan dengan pengesahan dua faktor"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Keselamatan"
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Tetapkan pengesah dua faktor pada akaun anda"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr " Berkongsi"
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Mula bina resume anda dengan memberinya nama."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Statistik"
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr "Sistem"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Templat"
|
||||
@ -1465,15 +1470,12 @@ msgstr "Testimoni"
|
||||
msgid "Text Color"
|
||||
msgstr "Warna Teks"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "Kata laluan yang anda masukkan tidak sepadan"
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "Resume yang anda ingin kemaskini telah dikunci, sila buka kuncinya jika anda ingin membuat sebarang perubahan padanya."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr "Jejak pandangan dan muat turun"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Pengesahan Dua Faktor"
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr "Jenis Kajian"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Tipografi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Garis Bawah Pautan"
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr "Alamat emel anda telah disahkan dengan berjaya."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Kunci API OpenAI anda belum ditetapkan. Sila pergi ke tetapan akaun anda untuk membolehkan Integrasi OpenAI."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Kata laluan anda telah berjaya dikemas kini."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ne\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Nepali\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -46,11 +46,11 @@ msgstr ""
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr ""
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr ""
|
||||
msgid "Add a custom field"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr ""
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr ""
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr ""
|
||||
msgid "Confident"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr ""
|
||||
msgid "Create Sample Resume"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
@ -423,14 +424,14 @@ msgstr ""
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr ""
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr ""
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr ""
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
@ -564,19 +565,19 @@ msgstr ""
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr ""
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr ""
|
||||
msgid "Hide"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr ""
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr ""
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr ""
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr ""
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr ""
|
||||
@ -853,7 +856,7 @@ msgstr ""
|
||||
msgid "Light or dark theme"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr ""
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr ""
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
@ -1043,7 +1048,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr ""
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr ""
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr ""
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr ""
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr ""
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
@ -1465,15 +1470,12 @@ msgstr ""
|
||||
msgid "Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr ""
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr ""
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: nl\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Dutch\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -46,11 +46,11 @@ msgstr "<0>Opmerking: </0>Door gebruik te maken van de OpenAI API, erkent en aan
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr "<0>De community heeft veel tijd gestoken in het schrijven van de documentatie voor Reactive Resume, en ik weet zeker dat het u zal helpen om met de app aan de slag te gaan.</0><1>Er zijn ook veel voorbeelden om u op weg te helpen, en functies die u misschien nog niet kent en die u kunnen helpen bij het maken van uw perfecte CV.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>Tweefactorauthenticatie is momenteel uitgeschakeld.</0> U kunt dit inschakelen door een authenticator-app aan uw account toe te voegen."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>Tweefactorauthenticatie is ingeschakeld.</0> Elke keer dat u zich aanmeldt, wordt u gevraagd een code in te voeren."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Account"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Aangepast veld toevoegen"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Een nieuw item toevoegen"
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr "Artboard centreren"
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Wachtwoord Wijzigen"
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr "Bedrijf"
|
||||
msgid "Confident"
|
||||
msgstr "Zelfzeker"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Nieuw Wachtwoord Bevestigen"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr "Maak er nu één aan"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Maak een Voorbeeld CV aan"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "Aangepaste CSS"
|
||||
@ -423,14 +424,14 @@ msgstr "Ontwerp CV's met één of meerdere pagina's"
|
||||
msgid "Disable"
|
||||
msgstr "Deactiveer"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Deactiveer 2FA"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Verwijder"
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr "Download een PDF van uw CV. Dit bestand kan worden gebruikt om uw CV af te drukken, naar recruiters te sturen of te uploaden op vacaturesites."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Download PDF"
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr "Effecten"
|
||||
msgid "Email"
|
||||
msgstr "E-mail"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "2FA Inschakelen"
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr "Ontdek de sjablonen die beschikbaar zijn in Reactive Resume en bekijk de CV's die ermee zijn gemaakt. Ze kunnen ook als voorbeeld dienen om u te helpen bij het aanmaken van uw volgende CV."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Exporteren"
|
||||
@ -564,19 +565,19 @@ msgstr "Tenslotte,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Spelling en Grammatica Verbeteren"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Lettertype Familie"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Tekengrootte"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Lettertype Subset"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Lettertypevarianten"
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr "Verborgen"
|
||||
msgid "Hide"
|
||||
msgstr "Verbergen"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Pictogrammen Verbergen"
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr "Schrijven verbeteren"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Als u deze QR Code niet kunt scannen, kunt u deze link ook in uw authenticator app kopiëren-plakken."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "In dit gedeelte kunt u uw wachtwoord wijzigen en verificatie met twee factoren in-/uitschakelen."
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "In dit gedeelte kunt u uw account en alle aan uw gebruiker gekoppelde gegevens verwijderen, maar houd er rekening mee dat <0>deze actie onomkeerbaar</0> is."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr "Informatie"
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Laatst bijgewerkt {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr "Layout"
|
||||
@ -853,7 +856,7 @@ msgstr "Licht"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Licht of donker thema"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Regelafstand"
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr "Naam"
|
||||
msgid "Network"
|
||||
msgstr "Netwerk"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Nieuw Wachtwoord"
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Let op: Dit maakt uw account minder veilig."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Aantekeningen"
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr "OpenAI/Ollama Integratie"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Opties"
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr "Organisatie"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Pagina"
|
||||
@ -1043,7 +1048,7 @@ msgstr "Pagina {pageNumber}"
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Wachtwoord"
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr "Primaire kleur"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Privacy Beleid"
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr "Probleem aankaarten"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr "Scroll naar Pan"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Scroll naar zoom"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Een lettertypefamilie zoeken"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Zoek naar een lettertype subset"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Zoeken naar een lettertype-variant"
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr "Een taal zoeken"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Beveiligen met tweestapsverificatie"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Beveiliging"
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Stel tweestapsverificatie in voor uw account"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Delen"
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Begin het opstellen van uw CV door het een naam te geven."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Statistieken"
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr "Systeem"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Sjabloon"
|
||||
@ -1465,15 +1470,12 @@ msgstr "Getuigenissen"
|
||||
msgid "Text Color"
|
||||
msgstr "Tekstkleur"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "De ingevoerde wachtwoorden komen niet overeen."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "Het CV dat u wilt bijwerken is vergrendeld. Ontgrendel het CV als u er wijzigingen in wilt aanbrengen."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr "Houd weergaven en downloads bij"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Tweestapsverificatie"
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr "Soort studie"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Typografie"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Links Onderstrepen"
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr "Uw e-mailadres is geverifieerd."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Uw OpenAI API-sleutel is nog niet ingesteld. Ga naar uw accountinstellingen om OpenAI-integratie in te schakelen."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Je wachtwoord is bijgewerkt."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: no\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Norwegian\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -46,11 +46,11 @@ msgstr "<0>Merk:</0> Ved å bruke OpenAI API, erkjenner og godtar du <1>bruksvil
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr "<0>Fellesskapet har brukt mye tid på å skrive dokumentasjonen for Reactive Resume, og jeg er sikker på at det vil hjelpe deg med å komme i gang med appen.</0><1>Det er også mange eksempler som hjelper deg med å komme i gang, og funksjoner du kanskje ikke visste om som kan hjelpe deg med å skape din perfekte CV.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>Tofaktorautentisering er for øyeblikket deaktivert.</0> Du kan aktivere den ved å legge til en autentiseringsapp til kontoen din."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>Tofaktorautentisering er aktivert.</0> Du vil bli bedt om å skrive inn en kode hver gang du logger på."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Konto"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Legg til egendefinert felt"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Legg til nytt element"
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr "Sentrer Kunstbrett"
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Bytt Passord"
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr "Firma"
|
||||
msgid "Confident"
|
||||
msgstr "Selvsikker"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Bekreft Nytt Passord"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr "Opprett en nå"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Opprett Eksempel-CV"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
@ -423,14 +424,14 @@ msgstr "Design enkelt-/flerside-CV"
|
||||
msgid "Disable"
|
||||
msgstr "Deaktiver"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Deaktiver 2FA"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Forkast"
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr "Last ned en PDF av CV-en din. Denne filen kan brukes til å skrive ut CV-en din, sende den til rekrutterere eller laste opp på jobbportaler."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Last ned PDF"
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr "Effekter"
|
||||
msgid "Email"
|
||||
msgstr "E-post"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Aktiver 2FA"
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr "Utforsk malene som er tilgjengelige i Reactive Resume og se CVene laget med dem. De kan også være fine eksempler for å hjelpe deg med å lage din neste CV."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Eksporter"
|
||||
@ -564,19 +565,19 @@ msgstr "Endelig,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Fiks Staving og Grammatikk"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Skrifttype"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Skriftstørrelse"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Skriftdelsett"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Skriftvarianter"
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr "Skjult"
|
||||
msgid "Hide"
|
||||
msgstr "Skjul"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Skjul Ikoner"
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr "Forbedre Skriving"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Hvis du ikke klarer å skanne denne QR-koden, kan du også kopiere og lime inn denne lenken i autentiseringsappen din."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "I denne delen kan du endre passordet ditt og aktivere/deaktivere tofaktorautentisering."
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "I denne delen kan du slette kontoen din og alle data knyttet til brukeren din, men husk at <0>denne handlingen er irreversibel</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr "Informasjon"
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Sist oppdatert {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr "Utforming"
|
||||
@ -853,7 +856,7 @@ msgstr "Lyst"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Lyst eller mørkt tema"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Linjehøyde"
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr "Navn"
|
||||
msgid "Network"
|
||||
msgstr "Nettverk"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Nytt Passord"
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Merk: Dette vil gjøre kontoen din mindre sikker."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Notater"
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Innstillinger"
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr "Organisasjon"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Side"
|
||||
@ -1043,7 +1048,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Passord"
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr "Hovedfarge"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Retningslinjer for personvern"
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr "Ta opp et problem"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr ""
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Søk etter en skriftfamilie"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Søk etter et skriftundersett"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Søk etter en skriftvariant"
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr "Søk etter et språk"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Sikker med tofaktorautentisering"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Sikkerhet"
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Sett opp totrinnsverifisering på kontoen din"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Deling"
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Begynn å bygge din CV ved å gi den et navn."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Statistikk"
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr "System"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Mal"
|
||||
@ -1465,15 +1470,12 @@ msgstr "Uttalelser"
|
||||
msgid "Text Color"
|
||||
msgstr "Tekstfarge"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "Passordene du har angitt stemmer ikke overens."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "CV-en du vil oppdatere er låst. Lås opp hvis du ønsker å gjøre endringer i den."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr "Spor visninger og nedlastinger"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Tofaktorautentisering"
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr "Studietype"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Typografi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Understrek koblinger"
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr "E-postadressen din har blitt bekreftet."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Din OpenAI API-nøkkel er ikke angitt ennå. Gå til kontoinnstillingene dine for å aktivere OpenAI-integrasjon."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Passordet ditt har blitt oppdatert."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: or\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Odia\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -46,11 +46,11 @@ msgstr ""
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr ""
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr ""
|
||||
msgid "Add a custom field"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr ""
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr ""
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr ""
|
||||
msgid "Confident"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr ""
|
||||
msgid "Create Sample Resume"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
@ -423,14 +424,14 @@ msgstr ""
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr ""
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr ""
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr ""
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
@ -564,19 +565,19 @@ msgstr ""
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr ""
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr ""
|
||||
msgid "Hide"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr ""
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr ""
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr ""
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr ""
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr ""
|
||||
@ -853,7 +856,7 @@ msgstr ""
|
||||
msgid "Light or dark theme"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr ""
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr ""
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
@ -1043,7 +1048,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr ""
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr ""
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr ""
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr ""
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr ""
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
@ -1465,15 +1470,12 @@ msgstr ""
|
||||
msgid "Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr ""
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr ""
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: pl\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Polish\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||
@ -46,11 +46,11 @@ msgstr "<0>Uwaga: </0>Korzystając z interfejsu API OpenAI, użytkownik przyjmuj
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr "<0>Społeczność poświęciła wiele czasu na napisanie dokumentacji dla Reactive Resume i jestem pewien, że pomoże Ci ona rozpocząć pracę z aplikacją.</0><1>Istnieje również wiele przykładów, które pomogą Ci rozpocząć pracę, a także funkcje, o których możesz nie wiedzieć, które mogą pomóc Ci zbudować idealne CV.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>Uwierzytelnianie dwuskładnikowe jest obecnie wyłączone.</0> Można je włączyć, dodając do konta aplikację uwierzytelniającą."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>Uwierzytelnianie dwuskładnikowe jest włączone.</0> Przy każdym logowaniu zostaniesz poproszony/a o wprowadzenie kodu."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Konto"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Dodaj niestandardowe pole"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Dodaj nowy element"
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr "Wyśrodkuj Obszar Roboczy"
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Zmień hasło"
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr "Firma"
|
||||
msgid "Confident"
|
||||
msgstr "Pewny siebie"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Potwierdź Nowe Hasło"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr "Stwórz teraz"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Stwórz przykładowe CV"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "Niestandardowy CSS"
|
||||
@ -423,14 +424,14 @@ msgstr "Projektuj CV jedno/wielostronicowe"
|
||||
msgid "Disable"
|
||||
msgstr "Wyłącz"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Wyłącz uwierzytelnianie dwuskładnikowe"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Odrzuć"
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr "Pobierz plik PDF ze swoim CV. Plik ten można wykorzystać do wydrukowania CV, przesłania go rekruterom lub przesłania na portale pracy."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Pobierz PDF"
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr "Efekty"
|
||||
msgid "Email"
|
||||
msgstr "E-mail"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Włącz 2FA"
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr "Przeglądaj szablony dostępne w Reactive Resume i przeglądaj CV utworzone za ich pomocą. Mogą również służyć jako przykłady, które pomogą w tworzeniu kolejnego CV."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Eksportuj"
|
||||
@ -564,19 +565,19 @@ msgstr "Na koniec,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Popraw pisownię i gramatykę"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Czcionka"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Rozmiar Czcionki"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Podzbiór czcionek"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Wariant Czcionki"
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr "Ukryte"
|
||||
msgid "Hide"
|
||||
msgstr "Ukryj"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Ukryj Ikony"
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr "Popraw Pisanie"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Jeśli nie możesz zeskanować tego kodu QR, możesz również skopiować i wkleić ten link do swojej aplikacji uwierzytelniającej."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "W tej sekcji możesz zmienić swoje hasło i włączyć/wyłączyć uwierzytelnianie dwuskładnikowe."
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "W tej sekcji możesz usunąć swoje konto i wszystkie dane powiązane z Twoim użytkownikiem, ale pamiętaj, że <0>ta czynność jest nieodwracalna</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr "Informacje"
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Ostatnio zaktualizowane {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr "Układ"
|
||||
@ -853,7 +856,7 @@ msgstr "Jasny"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Jasny lub ciemny motyw"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Wysokość wiersza"
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr "Nazwa"
|
||||
msgid "Network"
|
||||
msgstr "Sieć"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Nowe Hasło"
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Uwaga: Spowoduje to zmniejszenie bezpieczeństwa Twojego konta."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Notatki"
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr "Integracja OpenAI/Ollama"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Opcje"
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr "Nazwa firmy"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Strona"
|
||||
@ -1043,7 +1048,7 @@ msgstr "Strona {pageNumber}"
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Hasło"
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr "Główny kolor"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Polityka prywatności"
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr "Zgłoś problem"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr "Przewiń do Pan"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Przewiń, aby powiększyć"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Wyszukaj czcionkę"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Wyszukaj podzbiór czcionek"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Wyszukaj wariant czcionki"
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr "Wyszukaj język"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Bezpieczeństwo dzięki uwierzytelnianiu dwuskładnikowemu"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Bezpieczeństwo"
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Skonfiguruj uwierzytelnianie dwuskładnikowe na swoim koncie"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Udostępnianie"
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Zacznij tworzyć swoje CV, nadając mu nazwę."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Statystyki"
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr "System"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Szablon"
|
||||
@ -1465,15 +1470,12 @@ msgstr "Referencje"
|
||||
msgid "Text Color"
|
||||
msgstr "Kolor Tekstu"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "Wprowadzone hasła nie są zgodne."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "CV, które chcesz zaktualizować, jest zablokowane. Odblokuj je, jeśli chcesz wprowadzić w nim jakiekolwiek zmiany."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr "Śledź wyświetlenia i pobrania"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Uwierzytelnianie dwuskładnikowe"
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr "Uzyskane wykształcenie"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Typografia"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Podkreśl Linki"
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr "Twój adres e-mail został pomyślnie zweryfikowany."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Twój klucz API OpenAI nie został jeszcze ustawiony. Przejdź do ustawień swojego konta, aby włączyć integrację z OpenAI."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Twoje hasło zostało pomyślnie zaktualizowane."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: pt\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Portuguese, Brazilian\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -46,11 +46,11 @@ msgstr "<0>Nota:</0> Ao utilizar a API OpenAI, você reconhece e aceita os <1>te
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr "<0>A comunidade passou muito tempo escrevendo a documentação do Reactive Resume e tenho certeza de que isso ajudará você a começar a usar o aplicativo.</0> <1>Também há muitos exemplos para ajudá-lo a começar e recursos que você talvez não conheça e que podem ajudá-lo a construir seu currículo perfeito.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>A autenticação de dois fatores está atualmente desativada.</0> Você pode habilitá-la adicionando um aplicativo autenticador à sua conta."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>A autenticação de dois fatores está habilitada.</0> Você será solicitado a inserir um código sempre que fizer login."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Conta"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Adicionar campo customizado"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Adicionar novo item"
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr "Centralizar prancheta"
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Alterar a senha"
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr "Empresa"
|
||||
msgid "Confident"
|
||||
msgstr "Confiante"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Confirmar Nova Senha"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr "Criar um agora"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Criar currículo de exemplo"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "CSS personalizado"
|
||||
@ -423,14 +424,14 @@ msgstr "Crie currículos de uma ou várias páginas"
|
||||
msgid "Disable"
|
||||
msgstr "Desabilitar"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Desativar 2FA"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Descartar"
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr "Baixe um PDF de seu currículo. Esse arquivo pode ser usado para imprimir seu currículo, enviá-lo para recrutadores ou carregá-lo em portais de emprego."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Baixar PDF"
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr "Efeitos"
|
||||
msgid "Email"
|
||||
msgstr "Email"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Ativar 2FA"
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr "Explore os modelos disponíveis no Reactive Resume e veja os currículos criados com eles. Eles também podem servir como exemplos para ajudar a orientar a criação de seu próximo currículo."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Exportar"
|
||||
@ -564,19 +565,19 @@ msgstr "Finalmente,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Corrigir ortografia e gramática"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Família de fontes"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Tamanho da fonte"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Subconjunto de Fontes"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Variante da Fonte"
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr "Oculto"
|
||||
msgid "Hide"
|
||||
msgstr "Ocultar"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Ocultar ícones"
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr "Melhorar a escrita"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Caso você não consiga escanear este código QR, você também pode copiar e colar este link no seu aplicativo de autenticação."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "Nesta seção, você pode alterar sua senha e ativar/desativar a autenticação de dois fatores."
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "Nesta seção você pode excluir sua conta e todos os dados associados ao seu usuário, mas lembre-se de que <0>esta ação é irreversível</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr "Informações"
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Última atualização {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr "Layout"
|
||||
@ -853,7 +856,7 @@ msgstr "Claro"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Tema claro ou escuro"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Altura da linha"
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr "Nome"
|
||||
msgid "Network"
|
||||
msgstr "Rede"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Nova Senha"
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Observação: Esta ação tornará sua conta menos segura."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Anotações"
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr "Integração OpenAI/Ollama"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Opções"
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr "Organização"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Página"
|
||||
@ -1043,7 +1048,7 @@ msgstr "Página {pageNumber}"
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Senha"
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr "Cor Primária"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Política de Privacidade"
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr "Aponte um problema"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr "Rolar para Pan"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Role para ampliar"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Procure uma família de fontes"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Procure um subconjunto de fontes"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Procure uma variante de fonte"
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr "Selecionar idioma"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Protegido com autenticação em dois fatores"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Segurança"
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Configure a autenticação de dois fatores em sua conta"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Compartilhamento"
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Comece a construir seu currículo dando um nome ao arquivo."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Estatísticas"
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr "Sistema"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Modelo"
|
||||
@ -1465,15 +1470,12 @@ msgstr "Depoimentos"
|
||||
msgid "Text Color"
|
||||
msgstr "Cor do texto"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "As senhas informadas não são iguais."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "O currículo que você deseja atualizar está bloqueado. Desbloqueie-o antes de fazer alguma alteração nele."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr "Acompanhe visualizações e downloads"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Autenticação de Dois Fatores"
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr "Tipo de Formação"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Tipografia"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Sublinhar links"
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr "Seu endereço de e-mail foi verificado com sucesso."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Sua chave de API OpenAI ainda não foi definida. Acesse as configurações da sua conta para ativar a integração com a OpenAI."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Sua senha foi atualizada com sucesso."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: pt\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Portuguese\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -46,11 +46,11 @@ msgstr "<0>Nota: </0>Ao utilizar a API da OpenAI, reconhece e aceita os <1>termo
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr "<0>A comunidade passou muito tempo a escrever a documentação do Reactive Resume e tenho a certeza de que isso o ajudará a começar a usar o aplicação.</0> <1>Também há muitos exemplos para ajudá-lo a começar e recursos que você talvez não conheça e que podem ajudá-lo a construir o currículo perfeito.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>A autenticação de dois fatores está atualmente desativada.</0> Pode ativá-la adicionando uma aplicação de autenticação à sua conta."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>A autenticação de dois fatores está ativada.</0> Ser-lhe-á pedido que introduza um código sempre que iniciar sessão."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Conta"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Adicionar um campo personalizado"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Adicionar um novo item"
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr "Centrar currículo"
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Alterar senha"
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr "Organização"
|
||||
msgid "Confident"
|
||||
msgstr "Confiante"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Confirme a nova senha"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr "Crie uma agora"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Criar currículo de exemplo"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "CSS personalizado"
|
||||
@ -423,14 +424,14 @@ msgstr "Crie currículos de uma ou várias páginas"
|
||||
msgid "Disable"
|
||||
msgstr "Desativar"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Desabilitar 2FA"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Descartar"
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr "Baixe um PDF do seu currículo. Este ficheiro pode ser usado para imprimir o seu currículo, enviá-lo para recrutadores ou carregá-lo em portais de empregos."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Baixar PDF"
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr "Efeitos"
|
||||
msgid "Email"
|
||||
msgstr "Email"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Habilitar 2FA"
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr "Explore os modelos disponíveis no Reactive Resume e veja os currículos criados com eles. Também podem servir como exemplos para ajudar na criação do seu próximo currículo."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Exportar"
|
||||
@ -564,19 +565,19 @@ msgstr "Finalmente,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Corrigir ortografia e gramática"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Tipo de Letra"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Tamanho da Letra"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Subconjunto do tipo de letra"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Variantes da fonte"
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr "Oculto"
|
||||
msgid "Hide"
|
||||
msgstr "Ocultar"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Ocultar ícones"
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr "Melhorar a escrita"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Caso não consiga ler este código QR, também pode copiar e colar este link no seu aplicativo de autenticação."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "Nesta secção, pode alterar a sua senha e ativar/desativar a autenticação de dois fatores."
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "Nesta secção pode excluir a sua conta e todos os dados associados ao seu utilizador, mas lembre-se de que <0>esta ação é irreversível</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr "Informação"
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Última atualização {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr "Layout"
|
||||
@ -853,7 +856,7 @@ msgstr "Modo claro"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Tema claro ou escuro"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Altura da Linha"
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr "Nome"
|
||||
msgid "Network"
|
||||
msgstr "Rede Social"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Nova Senha"
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Observação: isso tornará sua conta menos segura."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Notas"
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr "Integração OpenAI/Ollama"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Opções"
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr "Organização"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Página"
|
||||
@ -1043,7 +1048,7 @@ msgstr "Página {pageNumber}"
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Senha"
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr "Cor principal"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Política de Privacidade"
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr "Reportar problema"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr "Desloque-se para a panorâmica"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Desloque-se para o zoom"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Procure por uma família de fontes"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Procure por um subconjunto de fontes"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Procure por uma variante de fonte"
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr "Pesquise por uma língua"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Proteja-se com a autenticação de dois factores"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Segurança"
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Configurar a autenticação de dois fatores na sua conta"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Partilhar"
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Comece a criar seu currículo dando um nome a ele."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Estatísticas"
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr "Sistema"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Modelo"
|
||||
@ -1465,15 +1470,12 @@ msgstr "Testemunhos"
|
||||
msgid "Text Color"
|
||||
msgstr "Cor do texto"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "As senhas que inseriu não são iguais."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "O currículo que deseja atualizar está bloqueado, por favor, desbloqueie se deseja fazer alterações."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr "Monitorizar visualizações e downloads"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Autenticação de dois fatores"
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr "Tipo de graduação"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Fontes"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Sublinhar Links"
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr "Seu endereço de e-mail foi verificado com sucesso."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Sua chave de API OpenAI ainda não foi definida. Acesse as configurações da sua conta para ativar a integração com a OpenAI."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Sua senha foi atualizada com sucesso."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ro\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Romanian\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);\n"
|
||||
@ -46,11 +46,11 @@ msgstr "<0>Notă: </0>Utilizând API-ul OpenAI, confirmaţi şi acceptaţi terme
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr "<0>Comunitatea a petrecut mult timp scriind documentația pentru reactivarea reactivă; și sunt sigur că te va ajuta să începi cu aplicația. /0><1>Există, de asemenea, o mulțime de exemple pentru a vă ajuta să începeți, și caracteristici despre care s-ar putea să nu știți care te-ar putea ajuta să construiești reluarea perfectă. /1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>Autentificarea în doi factori este momentan dezactivată.</0> O poți activa prin adăugarea unei aplicații de autentificare în contul tău."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>Autentificarea în doi factori este activată.</0> Vi se va cere să introduceți un cod de fiecare dată când vă conectați."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Cont"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Adăugarea unui câmp particularizat"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Adaugă un element nou"
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr "Centrează Artboard"
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Schimbare parolă"
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr "Companie"
|
||||
msgid "Confident"
|
||||
msgstr "Confidențialitate"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Confirmare parolă nouă"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr "Creați unul acum"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Creați un exemplu de CV"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "CSS personalizat"
|
||||
@ -423,14 +424,14 @@ msgstr "Proiectați CV-uri cu o singură sau mai multe pagini"
|
||||
msgid "Disable"
|
||||
msgstr "Dezactivat"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Dezactivează 2FA"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Renunțați"
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr "Descărcați un PDF al CV-ului dvs. Acest fișier poate fi folosit pentru a vă imprima CV-ul, pentru a-l trimite recrutorilor sau pentru a încărca pe portalurile de locuri de muncă."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Descarcă PDF-ul"
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr "Efecte"
|
||||
msgid "Email"
|
||||
msgstr "E-mail"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Activează 2FA"
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr "Explorați șabloanele disponibile în CV-ul reactiv și vizualizați CV-urile create cu acestea. Ele ar putea servi, de asemenea, ca exemple pentru a ghida crearea următorului dvs. CV."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Exportă"
|
||||
@ -564,19 +565,19 @@ msgstr "În Sfârșit"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Remediați ortografie și gramatică"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Familia de Fonturi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Dimensiunea fontului"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Subset de fonturi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Variante de font"
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr "Ascuns"
|
||||
msgid "Hide"
|
||||
msgstr "Ascunde"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Ascunde pictogramele"
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr "Îmbunătățiți scrierea"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "În cazul în care nu puteți scana acest cod QR, puteți, de asemenea, să copiați și să inserați acest link în aplicația dumneavoastră de autentificare."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "În această secțiune, puteți schimba parola și activa/dezactiva autentificarea cu doi factori."
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "În această secțiune, vă puteți șterge contul si toate datele asociate utilizatorului dumneavoastră, dar aveți în vedere că <0>această acțiune este ireversibilă</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr "Informație"
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Ultima actualizare {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr "Aspect"
|
||||
@ -853,7 +856,7 @@ msgstr "Deschisă"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Temă deschisă sau întunecată"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Înălțimea liniei"
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr "Nume"
|
||||
msgid "Network"
|
||||
msgstr "Rețea"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Parola Nouă"
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Notă: acest lucru va face contul dumneavoastră mai puțin sigur."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Notițe"
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr "Integrarea OpenAI/Ollama"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Opțiuni"
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr "Organizație"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Pagină"
|
||||
@ -1043,7 +1048,7 @@ msgstr "Pagina {pageNumber}"
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Parolă"
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr "Culoare primară"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Politica de confidenţialitate"
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr "Ridicați o problemă"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr "Derulați la Pan"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Derulați pentru a mări"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Căutați o familie de fonturi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Căutați un subset de fonturi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Căutați o variantă de font"
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr "Căutați o limbă"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Securizează cu autentificarea doi factori"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Securitate"
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Configurați autentificarea cu doi factori pentru contul dvs"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Partajarea"
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Începeți să vă creați CV-ul dându-i un nume."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Statistici"
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr "Sistem"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Șablon"
|
||||
@ -1465,15 +1470,12 @@ msgstr "Mărturii"
|
||||
msgid "Text Color"
|
||||
msgstr "Culoare text"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "Parolele introduse nu coincid."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "CV-ul pe care doriți să îl actualizați este blocat, vă rugăm să îl deblocați dacă doriți să-i faceți modificări."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr "Urmăriți vizionările și descărcările"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Autentificare în doi pași"
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr "Tipul studiului"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Tipografie"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Subliniază link-urile"
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr "Adresa ta de e-mail a fost verificată cu succes."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Cheia Dumneavoastră API OpenAI nu a fost încă stabilită. Mergeţi la setările contului dumneavoastră pentru a activa integrarea OpenAI."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Parola dumneavoastră a fost actualizată cu succes."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ru\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-29 00:09\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Russian\n"
|
||||
"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n"
|
||||
@ -32,11 +32,11 @@ msgstr "{value, plural, one {Столбец} few {Столбцов} many {Сто
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
||||
msgid "<0>I built Reactive Resume mostly by myself during my spare time, with a lot of help from other great open-source contributors.</0><1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.</1>"
|
||||
msgstr "<0>Я создавал Reactive Resume в основном сам, в свободное время, при большой помощи других замечательных СПО-разработчиков.</0> <1>Если понравилось приложение и хотите, чтобы оно оставалось бесплатным, пожертвуйте какие-нибудь средства.</1>"
|
||||
msgstr "<0>Я создавал Reactive Resume в основном сам, в свободное время, при большой помощи других замечательных open-source разработчиков.</0> <1>Если понравилось приложение и хотите, чтобы оно оставалось бесплатным, пожертвуйте какие-нибудь средства.</1>"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||
msgstr "<0>Я уверен, что приложение не идеально, но мне бы хотелось, чтобы оно было.</0> <1>Если вы столкнулись с какими-либо проблемами при создании своего резюме или у вас есть идея, которая поможет вам и другим пользователям упростить создание резюме, оставьте проблему в репозитории или отправьте мне эл. письмо об этом.</1>"
|
||||
msgstr "<0>Я уверен, что приложение не идеально, но мне бы хотелось, чтобы стало таким.</0><1>Если вы столкнулись с какими-либо проблемами при создании своего резюме или у вас есть идея, которая поможет вам и другим пользователям упростить создание резюме, создайте тикет в репозитории или отправьте мне эл. письмо об этом.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||
@ -46,11 +46,11 @@ msgstr "<0>Примечание:</0> Используя API OpenAI, вы под
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr "<0>Сообщество потратило много времени на написание документации для Reactive Resume, и я уверен, что она поможет вам начать работу с приложением.</0> <1>Здесь также есть множество примеров, которые помогут вам начать работу, и функций, о которых вы, возможно, не знали, которые помогут вам составить идеальное резюме.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>Двухфакторная аутентификация в настоящее время отключена.</0> Вы можете включить его, добавив приложение для аутентификации в свою учетную запись."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>Двухфакторная аутентификация включена.</0> Вам будет предложено ввести код каждый раз при входе в систему."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Аккаунт"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Добавьте настраиваемое поле"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Добавить новый элемент"
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr "Центрировать артбоард"
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Изменить пароль"
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr "Компания"
|
||||
msgid "Confident"
|
||||
msgstr "Надёжный"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Подтвердить новый пароль"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr "Создать сейчас"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Создать Образец Резюме"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr "Текущий пароль"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "Пользовательский CSS"
|
||||
@ -423,14 +424,14 @@ msgstr "Дизайн одностраничных/многостраничных
|
||||
msgid "Disable"
|
||||
msgstr "Отключить"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Отключить 2FA"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Отмена"
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr "Скачать PDF-файл Вашего резюме. Этот файл можно использовать для печати резюме, отправки его рекрутерам или загрузки на сайты по поиску работы."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Скачать PDF"
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr "Эффекты"
|
||||
msgid "Email"
|
||||
msgstr "Эл. почта"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Включить 2FA"
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr "Изучите шаблоны, доступные в Reactive Resume, и просмотрите резюме, созданные с их помощью. Они также могут послужить примерами для создания вашего следующего резюме."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Экспорт"
|
||||
@ -564,19 +565,19 @@ msgstr "Наконец-то,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Исправить орфографию и грамматику"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Семейство шрифтов"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Размер шрифта"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Подгруппа шрифтов"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Вариант шрифта"
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr "Скрытый"
|
||||
msgid "Hide"
|
||||
msgstr "Скрыть"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Скрывать иконки"
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr "Улучшить написание"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Если вы не можете отсканировать QR-код, скопируйте эту ссылку в свое приложение-аутентификатор."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "В этом разделе вы можете изменить свой пароль и включить/выключить двухфакторную аутентификацию."
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "В этом разделе вы можете удалить свою учетную запись и все данные, связанные с аккаунтом, но имейте в виду, что <0>это действие необратимо</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr "Информация"
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Последнее обновление {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr "Макет"
|
||||
@ -853,7 +856,7 @@ msgstr "Светлая"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Светлая или темная тема"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Высота строки"
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr "Имя"
|
||||
msgid "Network"
|
||||
msgstr "Сеть"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Новый пароль"
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Примечание: Это сделает вашу учетную запись менее безопасной."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Заметки"
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr "Интеграция OpenAI/Ollama"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Настройки"
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr "Организация"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Страница"
|
||||
@ -1043,7 +1048,7 @@ msgstr "Страница {pageNumber}"
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Пароль"
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr "Основной цвет"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Политика конфиденциальности"
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr "Поднять проблему"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr "Прокрутите до панорамирования"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Прокрутка для увеличения"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Поиск семейства шрифтов"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Поиск подгруппы шрифта"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Поиск варианта шрифта"
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr "Поиск языка"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Защита с помощью двухфакторной аутентификации"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Безопасность"
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Настройте двухфакторную аутентификацию на своей учетной записи"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Поделиться"
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Начните составлять свое резюме, дав ему название."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Статистика"
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr "Системная"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Шаблон"
|
||||
@ -1465,15 +1470,12 @@ msgstr "Отзывы"
|
||||
msgid "Text Color"
|
||||
msgstr "Цвет текста"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "Введенные вами пароли не совпадают."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "Резюме, которое Вы хотите обновить, заблокировано, пожалуйста, разблокируйте его, если хотите внести в него какие-либо изменения."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr "Отслеживание просмотров и загрузок"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Двухфакторная аутентификация"
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr "Форма обучения"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Типография"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Подчеркивать ссылки"
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr "Ваш адрес эл. почты был успешно подтвер
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Ваш ключ API OpenAI еще не установлен. Пожалуйста, включите интеграцию OpenAI в настройках вашего аккаунта."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Ваш пароль был успешно обновлен."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: sk\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Slovak\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n"
|
||||
@ -46,11 +46,11 @@ msgstr "<0>Poznámka: </0>Používaním rozhrania API OpenAI beriete na vedomie
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr "<0>Komunita strávila veľa času písaním dokumentácie k aplikácii Reactive Resume a som si istý, že vám pomôže začať pracovať s aplikáciou.</0><1>Je tu aj veľa príkladov, ktoré vám pomôžu začať, a funkcií, o ktorých možno neviete a ktoré by vám mohli pomôcť vytvoriť dokonalý životopis.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>Dvojfaktorové overovanie je v súčasnosti vypnuté.</0> Môžete ho povoliť pridaním aplikácie autentifikátora do svojho konta."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>Dvojfaktorové overovanie je povolené.</0> Pri každom prihlásení budete požiadaní o zadanie kódu."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Účet"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Pridanie vlastného poľa"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Pridanie novej položky"
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr "Stredová umelecká doska"
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Zmena hesla"
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr "Spoločnosť"
|
||||
msgid "Confident"
|
||||
msgstr "Sebavedomé"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Potvrdenie nového hesla"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr "Vytvorte si ho teraz"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Vytvorenie vzorového životopisu"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "Vlastné CSS"
|
||||
@ -423,14 +424,14 @@ msgstr "Navrhovanie jednostranných/ viacstranových životopisov"
|
||||
msgid "Disable"
|
||||
msgstr "Zakázať"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Zakázanie funkcie 2FA"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Vyradiť"
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr "Stiahnite si svoj životopis vo formáte PDF. Tento súbor môžete použiť na vytlačenie svojho životopisu, poslať ho náborovým pracovníkom alebo nahrať na pracovné portály."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Stiahnuť PDF"
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr "Účinky"
|
||||
msgid "Email"
|
||||
msgstr "E-mail"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Povolenie 2FA"
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr "Preskúmajte šablóny dostupné v Reactive Resume a prezrite si životopisy, ktoré boli pomocou nich vytvorené. Môžu vám poslúžiť aj ako príklady, ktoré vám pomôžu pri tvorbe vášho ďalšieho životopisu."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Export"
|
||||
@ -564,19 +565,19 @@ msgstr "Nakoniec,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Oprava pravopisu a gramatiky"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Rodina písiem"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Veľkosť písma"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Podskupina písiem"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Varianty písma"
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr "Skryté"
|
||||
msgid "Hide"
|
||||
msgstr "Skryť"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Skryť ikony"
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr "Zlepšiť písanie"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Ak sa vám nepodarí naskenovať tento kód QR, môžete toto prepojenie skopírovať a vložiť do aplikácie autentifikátora."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "V tejto časti môžete zmeniť heslo a povoliť/povoliť dvojfaktorové overovanie."
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "V tejto časti môžete vymazať svoje konto a všetky údaje priradené k používateľovi, ale nezabudnite, že <0>táto akcia je nezvratná</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr "Informácie"
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Posledná aktualizácia {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr "Rozloženie"
|
||||
@ -853,7 +856,7 @@ msgstr "Svetlo"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Svetlá alebo tmavá téma"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Výška riadku"
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr "Názov"
|
||||
msgid "Network"
|
||||
msgstr "Sieť"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Nové heslo"
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Poznámka: Tým sa vaše konto stane menej bezpečným."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Poznámky"
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr "Integrácia OpenAI/Ollama"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Možnosti"
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr "Organizácia"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Strana"
|
||||
@ -1043,7 +1048,7 @@ msgstr "Strana {pageNumber}"
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Heslo"
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr "Primárna farba"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Zásady ochrany osobných údajov"
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr "Upozorniť na problém"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr "Posuňte sa na Pan"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Posúvanie na zväčšenie"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Vyhľadanie rodiny písiem"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Vyhľadanie podmnožiny písma"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Vyhľadanie variantu písma"
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr "Vyhľadávanie jazyka"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Zabezpečenie pomocou dvojfaktorového overovania"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Zabezpečenie"
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Nastavenie dvojfaktorového overovania na svojom konte"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Zdieľanie"
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Svoj životopis začnite tvoriť tak, že mu dáte meno."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Štatistika"
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr "Systém"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Šablóna"
|
||||
@ -1465,15 +1470,12 @@ msgstr "Skúsenosti"
|
||||
msgid "Text Color"
|
||||
msgstr "Farba textu"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "Zadané heslá sa nezhodujú."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "Životopis, ktorý chcete aktualizovať, je uzamknutý, ak v ňom chcete vykonať akékoľvek zmeny, odomknite ho."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr "Sledovanie zobrazení a stiahnutí"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Dvojfaktorové overovanie"
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr "Typ štúdie"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Typografia"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Podčiarknite odkazy"
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr "Vaša e-mailová adresa bola úspešne overená."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Váš kľúč API OpenAI ešte nebol nastavený. Prejdite do nastavení svojho účtu a povoľte integráciu OpenAI."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Vaše heslo bolo úspešne aktualizované."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: sq\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Albanian\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -46,11 +46,11 @@ msgstr ""
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr ""
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Llogaria"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Shto një fushë të personalizuar"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Shto një vlerë të re"
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr "Centro panelin"
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Ndrysho fjalëkalimin"
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr "Kompania"
|
||||
msgid "Confident"
|
||||
msgstr "Të sigurt"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Konfirmo fjalëkalimin e ri"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr "Regjistrohu"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Krijo një CV nga shembujt"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
@ -423,14 +424,14 @@ msgstr ""
|
||||
msgid "Disable"
|
||||
msgstr "Çaktivizo"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Çaktivizo vërtetimin me dy faktorë"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Braktis"
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr "Shkarkoni CV-në tuaj si PDF. Ky skedar mund të përdoret për të printuar CV-në tuaj, për ta dërguar te rekrutuesit ose për ta ngarkuar në portalet e punës."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Shkarko PDF"
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr "Efektet"
|
||||
msgid "Email"
|
||||
msgstr "Email"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Aktivizo vërtetimin me dy faktorë"
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr "Eksploroni shabllonet e disponueshme në Reactive Resume dhe shikoni CV-të e krijuara me to. Ato mund të ndihmojnë në krijimin e CV-së tuaj të ardhshme."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Exporto"
|
||||
@ -564,19 +565,19 @@ msgstr "Së fundi,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Rregulloni drejtshkrimin dhe gramatikën"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Madhësia e germave"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Varianti i germave"
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr "E fshehur"
|
||||
msgid "Hide"
|
||||
msgstr "Fshih"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Fshih ikonat"
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr "Përmirëso të shkruarit"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Në rast se nuk jeni në gjendje të skanoni këtë kod QR, mund ta kopjoni linkun nga aplikacioni authenticator dhe ta ngjisni atë këtu."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "Në këtë seksion, ju mund të ndryshoni fjalëkalimin tuaj dhe të aktivizoni/çaktivizoni vërtetimin me dy faktorë."
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "Në këtë seksion, ju mund të fshini llogarinë tuaj dhe të gjitha të dhënat e lidhura me përdoruesin tuaj, por keni kujdes se <0>ky veprim është i pakthyeshëm</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr "Informacion"
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Përditësuar së fundmi me {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr ""
|
||||
@ -853,7 +856,7 @@ msgstr "E çelët"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Pamje e çelët apo e errët"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Lartësia e rreshtit"
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr "Emri"
|
||||
msgid "Network"
|
||||
msgstr "Rrjeti"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Fjalëkalim i ri"
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Kujdes: Kjo mund ta zvoglojë sigurinë e llogarisë tuaj."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Shënime"
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Mundësitë"
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr "Organizata"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Faqja"
|
||||
@ -1043,7 +1048,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Fjalëkalimi"
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr "Ngjyra kryesore"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr ""
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr "Krijo një Issue në GitHub"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr ""
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Kërkoni një familje të shkronjave"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Kërkoni një nëngrup shkronjash"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Kërkoni një variant të shkronjave"
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr "Kërkoni një gjuhë"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Sigurohuni duke përdorur vërtetim me dy faktorë"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Siguria"
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Konfiguro vërtetimin me dy faktorë në llogarinë tuaj"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Shpërndarja"
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Filloni të ndërtoni CV-në tuaj duke i dhënë një emër."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Statistikat"
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr "Sistemi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Shabllon"
|
||||
@ -1465,15 +1470,12 @@ msgstr "Dëshmitë"
|
||||
msgid "Text Color"
|
||||
msgstr "Ngjyra e tekstit"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "Fjalëkalimet nuk përputhen."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "CV që dëshironi të përditësoni është e kyçur, ju lutemi çkyçeni nëse dëshironi para se ta ndryshoni."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr "Gjurmo shikimet dhe shkarkimet"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Vërtetimi me dy faktorë"
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr "Lloji i studimit"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Tipografia"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Nënvizoni linket"
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr "Adresa juaj e emailit është verifikuar me sukses."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Çelësi juaj OpenAI API nuk është konfiguruar ende. Ju lutem shkoni te parametrat e llogarisë tuaj për të aktivizuar integrimin me OpenAI."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Fjalëkalimi juaj u përditësua."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: sr\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Serbian (Cyrillic)\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
@ -46,11 +46,11 @@ msgstr ""
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr ""
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr ""
|
||||
msgid "Add a custom field"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr ""
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr ""
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr "Компанија"
|
||||
msgid "Confident"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr "Направи један сада"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Направи пример резимеа"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
@ -423,14 +424,14 @@ msgstr "Дизајнирајте једностране/вишестране р
|
||||
msgid "Disable"
|
||||
msgstr "Онемогући"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Онемогући двофакторску аутентификацију"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Одбаци"
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Преузми PDF"
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr "Ефекти"
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr ""
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
@ -564,19 +565,19 @@ msgstr ""
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr ""
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr "Сакривено"
|
||||
msgid "Hide"
|
||||
msgstr "Сакриј"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Сакриј иконе"
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr "Побољшајте писање"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Уколико нисте у могућности да скенирате овај QR код, такође можете ископирати-налепити овај линк у своју апликацију за аутентификацију."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "У овом одељку можете променити своју лозинку и омогућити/онемогућити двофакторску аутентикацију."
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr ""
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr ""
|
||||
@ -853,7 +856,7 @@ msgstr ""
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Светла или тамна тема"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr ""
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr ""
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Опције"
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
@ -1043,7 +1048,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr ""
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr ""
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr ""
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr ""
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr ""
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
@ -1465,15 +1470,12 @@ msgstr ""
|
||||
msgid "Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr ""
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr ""
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: sv\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Swedish\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -46,11 +46,11 @@ msgstr "<0>Obs! </0>Genom att använda OpenAI API:et, godkänner och accepterar
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr "<0>Gemenskapen har lagt ner mycket tid på att skriva dokumentationen för Reactive Resume, och jag är säker på att det kommer att hjälpa dig att komma igång med appen.</0> <1>Det finns också många exempel som hjälper dig att komma igång, och funktioner som du kanske inte känner till som kan hjälpa dig att bygga ditt perfekta CV.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>Tvåfaktorsautentisering är för närvarande inaktiverad.</0> Du kan aktivera det genom att lägga till en autentiseringsapp till ditt konto."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>Tvåfaktorsautentisering är aktiverad.</0> Du kommer att bli ombedd att ange en kod varje gång du loggar in."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Konto"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Lägga till ett anpassat fält"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Lägg till ett nytt objekt"
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr "Centrera ritbordet"
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Ändra lösenord"
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr "Företag"
|
||||
msgid "Confident"
|
||||
msgstr "Självsäker"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Bekräfta nytt lösenord"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr "Skapa ett nu"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Skapa ett exempel på CV"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "Anpassad CSS"
|
||||
@ -423,14 +424,14 @@ msgstr "Designa CV:n på en eller flera sidor"
|
||||
msgid "Disable"
|
||||
msgstr "Inaktivera"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Inaktivera 2FA"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Kasta"
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr "Ladda ner en PDF av ditt CV. Den här filen kan användas för att skriva ut ditt CV, skicka det till rekryterare eller ladda upp på jobbportaler."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Ladda ner PDF"
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr "Effekter"
|
||||
msgid "Email"
|
||||
msgstr "E-post"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Aktivera 2FA"
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr "Utforska mallarna som är tillgängliga i Reactive Resume och se de CV som skapats med dem. De kan också fungera som exempel för att hjälpa dig att skapa ditt nästa CV."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Exportera"
|
||||
@ -564,19 +565,19 @@ msgstr "Äntligen,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Fixa stavning och grammatik"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Typsnittsfamilj"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Textstorlek"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Typsnittsundergrupp"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Typsnittsvarianter"
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr "Dolt"
|
||||
msgid "Hide"
|
||||
msgstr "Dölj"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Dölj ikoner"
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr "Förbättra skrivandet"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Om du inte kan skanna den här QR-koden kan du också kopiera och klistra in den här länken i din autentiseringsapp."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "I det här avsnittet kan du ändra ditt lösenord och aktivera/inaktivera tvåfaktorsautentisering."
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "I det här avsnittet kan du radera ditt konto och all data som är kopplad till din användare, men tänk på att <0>denna åtgärd är oåterkallelig</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr "Information"
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Senast uppdaterad {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr "Layout"
|
||||
@ -853,7 +856,7 @@ msgstr "Ljus"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Ljust eller mörkt tema"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Radavstånd"
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr "Namn"
|
||||
msgid "Network"
|
||||
msgstr "Nätverk"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Nytt lösenord"
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Obs! Detta kommer att göra ditt konto mindre säkert."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Anteckningar"
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr "OpenAI/Ollama-integrering"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Inställningar"
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr "Organisation"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Sida"
|
||||
@ -1043,7 +1048,7 @@ msgstr "Sidan {pageNumber}"
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Lösenord"
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr "Primärfärg"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Integritetspolicy"
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr "Lyfta en fråga"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr "Bläddra till Pan"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Bläddra till Zoom"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Sök efter en typsnittsfamilj"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Sök efter en typsnittsundergrupp"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Sök efter en typsnittsvariant"
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr "Sök efter ett språk"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Säker med tvåfaktorsautentisering"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Säkerhet"
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Ställ in tvåfaktorsautentisering på ditt konto"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Delning"
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Börja bygga ditt CV genom att ge det ett namn."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Statistik"
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr "System"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Mall"
|
||||
@ -1465,15 +1470,12 @@ msgstr "Vittnesmål"
|
||||
msgid "Text Color"
|
||||
msgstr "Textfärg"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "Lösenorden du angav stämmer inte överens."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "CV:t du vill uppdatera är låst, lås upp om du vill göra några ändringar i det."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr "Spåra visningar och nedladdningar"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Tvåfaktorsautentisering"
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr "Typ av studie"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Typografi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Understryk länkar"
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr "Din e-postadress har verifierats."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Din OpenAI API-nyckel har inte ställts in ännu. Gå till dina kontoinställningar för att aktivera OpenAI-integration."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Ditt lösenord har uppdaterats."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ta\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Tamil\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -20,155 +20,156 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:171
|
||||
msgid "You have enabled two-factor authentication successfully."
|
||||
msgstr ""
|
||||
msgstr "இரண்டு காரணி அங்கீகாரத்தை வெற்றிகரமாக இயக்கியுள்ளீர்கள்."
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:57
|
||||
msgid "{templatesCount} resume templates to choose from"
|
||||
msgstr ""
|
||||
msgstr "{templatesCount}resume டெம்பிளேட்களை தேர்வு செய்ய "
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:142
|
||||
msgid "{value, plural, one {Column} other {Columns}}"
|
||||
msgstr ""
|
||||
msgstr "{value, plural,one {நெடுவரிசை }other {நெடுவரிசை }}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
||||
msgid "<0>I built Reactive Resume mostly by myself during my spare time, with a lot of help from other great open-source contributors.</0><1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.</1>"
|
||||
msgstr ""
|
||||
msgstr "மற்ற சிறந்த ஓப்பன் சோர்ஸ் பங்களிப்பாளர்களின் உதவியோடு எனது ஓய்வு நேரத்தில் பெரும்பாலும் நானே ரியாக்டிவ் ரெஸ்யூமை உருவாக்கினேன்.</0><1>நீங்கள் ஆப்ஸை விரும்பி, அதை எப்போதும் இலவசமாக வைத்திருப்பதை ஆதரிக்க விரும்பினால், நீங்கள் எதை வேண்டுமானாலும் நன்கொடையாக வழங்குங்கள். கொடுக்க முடியும்.</1>"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||
msgstr ""
|
||||
msgstr "ஆப்ஸ் சரியாக இல்லை என்று நான் நம்புகிறேன், ஆனால் அது இருக்க வேண்டும் என்று நான் விரும்புகிறேன்.</0><1>உங்கள் ரெஸ்யூமை உருவாக்கும் போது உங்களுக்கு ஏதேனும் சிக்கல்கள் ஏற்பட்டாலோ அல்லது உங்களுக்கும் பிற பயனர்களுக்கும் உருவாக்க உதவும் யோசனை இருந்தாலோ உங்கள் விண்ணப்பத்தை மிக எளிதாக, repository issue விடுங்கள் அல்லது அதைப் பற்றி எனக்கு மின்னஞ்சல் அனுப்பவும்"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||
msgstr ""
|
||||
msgstr "குறிப்பு: </0>OpenAI API ஐப் பயன்படுத்துவதன் மூலம், OpenAI ஆல் கோடிட்டுக் காட்டப்பட்டுள்ள <1>பயன்பாட்டு விதிமுறைகள்</1> மற்றும் <2>தனியுரிமைக் கொள்கை</2> ஆகியவற்றை நீங்கள் ஒப்புக்கொள்கிறீர்கள். சேவையின் முறையற்ற அல்லது அங்கீகரிக்கப்படாத பயன்பாட்டிற்கு ரியாக்டிவ் ரெஸ்யூம் எந்தப் பொறுப்பையும் ஏற்காது, அதனால் ஏற்படும் விளைவுகள் அல்லது பொறுப்புகள் பயனரை மட்டுமே சார்ந்தது என்பதை நினைவில் கொள்ளவும்."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr ""
|
||||
msgstr "<0>ரியாக்டிவ் ரெஸ்யூமிற்கான ஆவணங்களை எழுதுவதற்கு சமூகம் அதிக நேரம் செலவிட்டுள்ளது, மேலும் இது பயன்பாட்டைத் தொடங்க உங்களுக்கு உதவும் என்று நான் நம்புகிறேன்.</0><1>உங்களுக்கு உதவ நிறைய எடுத்துக்காட்டுகள் உள்ளன. தொடங்கவும், மற்றும் உங்களுக்குத் தெரியாத அம்சங்கள் உங்கள் சரியான விண்ணப்பத்தை உருவாக்க உதவும்.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr ""
|
||||
msgstr "<0>இரு காரணி அங்கீகாரம் தற்போது முடக்கப்பட்டுள்ளது.</0> உங்கள் கணக்கில் அங்கீகரிப்பு பயன்பாட்டைச் சேர்ப்பதன் மூலம் அதை இயக்கலாம்."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr ""
|
||||
msgstr "<0>இரண்டு காரணி அங்கீகாரம் இயக்கப்பட்டது.</0> நீங்கள் உள்நுழையும் ஒவ்வொரு முறையும் குறியீட்டை உள்ளிடுமாறு கேட்கப்படுவீர்கள்."
|
||||
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/home/sections/hero/index.tsx:40
|
||||
msgid "A free and open-source resume builder"
|
||||
msgstr ""
|
||||
msgstr "முற்றிலும் இலவசமான மற்றும் ஓபன் சௌர்ஸ் resume - பில்டர்"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:21
|
||||
#: apps/client/src/pages/home/sections/hero/index.tsx:45
|
||||
msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume."
|
||||
msgstr ""
|
||||
msgstr "உங்கள் விண்ணப்பத்தை resume -ஐ உருவாக்குதல், புதுப்பித்தல் மற்றும் பகிர்தல் ஆகியவற்றை எளிதாக்கும் ஒரு இலவச மற்றும் திறந்த மூல ரெசுமே -ஐ உருவாக்குபவர்."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:59
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29
|
||||
msgid "A link has been copied to your clipboard."
|
||||
msgstr ""
|
||||
msgstr "உங்கள் கிளிப்போர்டுக்கு ஒரு இணைப்பு நகலெடுக்கப்பட்டது."
|
||||
|
||||
#: apps/client/src/components/copyright.tsx:29
|
||||
msgid "A passion project by <0>Amruth Pillai</0>"
|
||||
msgstr ""
|
||||
msgstr "திட்டம் by <0> Amruth பிள்ளை</0>"
|
||||
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:57
|
||||
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
|
||||
msgstr ""
|
||||
msgstr "நீங்கள் வழங்கிய மின்னஞ்சலுடன் கணக்கு இருந்தால், கடவுச்சொல் மீட்டமைப்பு இணைப்பு உங்கள் இன்பாக்ஸிற்கு அனுப்பப்பட்டிருக்க வேண்டும்."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:43
|
||||
msgid "A resume with this slug already exists, please pick a different unique identifier."
|
||||
msgstr ""
|
||||
msgstr "இந்த slug ஒரு resume ஏற்கனவே உள்ளது, வேறு தனித்துவமான அடையாளங்காட்டியைத் (unique identifier-ஐ தேர்ந்தெடுக்கவும்."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:10
|
||||
msgid "A user with this email address and/or username already exists."
|
||||
msgstr ""
|
||||
msgstr "இன்னொரு பயனாளர் இதே மின்னஞ்சல் முகவரி / அல்லது பயனர்பெயர் உடன் உள்ளார்."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43
|
||||
msgid "A4"
|
||||
msgstr ""
|
||||
msgstr "ஏ4"
|
||||
|
||||
#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json.
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:270
|
||||
msgid "Accepts only {accept} files"
|
||||
msgstr ""
|
||||
msgstr "கோப்புகளை {accept}மட்டுமே ஏற்கும்."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:105
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
msgstr "கணக்கு "
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||
msgid "Add a custom field"
|
||||
msgstr ""
|
||||
msgstr "புதிய பிரத்யேக பகுதியைச் சேர்க்கவும்"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr ""
|
||||
msgstr "புதிய Item சேர்க்கவும்"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:91
|
||||
msgid "Add a new item"
|
||||
msgstr ""
|
||||
msgstr "புதிய Item சேர்க்கவும்"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
msgid "Add a new section"
|
||||
msgstr ""
|
||||
msgstr "புதியபகுதியை சேர்க்கவும்"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
||||
msgid "Add New Page"
|
||||
msgstr ""
|
||||
msgstr "புதிய பக்கத்தை உருவாக்கு "
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:79
|
||||
msgid "AI"
|
||||
msgstr ""
|
||||
msgstr "செயற்கை நுண்ணரறிவு "
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:71
|
||||
msgid "Already have an account?"
|
||||
msgstr ""
|
||||
msgstr "ஏற்க்கனவே அக்கவுண்ட் உள்ளதா ? "
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:144
|
||||
msgid "An error occurred while validating the file."
|
||||
msgstr ""
|
||||
msgstr "கோப்பிணை அங்கீகரிக்கும் \n"
|
||||
" போது ஒரு பிழை ஏற்பட்டது."
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||
msgid "and many more..."
|
||||
msgstr ""
|
||||
msgstr "மற்றும் பல "
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57
|
||||
msgid "Anyone with the link can view and download the resume."
|
||||
msgstr ""
|
||||
msgstr "இந்த லிங்க் இருக்கும் அனைவரும் உங்கள் resume -வை பார்க்க மற்றும் பதிவிறக்க முடியும்."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:60
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30
|
||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||
msgstr ""
|
||||
msgstr "இந்த லிங்க் இருக்கும் அனைவரும் உங்கள் resume -வை பார்க்க மற்றும் பதிவிறக்க முடியும். இந்த லிங்க-கை உங்களது ப்ரொபைல் அல்லது மேலாளர்களிடம் பகிர்ந்து கொள்ளுங்கள்."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:41
|
||||
msgid "Apply Custom CSS"
|
||||
msgstr ""
|
||||
msgstr "பிரத்தேக css -ஐ புகுட்டவும்."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr ""
|
||||
msgstr "நீங்கள் இதை நீக்க விரும்புக்குறீர்களா ? "
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:149
|
||||
msgid "Are you sure you want to delete your resume?"
|
||||
msgstr ""
|
||||
msgstr "நீங்க இந்த resume -ஐ நீக்க விரும்புக்குறீர்களா ?"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:125
|
||||
msgid "Are you sure you want to disable two-factor authentication?"
|
||||
msgstr ""
|
||||
msgstr "உங்களது இரு-காரணி அங்கீகாரத்தை முடக்க நினைக்குறீர்களா ? "
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38
|
||||
msgid "Are you sure you want to lock this resume?"
|
||||
msgstr ""
|
||||
msgstr "இந்த resume-வை லாக் செய்ய நினைக்கிறீர்களா ? "
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39
|
||||
msgid "Are you sure you want to unlock this resume?"
|
||||
msgstr ""
|
||||
msgstr "நீங்க இந்த resume-வை திறக்க முயல்குறீர்களா ? "
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94
|
||||
msgid "Are you sure?"
|
||||
@ -181,63 +182,64 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:79
|
||||
msgid "Aspect Ratio"
|
||||
msgstr ""
|
||||
msgstr "தோற்ற விகிதம் "
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:51
|
||||
msgid "Available in {languagesCount} languages"
|
||||
msgstr ""
|
||||
msgstr "இந்த மொழிகளில் கிடைக்கும் {languagesCount}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53
|
||||
msgid "Awarder"
|
||||
msgstr ""
|
||||
msgstr "பட்டம் அல்லது விருது அறிவிப்பவர் "
|
||||
|
||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
msgstr "பின்னே "
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73
|
||||
msgid "Background Color"
|
||||
msgstr ""
|
||||
msgstr "பின்னணி நிறம் "
|
||||
|
||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:75
|
||||
msgid "Backup Code"
|
||||
msgstr ""
|
||||
msgstr "காப்பு குறியீடு"
|
||||
|
||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:81
|
||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||
msgstr ""
|
||||
msgstr "காப்புப் பிரதிக் குறியீடுகளில் சிறிய எழுத்துக்கள் அல்லது எண்கள் மட்டுமே இருக்கலாம், மேலும் அவை சரியாக 10 எழுத்துகளாக இருக்க வேண்டும்."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||
msgid "Base URL"
|
||||
msgstr ""
|
||||
msgstr "அடிப்படை URL "
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr ""
|
||||
msgstr "அடிப்படைகள் "
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
msgid "Basics"
|
||||
msgstr ""
|
||||
msgstr "அடிப்படைகள் "
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:191
|
||||
msgid "Border"
|
||||
msgstr ""
|
||||
msgstr "எல்லை "
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:124
|
||||
msgid "Border Radius"
|
||||
msgstr ""
|
||||
msgstr "எல்லையின் ஆரம் "
|
||||
|
||||
#: apps/client/src/pages/public/page.tsx:93
|
||||
msgid "Built with"
|
||||
msgstr ""
|
||||
msgstr "கொண்டு கட்டப்பட்டது"
|
||||
|
||||
#: apps/client/src/components/copyright.tsx:27
|
||||
#: apps/client/src/pages/home/sections/contributors/index.tsx:20
|
||||
msgid "By the community, for the community."
|
||||
msgstr ""
|
||||
msgstr "சமூகத்தால், சமூகத்திற்காக.\n"
|
||||
"தமிழில் மொழி பெயர்ததது : திவாகர் ராமசாமி MCA மாணவன், குமரகுரு தொழில்நுட்ப கல்லூரி, கோயம்புத்தூர் -39."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||
@ -256,7 +258,7 @@ msgid "Center Artboard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr ""
|
||||
|
||||
@ -301,10 +303,6 @@ msgstr ""
|
||||
msgid "Confident"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +349,12 @@ msgstr ""
|
||||
msgid "Create Sample Resume"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
@ -423,14 +426,14 @@ msgstr ""
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
@ -463,7 +466,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr ""
|
||||
|
||||
@ -503,7 +505,7 @@ msgstr ""
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr ""
|
||||
|
||||
@ -544,6 +546,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
@ -564,19 +567,19 @@ msgstr ""
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr ""
|
||||
|
||||
@ -677,7 +680,7 @@ msgstr ""
|
||||
msgid "Hide"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr ""
|
||||
|
||||
@ -734,7 +737,7 @@ msgstr ""
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr ""
|
||||
|
||||
@ -743,6 +746,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr ""
|
||||
@ -824,6 +828,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr ""
|
||||
@ -853,7 +858,7 @@ msgstr ""
|
||||
msgid "Light or dark theme"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr ""
|
||||
|
||||
@ -957,7 +962,7 @@ msgstr ""
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
@ -974,6 +979,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
@ -1018,7 +1024,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
@ -1032,6 +1038,7 @@ msgid "Organization"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
@ -1043,7 +1050,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
@ -1110,8 +1117,6 @@ msgid "Primary Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr ""
|
||||
|
||||
@ -1144,11 +1149,10 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1266,15 @@ msgstr ""
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
@ -1282,7 +1286,7 @@ msgstr ""
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
@ -1314,6 +1318,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr ""
|
||||
@ -1408,6 +1413,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr ""
|
||||
@ -1449,6 +1455,7 @@ msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
@ -1465,15 +1472,12 @@ msgstr ""
|
||||
msgid "Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1534,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
@ -1552,11 +1556,12 @@ msgid "Type of Study"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr ""
|
||||
|
||||
@ -1733,7 +1738,7 @@ msgstr ""
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: te\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Telugu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -46,11 +46,11 @@ msgstr ""
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr ""
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr ""
|
||||
msgid "Add a custom field"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr ""
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr ""
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr ""
|
||||
msgid "Confident"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr ""
|
||||
msgid "Create Sample Resume"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
@ -423,14 +424,14 @@ msgstr ""
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr ""
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr ""
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr ""
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
@ -564,19 +565,19 @@ msgstr ""
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr ""
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr ""
|
||||
msgid "Hide"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr ""
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr ""
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr ""
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr ""
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr ""
|
||||
@ -853,7 +856,7 @@ msgstr ""
|
||||
msgid "Light or dark theme"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr ""
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr ""
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
@ -1043,7 +1048,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr ""
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr ""
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr ""
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr ""
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr ""
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
@ -1465,15 +1470,12 @@ msgstr ""
|
||||
msgid "Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr ""
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr ""
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: th\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Thai\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
@ -46,11 +46,11 @@ msgstr "<0>หมายเหตุ: </0>การใช้ OpenAI API หมา
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr "<0>ชุมชนของเราใช้เวลามากในการเขียนคู่มือใช้งาน Reactive Resume ขึ้นมา และผมมั่นใจว่าคู่มือจะช่วยให้คุณเริ่มใช้งานแอปได้สะดวกขึ้น</0><1>นอกจากนี้ ยังมีตัวอย่างอีกเยอะมากเพื่อให้คุณเริ่มใช้งานเป็น และฟีเจอร์ที่คุณอาจไม่รู้มาก่อน ซึ่งจะช่วยทำให้คุณสร้างเรซูเม่ที่สมบูรณ์แบบออกมาได้</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>การยืนยันตัวตนแบบสองขั้นตอนยังไม่ได้เปิดใช้งาน</0> คุณสามารถเปิดใช้งานได้โดยการเพิ่มแอปยืนยันตัวตนลงในบัญชีของคุณ"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>การยืนยันตัวตนแบบสองขั้นตอนเปิดใช้งานแล้ว</0> คุณจะถูกขอให้กรอกรหัสทุกครั้งที่คุณเข้าสู่ระบบ"
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "บัญชี"
|
||||
msgid "Add a custom field"
|
||||
msgstr "เพิ่มช่องข้อมูลที่กำหนดเอง"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "เพิ่มรายการใหม่"
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr "จัดหน้าไว้ตรงกลาง"
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "เปลี่ยนรหัสผ่าน"
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr "บริษัท"
|
||||
msgid "Confident"
|
||||
msgstr "มั่นใจ"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "ยืนยันรหัสผ่านใหม่"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr "สร้างตอนนี้เลย"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "สร้างเรซูเม่ตัวอย่าง"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
@ -423,14 +424,14 @@ msgstr "ออกแบบเรซูเม่หน้าเดียว/ห
|
||||
msgid "Disable"
|
||||
msgstr "ปิดใช้งาน"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "ปิดใช้งาน 2FA"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "ยกเลิก"
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr "ดาวน์โหลด PDF เรซูเม่ของคุณ ไฟล์นี้สามารถใช้เพื่อพิมพ์เรซูเม่ของคุณ ส่งให้ผู้สรรหาบุคลากร หรืออัพโหลดบนพอร์ทัลรับสมัครงาน"
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "ดาวน์โหลด PDF"
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr "เอฟเฟกต์"
|
||||
msgid "Email"
|
||||
msgstr "อีเมล"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "เปิดใช้งาน 2FA"
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr "สำรวจเทมเพลตที่มีให้ใช้ใน Reactive Resume และดูเรซูเม่ที่สร้างขึ้นจากเทมเพลตนั้น พวกมันยังสามารถเป็นตัวอย่างเพื่อช่วยในการสร้างเรซูเม่ของคุณต่อไป"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "ส่งออก"
|
||||
@ -564,19 +565,19 @@ msgstr "ในที่สุด"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "แก้ไขการสะกดและไวยากรณ์"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "ตระกูลฟอนต์"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "ขนาดฟอนต์"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "ฟอนต์ย่อย"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "รูปแบบฟอนต์"
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr "ซ่อนไว้"
|
||||
msgid "Hide"
|
||||
msgstr "ซ่อน"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "ซ่อนไอคอน"
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr "ปรับปรุงการเขียน"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "ในกรณีที่คุณไม่สามารถสแกนโค้ด QR นี้ได้ คุณสามารถคัดลอกและวางลิงก์นี้ลงในแอปยืนยันตัวตนของคุณได้"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "ในส่วนนี้ คุณสามารถเปลี่ยนรหัสผ่านของคุณและเปิด/ปิดการใช้งานการยืนยันตัวตนแบบสองขั้นตอนได้"
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "ในส่วนนี้ คุณสามารถลบบัญชีของคุณและข้อมูลทั้งหมดที่เกี่ยวข้องกับผู้ใช้ของคุณได้ แต่โปรดจำไว้ว่า <0>การทำเช่นนี้ไม่สามารถย้อนคืนข้อมูลได้</0>"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr "ข้อมูล"
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "อัปเดตล่าสุด {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr "เค้าโครง"
|
||||
@ -853,7 +856,7 @@ msgstr "สว่าง"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "ธีมสว่างหรือมืด"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "ความสูงของเส้น"
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr "ชื่อ"
|
||||
msgid "Network"
|
||||
msgstr "ชื่อเว็บไซต์"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "รหัสผ่านใหม่"
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "หมายเหตุ: บัญชีของคุณจะปลอดภัยน้อยลงหากทำเช่นนี้"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "โน้ต"
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "การตั้งค่า"
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr "องค์กร"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "หน้า"
|
||||
@ -1043,7 +1048,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "รหัสผ่าน"
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr "สีหลัก"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr "นโยบายความเป็นส่วนตัว"
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr "แจ้งปัญหา"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr ""
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "ค้นหาฟอนต์"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "ค้นหาฟอนต์ย่อย"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "ค้นหารูปแบบฟอนต์"
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr "ค้นหาภาษา"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "รักษาความปลอดภัยด้วยการยืนยันตัวตนสองขั้นตอน"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "ความปลอดภัย"
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "ตั้งค่าการยืนยันตัวตนแบบสองขั้นตอนบนบัญชีของคุณ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "การแชร์"
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "เริ่มสร้างเรซูเม่ของคุณด้วยการตั้งชื่อ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "สถิติ"
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr "ระบบ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "เทมเพลต"
|
||||
@ -1465,15 +1470,12 @@ msgstr "คำรับรอง"
|
||||
msgid "Text Color"
|
||||
msgstr "สีตัวอักษร"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "คุณกรอกรหัสผ่านไม่ตรงกัน"
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "เรซูเม่ที่คุณต้องการอัปเดตถูกล็อกแล้ว โปรดปลดล็อกหากคุณต้องการทำการเปลี่ยนแปลงใดๆ กับเรซูเม่นั้น"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr "ติดตามยอดดูและยอดดาวน์โห
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "การยืนยันตัวตนแบบสองขั้นตอน"
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr "ระดับการศึกษา"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "แบบอักษร"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "ขีดเส้นใต้ลิงก์"
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr "ที่อยู่อีเมลของคุณได้รับ
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "คีย์ API ของ OpenAI ของคุณยังไม่ได้ตั้งค่า โปรดไปที่การตั้งค่าบัญชีของคุณเพื่อเปิดใช้งานการใช้ระบบ OpenAI"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "รหัสผ่านของคุณได้รับการอัปเดตเรียบร้อยแล้ว"
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: tr\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Turkish\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -46,11 +46,11 @@ msgstr "<0>Not:</0> OpenAI API'sını kullanarak, OpenAI tarafından belirlenen
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr "<0>Topluluk, Reactive Resume için belgeleri yazmaya çok zaman harcadı ve eminim ki bu belgeler, uygulamayla başlamanıza yardımcı olacaktır.</0><1>Ayrıca, başlamanıza yardımcı olacak birçok örnek ve belki de bilmediğiniz özellikler, mükemmel özgeçmişinizi oluşturmanıza yardımcı olabilir.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>İki faktörlü kimlik doğrulama şu anda devre dışı.</0> Hesabınıza kimlik doğrulama uygulaması ekleyerek aktif edebilirsiniz."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>İki faktörlü kimlik doğrulama şu anda aktif.</0> Giriş yaptığınız her zaman sizden bir kod girmeniz istenecektir."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Hesap"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Özel alan ekle"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Yeni bir Öğe Ekle"
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr "Çalışma Panosu'nu Ortala"
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Şifre Değiştir"
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr "Şirket"
|
||||
msgid "Confident"
|
||||
msgstr "Kendinden Emin"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Yeni parolayı doğrulayın"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr "Hemen bir tane oluştur"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Örnek özgeçmiş oluştur"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "Özel CSS"
|
||||
@ -423,14 +424,14 @@ msgstr "Tek/çok sayfalı özgeçmiş tasarlayın"
|
||||
msgid "Disable"
|
||||
msgstr "Devre dışı bırak"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "2FA'yı devre dışı bırak"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Vazgeç"
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr "Özgeçmişinizin PDF dosyasını indirin. Bu dosya özgeçmişinizi yazdırmak, işe alım uzmanlarına göndermek veya iş portallarına yüklemek için kullanılabilir."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "PDF indir"
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr "Efektler"
|
||||
msgid "Email"
|
||||
msgstr "E-Posta"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "2FA'yı etkinleştir"
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr "Reactive Resume'da bulunan şablonları keşfedin ve bunlarla hazırlanmış özgeçmişleri görüntüleyin. Bu şablonlar, bir sonraki özgeçmişinizin oluşturulmasına yardımcı olacak örnekler olarak da kullanılabilir."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Dışa aktar"
|
||||
@ -564,19 +565,19 @@ msgstr "Nihayet,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Yazım ve Dil Bilgisini Düzeltin"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Yazı Tipi Ailesi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Yazı Tipi Büyüklüğü"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Yazı Tipi Alt Kümesi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Yazı Tipi Çeşitleri"
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr "Gizli"
|
||||
msgid "Hide"
|
||||
msgstr "Gizle"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Simgeleri Gizle"
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr "Yazmayı Geliştirin"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Bu QR Kodunu tarayamamanız durumunda, bu bağlantıyı kopyalayıp kimlik doğrulayıcı uygulamanıza da yapıştırabilirsiniz."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "Bu bölümde şifrenizi değiştirebilir ve iki faktörlü kimlik doğrulamayı etkinleştirebilir/devre dışı bırakabilirsiniz."
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "Bu bölümde, hesabınızı ve kullanıcınızla ilişkili tüm verileri silebilirsiniz, ancak <0>bu işlemin geri alınamaz olduğunu</0> lütfen unutmayın."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr "Bilgi"
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Son güncelleme {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr "Düzen"
|
||||
@ -853,7 +856,7 @@ msgstr "Açık"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Açık veya koyu tema"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Satır Yüksekliği"
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr "İsim"
|
||||
msgid "Network"
|
||||
msgstr "Sosyal Ağ"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Yeni Şifre"
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Not: Bu, hesabınızın güvenliğini azaltacaktır."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Notlar"
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr "OpenAI/Ollama Entegrasyonu"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Seçenekler"
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr "Organizasyon"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Sayfa"
|
||||
@ -1043,7 +1048,7 @@ msgstr "Sayfa {pageNumber}"
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Şifre"
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr "Birincil Renk"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Gizlilik Politikası"
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr "Bir sorunu dile getirin"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr "Kaydırmak için kaydırın"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Yakınlaştırmak için Kaydır"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Bir yazı tipi ailesi arayın"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Yazı tipi alt kümesini arayın"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Yazı tipi varyantı arama"
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr "Dili arayın"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "İki faktörlü kimlik doğrulama ile güvende"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Güvenlik"
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Hesabınızda iki faktörlü kimlik doğrulamayı ayarlayın"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Paylaşım"
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Bir ad vererek özgeçmişinizi oluşturmaya başlayın."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "İstatistikler"
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr "Sistem"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Şablon"
|
||||
@ -1465,15 +1470,12 @@ msgstr "Görüşler"
|
||||
msgid "Text Color"
|
||||
msgstr "Metin Rengi"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "Girdiğiniz şifreler eşleşmiyor."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "Güncellemek istediğiniz özgeçmiş kilitli, herhangi bir değişiklik yapmak istiyorsanız lütfen kilidini açın."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr "Görüntülemeleri ve indirmeleri takip edin"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "İki Faktörlü Kimlik Doğrulama"
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr "Çalışma Türü"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Tipografi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Altı Çizili Bağlantılar"
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr "E-posta adresiniz başarıyla doğrulandı."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "OpenAI API Anahtarınız henüz ayarlanmadı. OpenAI Entegrasyonunu etkinleştirmek için lütfen hesap ayarlarınıza gidin."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Parolanız başarıyla güncellendi."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: uk\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Ukrainian\n"
|
||||
"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n"
|
||||
@ -46,11 +46,11 @@ msgstr "<0>Примітка: </0>Використовуючи OpenAI API, ви
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr "<0>Спільнота витратила багато часу на написання документації для Reactive Resume, і я впевнений, що вона допоможе вам почати роботу з додатком.</0><1>У ній також є багато прикладів, які допоможуть вам розпочати роботу, а також функції, про які ви, можливо, не знали, але які допоможуть вам створити ідеальне резюме.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>Двофакторна аутентифікація наразі вимкнена.</0> Ви можете увімкнути її, додавши програму авторизації до вашого облікового запису."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>Двофакторна аутентифікація ввімкнена.</0> Вам буде запропоновано ввести код при кожному вході в систему."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Обліковий запис"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Додати кастомне поле"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Додайте новий елемент"
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr "Центр обкладинки"
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Змінити пароль"
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr "Компанія"
|
||||
msgid "Confident"
|
||||
msgstr "Сповідь"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Підтвердити новий пароль"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr "Створити зараз"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Створити зразок резюме"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "Кастомний CSS"
|
||||
@ -423,14 +424,14 @@ msgstr "Дизайн одноразово/мульти-сторінки поно
|
||||
msgid "Disable"
|
||||
msgstr "Вимкнути"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Вимкнути 2FA"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Відкинути"
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr "Завантажте PDF вашого резюме. Цей файл може використовуватись для друку резюме, відправте його рекрутерам або завантажте на робочі портали."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Завантажити в PDF"
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr "Ефекти"
|
||||
msgid "Email"
|
||||
msgstr "Пошта"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Увімкнути 2FA"
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr "Досліджуйте доступні шаблони в Reactive Resume та перегляньте оновлення, зроблені з ними. Вони також можуть стати прикладами керівництва вашого наступного резюме."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Експорт"
|
||||
@ -564,19 +565,19 @@ msgstr "Нарешті,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Fix Spelling & Grammar"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Шрифт"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Розмір шрифту"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Підмножина шрифту"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Font Variants"
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr "Hidden"
|
||||
msgid "Hide"
|
||||
msgstr "Приховати"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Приховати іконки"
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr "Поліпшити написання"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Якщо ви не можете відсканувати цей QR-код, ви також можете скопіювати це посилання у свій додаток для авторизації."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "У цьому розділі ви можете змінити свій пароль і увімкнути або вимкнути двофакторну автентифікацію."
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "У цьому розділі ви можете видалити свій обліковий запис і всі дані, пов’язані з вашим користувачем, але майте на увазі, що <0>ця дія незворотна</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr "Інформація про нас"
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Востаннє оновлено {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr "Макет"
|
||||
@ -853,7 +856,7 @@ msgstr "Світла"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Світла або темна тема"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Висота лінії"
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr "Ім'я"
|
||||
msgid "Network"
|
||||
msgstr "Мережа"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Новий пароль"
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Примітка: Це зробить ваш обліковий запис менш безпечним."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Нотатки"
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr "Інтеграція OpenAI/Ollama"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Опції"
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr "Організація"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Сторінка"
|
||||
@ -1043,7 +1048,7 @@ msgstr "Сторінка {pageNumber}"
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Пароль"
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr "Основний колір"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Політика конфіденційності"
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr "Підняти проблему"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr "Прокрутіть до Панорамування"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Прокрутіть, щоб збільшити"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Пошук сімейства шрифтів"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Пошук підмножини шрифтів"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Пошук варіанту шрифту"
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr "Шукати мову"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Безпека за допомогою двофакторної аутентифікації"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Безпека"
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Налаштування двофакторної автентифікації в своєму обліковому записі"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Спільне використання"
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Почніть будувати резюме, поставивши його назву."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Статистика"
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr "Система"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Шаблон"
|
||||
@ -1465,15 +1470,12 @@ msgstr "Відгуки"
|
||||
msgid "Text Color"
|
||||
msgstr "Колір тексту"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "Введені паролі не співпадають."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "Продовжуючи, ви хочете оновити було заблоковано, будь ласка розблокуйте якщо хочете внести будь-які зміни до нього."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr "Перегляд треків та завантажень"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Двофакторна автентифікація"
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr "Вид навчання"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Типографія"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Підкреслювати посилання"
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr "Вашу адресу електронної пошти було усп
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Ваш ключ OpenAI API ще не встановлено. Будь ласка, перейдіть до параметрів облікового запису, щоб увімкнути інтеграцію OpenAI."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Ваш пароль успішно оновлено."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: uz\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Uzbek\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
@ -46,11 +46,11 @@ msgstr ""
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr ""
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Hisob"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Maxsus maydon qo'shish"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Yangi narsa qo'shish"
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr ""
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr "Tashkilot"
|
||||
msgid "Confident"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Yangi parolni tasdiqlang"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr ""
|
||||
msgid "Create Sample Resume"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
@ -423,14 +424,14 @@ msgstr "Yagona/Ko‘p sahifali tarjimai hollarni andozaga solish"
|
||||
msgid "Disable"
|
||||
msgstr "Oʻchirish"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "2BShT (2FA)ni o`chirish"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Bekor qilish"
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "PDF yuklab olish"
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr ""
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr ""
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Eksport"
|
||||
@ -564,19 +565,19 @@ msgstr ""
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr ""
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr "Yashirilgan"
|
||||
msgid "Hide"
|
||||
msgstr "Yashirish"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr ""
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr ""
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr ""
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr "Ma'lumot"
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr ""
|
||||
@ -853,7 +856,7 @@ msgstr ""
|
||||
msgid "Light or dark theme"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr ""
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr ""
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Yangi parol"
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Eslatma: Bu sizning hisobingiz xavfsizligini kamaytiradi."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Eslatmalar"
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Variantlar"
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr "Tashkilot"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Sahifa"
|
||||
@ -1043,7 +1048,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Parol"
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr ""
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr ""
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr ""
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr ""
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr ""
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
@ -1465,15 +1470,12 @@ msgstr ""
|
||||
msgid "Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr ""
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr ""
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: vi\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Vietnamese\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
@ -46,11 +46,11 @@ msgstr "<0>Lưu ý:</0> Bằng cách sử dụng API OpenAI, bạn thừa nhận
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr "<0>Cộng đồng đã dành rất nhiều thời gian để viết tài liệu về Reactive Resume, tôi chắc chắn tài liệu này sẽ giúp bạn mới bắt đầu sử dụng ứng dụng.</0> <1>Ngoài ra cũng còn có rất nhiều ví dụ khác giúp bạn sử dụng các tính năng mà bạn có thể chưa biết để có thể giúp bạn xây dựng sơ yếu lý lịch hoàn hảo của mình.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>Xác thực hai yếu tố hiện bị tắt.</0> Bạn có thể kích hoạt nó bằng cách thêm ứng dụng xác thực vào tài khoản của mình."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>Chứng thực hai yếu tố được kích hoạt.</0> Bạn sẽ được yêu cầu nhập mã mỗi khi đăng nhập."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Tài khoản"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Thêm một trường tùy chỉnh"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Thêm mục mới"
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr "Trung Tâm Bảng Vẽ"
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Thay đổi mật khẩu"
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr "Công ty"
|
||||
msgid "Confident"
|
||||
msgstr "Tự tin"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Xác nhận mật khẩu mới"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr "Tạo ngay"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Tạo sơ yếu lý lịch mẫu"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
@ -423,14 +424,14 @@ msgstr "Thiết kế sơ yếu lý lịch một/nhiều trang"
|
||||
msgid "Disable"
|
||||
msgstr "Tắt"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Tắt xác thực 2FA"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Hủy"
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr "Tải xuống bản PDF sơ yếu lý lịch của bạn. Tệp này có thể được sử dụng để in sơ yếu lý lịch của bạn, gửi cho nhà tuyển dụng hoặc tải lên các cổng thông tin việc làm."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Tải xuống PDF"
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr "Hiệu ứng"
|
||||
msgid "Email"
|
||||
msgstr "Email"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Bật xác thực 2FA"
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr "Khám phá các mẫu có sẵn trong Reactive Resume và xem các sơ yếu lý lịch được tạo bằng chúng. Các mẫu này là ý tưởng tuyệt vời giúp tạo sơ yếu lý lịch của bạn."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Xuất"
|
||||
@ -564,19 +565,19 @@ msgstr "Cuối cùng,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Sửa chữa Chính tả và ngữ pháp"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Kiểu Font"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Kích thước Font"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Phụ bộ Font"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Biến thể Font"
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr "Ẩn"
|
||||
msgid "Hide"
|
||||
msgstr "Ẩn đi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Ẩn biểu tượng"
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr "Cải thiện khả năng viết"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Trong trường hợp bạn không thể quét Mã QR này, bạn cũng có thể sao chép-dán liên kết này vào ứng dụng xác thực của mình."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "Trong phần này, bạn có thể thay đổi mật khẩu và bật/tắt xác thực hai yếu tố."
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "Trong phần này, bạn có thể xóa tài khoản của mình và tất cả dữ liệu được liên kết với người dùng của bạn, nhưng xin lưu ý rằng <0>hành động này không thể đảo ngược</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr "Thông tin"
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Cập nhật lần cuối {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr "Bố cục"
|
||||
@ -853,7 +856,7 @@ msgstr "Sáng"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Chủ đề sáng hoặc tối"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Chiều cao giữa các dòng"
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr "Tên"
|
||||
msgid "Network"
|
||||
msgstr "Mạng"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Mật khẩu mới"
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Lưu ý: Điều này sẽ làm cho tài khoản của bạn ít an toàn hơn."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Ghi chú"
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Tùy chọn"
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr "Tổ chức"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Trang"
|
||||
@ -1043,7 +1048,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Mật khẩu"
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr "Màu chủ đạo"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Chính sách Bảo mật"
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr "Đưa ra một vấn đề"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr ""
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Tìm kiếm font chữ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Tìm kiếm phụ bộ font"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Tìm kiếm biến thể font"
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr "Tìm kiếm ngôn ngữ"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Bảo mật với xác thực hai yếu tố"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Bảo mật"
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Thiết lập xác thực hai yếu tố trên tài khoản của bạn"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Chia sẻ"
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Bắt đầu xây dựng hồ sơ của bạn bằng cách đặt tên cho nó."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Thống kê"
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr "Hệ thống"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Mẫu"
|
||||
@ -1465,15 +1470,12 @@ msgstr "Lời nhận xét"
|
||||
msgid "Text Color"
|
||||
msgstr "Màu chữ"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "Mật khẩu bạn đã nhập không khớp."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "Sơ yếu lý lịch bạn muốn cập nhật đã bị khóa, vui lòng mở khóa nếu bạn muốn thực hiện bất kỳ thay đổi nào đối với nó."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr "Theo dõi lượt xem và lượt tải xuống"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Xác thực hai yếu tố"
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr "Bằng cấp"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Kiểu chữ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Gạch chân Liên kết"
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr "Địa chỉ email của bạn đã được xác minh thành công."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Key API OpenAI của bạn chưa được đặt. Vui lòng đi tới cài đặt tài khoản của bạn để bật Tích hợp OpenAI."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Mật khẩu của bạn đã được cập nhật thành công."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: zh\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Chinese Simplified\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
@ -46,11 +46,11 @@ msgstr "<0>注意:</0>使用 OpenAI API 即表示您承认并接受 OpenAI 的
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr "<0>社区花费了大量时间编写 Reactive Resume 的文档,我相信这将有助于您上手该应用程序。</0><1>还有很多示例可以帮助您入门,也有很多您可能不知道但有助于构建完美简历的功能。</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>现已禁用双重身份验证。</0>您可以将身份验证程序添加到您的账户来启用。"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>已启用双重身份验证。</0>您在每次登录时都需要输入验证码。"
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "账户"
|
||||
msgid "Add a custom field"
|
||||
msgstr "添加自定义字段"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "增加一项"
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr "中心画板"
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "更改密码"
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr "公司"
|
||||
msgid "Confident"
|
||||
msgstr "自信的"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "确认新密码"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr "立刻创建"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "创建简历样例"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "自定义 CSS"
|
||||
@ -423,14 +424,14 @@ msgstr "设计单页/多页简历"
|
||||
msgid "Disable"
|
||||
msgstr "禁用"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "禁用双重身份验证"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "丢弃"
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr "下载您的 PDF 版本简历。该文件可用于您打印简历、发送给招聘人员或上传到招聘网站。"
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "下载 PDF"
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr "效果"
|
||||
msgid "Email"
|
||||
msgstr "电子邮件"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "启用双重身份验证"
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr "浏览 Reactive Resume 提供的模板,并查看使用这些模板制作的简历。您可以将它们为范例来创建下一份简历。"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "导出"
|
||||
@ -564,19 +565,19 @@ msgstr "最后,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "修正拼写和语法"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "字体库"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "字号"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "字体子集"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "字体变体"
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr "隐藏"
|
||||
msgid "Hide"
|
||||
msgstr "隐藏"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "隐藏图标"
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr "提高写作水平"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "如果您无法扫描此二维码,也可以将此链接复制粘贴到您的验证程序中。"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "在此部分中,您可以更改密码并启用/禁用双重身份验证。"
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "在此部分中,您可以删除您的账户以及与您关联的所有数据,但请记住<0>此操作是不可逆的</0>。"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr "信息"
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "最后更新 {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr "布局"
|
||||
@ -853,7 +856,7 @@ msgstr "浅色"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "浅色或深色主题"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "行高"
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr "名称"
|
||||
msgid "Network"
|
||||
msgstr "网络"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "新密码"
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "注意:这会降低您账户的安全性。"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "注释"
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr "OpenAI/Ollama 集成"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "设置"
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr "组织"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "页面"
|
||||
@ -1043,7 +1048,7 @@ msgstr "页面 {pageNumber}"
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "密码"
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr "主颜色"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr "隐私政策"
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr "提出问题"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr "滚动到平移"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "滚动放大"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "搜索字体库"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "搜索字体子集"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "搜索字体变体"
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr "搜索语言"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "使用双重身份验证保护"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "安全"
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "为您的账户设置双重身份验证"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "分享中"
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "从给简历命名开始构建你的简历。"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "统计数据"
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr "系统"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "模板"
|
||||
@ -1465,15 +1470,12 @@ msgstr "客户评价"
|
||||
msgid "Text Color"
|
||||
msgstr "文本颜色"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "您输入的密码不匹配。"
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "您要更新的简历已被锁定,如果您想对其进行更改,请解锁。"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr "跟踪浏览量和下载量"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "双重身份认证"
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr "研究类型"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "排版"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "下划线链接"
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr "已成功验证您的电子邮件地址。"
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "您的 OpenAI API 密钥尚未设置。请进入账户设置启用 OpenAI 集成。"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "您的密码已成功更新。"
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: zh\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-01-27 08:34\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Chinese Traditional\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
@ -46,11 +46,11 @@ msgstr "<0>注意:</0>使用 OpenAI API 即表示您承認並接受<1>使用
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr "<0>社群花了大量時間編寫 Reactive Resume 的文檔,我相信它將幫助您開始使用該應用程式。</0> <1>還有很多範例可以幫助您入門,以及您可能不知道的功能可以幫助您建立完美的履歷。</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>目前已停用雙因子驗證。</0> 您可以透過驗證器應用程式的新增來啟用它。"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>已啟用雙因子驗證。</0>每次登入時,系統都會要求您輸入驗證碼。"
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "帳號"
|
||||
msgid "Add a custom field"
|
||||
msgstr "新增自訂欄位"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:119
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:170
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "新增項目"
|
||||
@ -256,7 +256,7 @@ msgid "Center Artboard"
|
||||
msgstr "中心畫板"
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "更改密碼"
|
||||
|
||||
@ -301,10 +301,6 @@ msgstr "公司"
|
||||
msgid "Confident"
|
||||
msgstr "自信"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "確認新密碼"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
@ -351,7 +347,12 @@ msgstr "立即建立"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "建立履歷表範本"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "自訂 CSS"
|
||||
@ -423,14 +424,14 @@ msgstr "設計單頁/多頁履歷表"
|
||||
msgid "Disable"
|
||||
msgstr "停用"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "停用雙因子驗證(2FA)"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "放棄"
|
||||
|
||||
@ -463,7 +464,6 @@ msgid "Download a PDF of your resume. This file can be used to print your resume
|
||||
msgstr "下載 PDF 簡歷。此檔案可用於列印您的履歷、傳送給招募人員或上傳至就業入口網站。"
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "下載 PDF"
|
||||
|
||||
@ -503,7 +503,7 @@ msgstr "效果"
|
||||
msgid "Email"
|
||||
msgstr "電子郵件"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "啟用雙因子驗證"
|
||||
|
||||
@ -544,6 +544,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
||||
msgstr "探索反應式履歷中提供的範本並查看用它們製作的履歷。它們還可以作為範例來幫助指導您下一份簡歷的創建。"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "導出"
|
||||
@ -564,19 +565,19 @@ msgstr "最後,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "修正拼字和語法"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "字體"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "字體大小"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "字體子集"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "字型變體"
|
||||
|
||||
@ -677,7 +678,7 @@ msgstr "隱藏"
|
||||
msgid "Hide"
|
||||
msgstr "隱藏"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "隱藏圖示"
|
||||
|
||||
@ -734,7 +735,7 @@ msgstr "改善寫作"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "如果您無法掃描此 QR 代碼,也可以將此連結複製貼到您的驗證器應用程式中。"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "在這部份,您可以變更密碼和啟用/停用雙因子驗證。"
|
||||
|
||||
@ -743,6 +744,7 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "在這部分,您可以刪除您的帳戶以及與您的使用者相關的所有資料,但請記住 <0>此動作是不可逆的</0>。"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:116
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
||||
msgid "Information"
|
||||
msgstr "詳細資訊"
|
||||
@ -824,6 +826,7 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "最後更新 {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:197
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
||||
msgid "Layout"
|
||||
msgstr "版面配置"
|
||||
@ -853,7 +856,7 @@ msgstr "亮色"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "亮色或暗色主題"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "線條高度"
|
||||
|
||||
@ -957,7 +960,7 @@ msgstr "名稱"
|
||||
msgid "Network"
|
||||
msgstr "網路"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "新密碼"
|
||||
|
||||
@ -974,6 +977,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "注意:這會降低您帳戶的安全性。"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "注意事項"
|
||||
@ -1018,7 +1022,7 @@ msgid "OpenAI/Ollama Integration"
|
||||
msgstr "OpenAI/Ollama 整合"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "選項"
|
||||
|
||||
@ -1032,6 +1036,7 @@ msgid "Organization"
|
||||
msgstr "組織"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "頁"
|
||||
@ -1043,7 +1048,7 @@ msgstr "頁面 {pageNumber}"
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "密碼"
|
||||
|
||||
@ -1110,8 +1115,6 @@ msgid "Primary Color"
|
||||
msgstr "主要顏色"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
msgid "Privacy Policy"
|
||||
msgstr "隱私政策"
|
||||
|
||||
@ -1144,11 +1147,10 @@ msgstr "提出問題"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1262,15 +1264,15 @@ msgstr "捲動到平移"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "捲動縮放"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "搜尋字型系列"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "搜尋字型的部分字元集合"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "搜尋字型變體"
|
||||
|
||||
@ -1282,7 +1284,7 @@ msgstr "搜尋語言"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "透過雙因子驗證確保安全"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "安全性"
|
||||
|
||||
@ -1314,6 +1316,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "在您的帳戶上設定雙因子驗證"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "分享"
|
||||
@ -1408,6 +1411,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "為您的履歷命名,開始建立您的履歷。"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "統計資料"
|
||||
@ -1449,6 +1453,7 @@ msgid "System"
|
||||
msgstr "系統"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "範本"
|
||||
@ -1465,15 +1470,12 @@ msgstr "用戶評價"
|
||||
msgid "Text Color"
|
||||
msgstr "字型色彩"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "您輸入的密碼不符。"
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "您要更新的履歷已鎖定,若要對其進行任何變更,請解除鎖定。"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1532,7 @@ msgstr "追蹤檢視與下載"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "雙因子驗證"
|
||||
|
||||
@ -1552,11 +1554,12 @@ msgid "Type of Study"
|
||||
msgstr "研究類型"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "字體樣式"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "底線超連結"
|
||||
|
||||
@ -1733,7 +1736,7 @@ msgstr "您的電子郵件地址已成功驗證。"
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "您的 OpenAI API 密鑰尚未設定。請前往您的帳戶設定啟用 OpenAI 整合。"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "您的密碼已成功更新。"
|
||||
|
||||
|
||||
@ -17,25 +17,41 @@ export const BuilderPage = () => {
|
||||
const resume = useResumeStore((state) => state.resume);
|
||||
const title = useResumeStore((state) => state.resume.title);
|
||||
|
||||
const updateResumeInFrame = useCallback(() => {
|
||||
if (!frameRef?.contentWindow) return;
|
||||
const message = { type: "SET_RESUME", payload: resume.data };
|
||||
(() => {
|
||||
const syncResumeToArtboard = useCallback(() => {
|
||||
setImmediate(() => {
|
||||
if (!frameRef?.contentWindow) return;
|
||||
const message = { type: "SET_RESUME", payload: resume.data };
|
||||
frameRef.contentWindow.postMessage(message, "*");
|
||||
})();
|
||||
}, [frameRef, resume.data]);
|
||||
});
|
||||
}, [frameRef?.contentWindow, resume.data]);
|
||||
|
||||
// Send resume data to iframe on initial load
|
||||
useEffect(() => {
|
||||
if (!frameRef) return;
|
||||
frameRef.addEventListener("load", updateResumeInFrame);
|
||||
|
||||
frameRef.addEventListener("load", syncResumeToArtboard);
|
||||
|
||||
return () => {
|
||||
frameRef.removeEventListener("load", updateResumeInFrame);
|
||||
frameRef.removeEventListener("load", syncResumeToArtboard);
|
||||
};
|
||||
}, [frameRef]);
|
||||
|
||||
// Persistently check if iframe has loaded using setInterval
|
||||
useEffect(() => {
|
||||
const interval = setInterval(() => {
|
||||
if (frameRef?.contentWindow?.document.readyState === "complete") {
|
||||
syncResumeToArtboard();
|
||||
clearInterval(interval);
|
||||
}
|
||||
}, 100);
|
||||
|
||||
return () => {
|
||||
clearInterval(interval);
|
||||
};
|
||||
}, [frameRef]);
|
||||
|
||||
// Send resume data to iframe on change of resume data
|
||||
useEffect(updateResumeInFrame, [resume.data]);
|
||||
useEffect(syncResumeToArtboard, [resume.data]);
|
||||
|
||||
return (
|
||||
<>
|
||||
|
||||
@ -11,23 +11,28 @@ import { useResumeStore } from "@/client/stores/resume";
|
||||
|
||||
import { SectionIcon } from "../shared/section-icon";
|
||||
|
||||
const localFonts = ["Arial", "Cambria", "Garamond", "Times New Roman"];
|
||||
|
||||
const fontSuggestions = [
|
||||
"Open Sans",
|
||||
"Merriweather",
|
||||
"Roboto Condensed",
|
||||
"Playfair Display",
|
||||
"Lato",
|
||||
"Lora",
|
||||
"PT Sans",
|
||||
"PT Serif",
|
||||
...localFonts,
|
||||
"IBM Plex Sans",
|
||||
"IBM Plex Serif",
|
||||
"Lato",
|
||||
"Lora",
|
||||
"Merriweather",
|
||||
"Open Sans",
|
||||
"Playfair Display",
|
||||
"PT Sans",
|
||||
"PT Serif",
|
||||
"Roboto Condensed",
|
||||
];
|
||||
|
||||
const families: ComboboxOption[] = fonts.map((font) => ({
|
||||
const families = fonts.map((font) => ({
|
||||
value: font.family,
|
||||
label: font.family,
|
||||
}));
|
||||
})) satisfies ComboboxOption[];
|
||||
|
||||
families.push(...localFonts.map((font) => ({ value: font, label: font })));
|
||||
|
||||
export const TypographySection = () => {
|
||||
const [subsets, setSubsets] = useState<ComboboxOption[]>([]);
|
||||
@ -38,6 +43,8 @@ export const TypographySection = () => {
|
||||
|
||||
const loadFontSuggestions = useCallback(() => {
|
||||
for (const font of fontSuggestions) {
|
||||
if (localFonts.includes(font)) continue;
|
||||
|
||||
webfontloader.load({
|
||||
events: false,
|
||||
classes: false,
|
||||
@ -52,10 +59,14 @@ export const TypographySection = () => {
|
||||
|
||||
useEffect(() => {
|
||||
const subsets = fonts.find((font) => font.family === typography.font.family)?.subsets ?? [];
|
||||
setSubsets(subsets.map((subset) => ({ value: subset, label: subset })));
|
||||
if (subsets.length > 0) {
|
||||
setSubsets(subsets.map((subset) => ({ value: subset, label: subset })));
|
||||
}
|
||||
|
||||
const variants = fonts.find((font) => font.family === typography.font.family)?.variants ?? [];
|
||||
setVariants(variants.map((variant) => ({ value: variant, label: variant })));
|
||||
if (variants.length > 0) {
|
||||
setVariants(variants.map((variant) => ({ value: variant, label: variant })));
|
||||
}
|
||||
}, [typography.font.family]);
|
||||
|
||||
return (
|
||||
@ -69,31 +80,33 @@ export const TypographySection = () => {
|
||||
|
||||
<main className="grid gap-y-6">
|
||||
<div className="grid grid-cols-2 gap-4">
|
||||
{fontSuggestions.map((font) => (
|
||||
<Button
|
||||
key={font}
|
||||
variant="outline"
|
||||
style={{ fontFamily: font }}
|
||||
disabled={typography.font.family === font}
|
||||
className={cn(
|
||||
"flex h-12 items-center justify-center overflow-hidden rounded border text-center text-xs ring-primary transition-colors hover:bg-secondary-accent focus:outline-none focus:ring-1 disabled:opacity-100 lg:text-sm",
|
||||
typography.font.family === font && "ring-1",
|
||||
)}
|
||||
onClick={() => {
|
||||
setValue("metadata.typography.font.family", font);
|
||||
setValue("metadata.typography.font.subset", "latin");
|
||||
setValue("metadata.typography.font.variants", ["regular"]);
|
||||
}}
|
||||
>
|
||||
{font}
|
||||
</Button>
|
||||
))}
|
||||
{fontSuggestions
|
||||
.sort((a, b) => a.localeCompare(b))
|
||||
.map((font) => (
|
||||
<Button
|
||||
key={font}
|
||||
variant="outline"
|
||||
style={{ fontFamily: font }}
|
||||
disabled={typography.font.family === font}
|
||||
className={cn(
|
||||
"flex h-12 items-center justify-center overflow-hidden rounded border text-center text-xs ring-primary transition-colors hover:bg-secondary-accent focus:outline-none focus:ring-1 disabled:opacity-100 lg:text-sm",
|
||||
typography.font.family === font && "ring-1",
|
||||
)}
|
||||
onClick={() => {
|
||||
setValue("metadata.typography.font.family", font);
|
||||
setValue("metadata.typography.font.subset", "latin");
|
||||
setValue("metadata.typography.font.variants", ["regular"]);
|
||||
}}
|
||||
>
|
||||
{font}
|
||||
</Button>
|
||||
))}
|
||||
</div>
|
||||
|
||||
<div className="space-y-1.5">
|
||||
<Label>{t`Font Family`}</Label>
|
||||
<Combobox
|
||||
options={families}
|
||||
options={families.sort((a, b) => a.label.localeCompare(b.label))}
|
||||
value={typography.font.family}
|
||||
searchPlaceholder={t`Search for a font family`}
|
||||
onValueChange={(value) => {
|
||||
|
||||
@ -22,12 +22,12 @@ const formSchema = z.object({
|
||||
apiKey: z
|
||||
.string()
|
||||
// eslint-disable-next-line lingui/no-unlocalized-strings
|
||||
.regex(/^sk-.+$/, "That doesn't look like a valid OpenAI API key.")
|
||||
.min(1, "API key cannot be empty.")
|
||||
.default(""),
|
||||
baseURL: z
|
||||
.string()
|
||||
// eslint-disable-next-line lingui/no-unlocalized-strings
|
||||
.regex(/^https?:\/\/[^/]+\/?$/, "That doesn't look like a valid URL")
|
||||
.regex(/^https?:\/\/\S+$/, "That doesn't look like a valid URL")
|
||||
.or(z.literal(""))
|
||||
.default(""),
|
||||
model: z.string().default(DEFAULT_MODEL),
|
||||
|
||||
@ -27,12 +27,12 @@ export const PublicResumePage = () => {
|
||||
const format = resume.metadata.page.format as keyof typeof pageSizeMap;
|
||||
|
||||
const updateResumeInFrame = useCallback(() => {
|
||||
if (!frameRef.current?.contentWindow) return;
|
||||
const message = { type: "SET_RESUME", payload: resume };
|
||||
(() => {
|
||||
frameRef.current.contentWindow.postMessage(message, "*");
|
||||
})();
|
||||
}, [frameRef, resume]);
|
||||
|
||||
setImmediate(() => {
|
||||
frameRef.current?.contentWindow?.postMessage(message, "*");
|
||||
});
|
||||
}, [frameRef.current, resume]);
|
||||
|
||||
useEffect(() => {
|
||||
if (!frameRef.current) return;
|
||||
@ -77,7 +77,7 @@ export const PublicResumePage = () => {
|
||||
|
||||
<div
|
||||
style={{ width: `${pageSizeMap[format].width}mm` }}
|
||||
className="overflow-hidden rounded shadow-xl sm:mx-auto sm:mb-6 sm:mt-16 print:m-0 print:shadow-none"
|
||||
className="relative z-50 overflow-hidden rounded shadow-xl sm:mx-auto sm:mb-6 sm:mt-16 print:m-0 print:shadow-none"
|
||||
>
|
||||
<iframe
|
||||
ref={frameRef}
|
||||
@ -97,12 +97,10 @@ export const PublicResumePage = () => {
|
||||
</Link>
|
||||
</div>
|
||||
|
||||
<div className="fixed bottom-5 right-5 hidden sm:block print:hidden">
|
||||
<div className="flex items-center gap-x-4">
|
||||
<Button variant="outline" className="gap-x-2 rounded-full" onClick={onDownloadPdf}>
|
||||
{loading ? <CircleNotch size={16} className="animate-spin" /> : <FilePdf size={16} />}
|
||||
{/* eslint-disable-next-line lingui/no-unlocalized-strings */}
|
||||
<span>{t`Download PDF`}</span>
|
||||
<div className="fixed bottom-5 right-5 z-0 hidden sm:block print:hidden">
|
||||
<div className="flex flex-col items-center gap-y-2">
|
||||
<Button size="icon" variant="ghost" onClick={onDownloadPdf}>
|
||||
{loading ? <CircleNotch size={20} className="animate-spin" /> : <FilePdf size={20} />}
|
||||
</Button>
|
||||
|
||||
<ThemeSwitch />
|
||||
|
||||
@ -22,8 +22,7 @@ import { GuestGuard } from "./guards/guest";
|
||||
import { authLoader } from "./loaders/auth";
|
||||
|
||||
export const routes = createRoutesFromElements(
|
||||
// eslint-disable-next-line lingui/no-unlocalized-strings
|
||||
<Route element={<Providers />} hydrateFallbackElement={<div>Loading...</div>}>
|
||||
<Route element={<Providers />}>
|
||||
<Route element={<HomeLayout />}>
|
||||
<Route path="/" element={<HomePage />} />
|
||||
</Route>
|
||||
|
||||
@ -1,9 +1,8 @@
|
||||
import { HttpService } from "@nestjs/axios";
|
||||
import { Injectable, InternalServerErrorException, Logger } from "@nestjs/common";
|
||||
import { ConfigService } from "@nestjs/config";
|
||||
import fontkit from "@pdf-lib/fontkit";
|
||||
import { ResumeDto } from "@reactive-resume/dto";
|
||||
import { ErrorMessage, getFontUrls } from "@reactive-resume/utils";
|
||||
import { ErrorMessage } from "@reactive-resume/utils";
|
||||
import retry from "async-retry";
|
||||
import { PDFDocument } from "pdf-lib";
|
||||
import { connect } from "puppeteer";
|
||||
@ -150,7 +149,7 @@ export class PrinterService {
|
||||
return temporaryHtml_;
|
||||
}, pageElement);
|
||||
|
||||
// Apply custom CSS if enabled
|
||||
// Apply custom CSS, if enabled
|
||||
const css = resume.data.metadata.css;
|
||||
|
||||
if (css.visible) {
|
||||
@ -177,24 +176,6 @@ export class PrinterService {
|
||||
|
||||
// Using 'pdf-lib', merge all the pages from their buffers into a single PDF
|
||||
const pdf = await PDFDocument.create();
|
||||
pdf.registerFontkit(fontkit);
|
||||
|
||||
// Get information about fonts used in the resume from the metadata
|
||||
const fontData = resume.data.metadata.typography.font;
|
||||
const fontUrls = getFontUrls(fontData.family, fontData.variants);
|
||||
|
||||
// Load all the fonts from the URLs using HttpService
|
||||
const responses = await Promise.all(
|
||||
fontUrls.map((url) =>
|
||||
this.httpService.axiosRef.get(url, {
|
||||
responseType: "arraybuffer",
|
||||
}),
|
||||
),
|
||||
);
|
||||
const fontsBuffer = responses.map((response) => response.data as ArrayBuffer);
|
||||
|
||||
// Embed all the fonts in the PDF
|
||||
await Promise.all(fontsBuffer.map((buffer) => pdf.embedFont(buffer)));
|
||||
|
||||
for (const element of pagesBuffer) {
|
||||
const page = await PDFDocument.load(element);
|
||||
|
||||
229
libs/dto/pnpm-lock.yaml
generated
Normal file
229
libs/dto/pnpm-lock.yaml
generated
Normal file
@ -0,0 +1,229 @@
|
||||
lockfileVersion: '9.0'
|
||||
|
||||
settings:
|
||||
autoInstallPeers: true
|
||||
excludeLinksFromLockfile: false
|
||||
|
||||
importers:
|
||||
|
||||
.:
|
||||
dependencies:
|
||||
'@paralleldrive/cuid2':
|
||||
specifier: ^2.2.2
|
||||
version: 2.2.2
|
||||
'@reactive-resume/schema':
|
||||
specifier: '*'
|
||||
version: link:../schema
|
||||
'@reactive-resume/utils':
|
||||
specifier: '*'
|
||||
version: link:../utils
|
||||
'@sindresorhus/slugify':
|
||||
specifier: ^2.2.1
|
||||
version: 2.2.1
|
||||
'@swc/helpers':
|
||||
specifier: ~0.5.11
|
||||
version: 0.5.15
|
||||
nestjs-zod:
|
||||
specifier: ^3.0.0
|
||||
version: 3.0.0(zod@3.24.1)
|
||||
zod:
|
||||
specifier: ^3.24.1
|
||||
version: 3.24.1
|
||||
|
||||
packages:
|
||||
|
||||
'@noble/hashes@1.7.1':
|
||||
resolution: {integrity: sha512-B8XBPsn4vT/KJAGqDzbwztd+6Yte3P4V7iafm24bxgDe/mlRuK6xmWPuCNrKt2vDafZ8MfJLlchDG/vYafQEjQ==}
|
||||
engines: {node: ^14.21.3 || >=16}
|
||||
|
||||
'@paralleldrive/cuid2@2.2.2':
|
||||
resolution: {integrity: sha512-ZOBkgDwEdoYVlSeRbYYXs0S9MejQofiVYoTbKzy/6GQa39/q5tQU2IX46+shYnUkpEl3wc+J6wRlar7r2EK2xA==}
|
||||
|
||||
'@sindresorhus/slugify@2.2.1':
|
||||
resolution: {integrity: sha512-MkngSCRZ8JdSOCHRaYd+D01XhvU3Hjy6MGl06zhOk614hp9EOAp5gIkBeQg7wtmxpitU6eAL4kdiRMcJa2dlrw==}
|
||||
engines: {node: '>=12'}
|
||||
|
||||
'@sindresorhus/transliterate@1.6.0':
|
||||
resolution: {integrity: sha512-doH1gimEu3A46VX6aVxpHTeHrytJAG6HgdxntYnCFiIFHEM/ZGpG8KiZGBChchjQmG0XFIBL552kBTjVcMZXwQ==}
|
||||
engines: {node: '>=12'}
|
||||
|
||||
'@swc/helpers@0.5.15':
|
||||
resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==}
|
||||
|
||||
arr-union@3.1.0:
|
||||
resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
|
||||
clone-deep@0.2.4:
|
||||
resolution: {integrity: sha512-we+NuQo2DHhSl+DP6jlUiAhyAjBQrYnpOk15rN6c6JSPScjiCLh8IbSU+VTcph6YS3o7mASE8a0+gbZ7ChLpgg==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
|
||||
escape-string-regexp@5.0.0:
|
||||
resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
|
||||
engines: {node: '>=12'}
|
||||
|
||||
for-in@0.1.8:
|
||||
resolution: {integrity: sha512-F0to7vbBSHP8E3l6dCjxNOLuSFAACIxFy3UehTUlG7svlXi37HHsDkyVcHo0Pq8QwrE+pXvWSVX3ZT1T9wAZ9g==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
|
||||
for-in@1.0.2:
|
||||
resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
|
||||
for-own@0.1.5:
|
||||
resolution: {integrity: sha512-SKmowqGTJoPzLO1T0BBJpkfp3EMacCMOuH40hOUbrbzElVktk4DioXVM99QkLCyKoiuOmyjgcWMpVz2xjE7LZw==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
|
||||
is-buffer@1.1.6:
|
||||
resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==}
|
||||
|
||||
is-extendable@0.1.1:
|
||||
resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
|
||||
is-plain-object@2.0.4:
|
||||
resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
|
||||
isobject@3.0.1:
|
||||
resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
|
||||
kind-of@2.0.1:
|
||||
resolution: {integrity: sha512-0u8i1NZ/mg0b+W3MGGw5I7+6Eib2nx72S/QvXa0hYjEkjTknYmEYQJwGu3mLC0BrhtJjtQafTkyRUQ75Kx0LVg==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
|
||||
kind-of@3.2.2:
|
||||
resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
|
||||
lazy-cache@0.2.7:
|
||||
resolution: {integrity: sha512-gkX52wvU/R8DVMMt78ATVPFMJqfW8FPz1GZ1sVHBVQHmu/WvhIWE4cE1GBzhJNFicDeYhnwp6Rl35BcAIM3YOQ==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
|
||||
lazy-cache@1.0.4:
|
||||
resolution: {integrity: sha512-RE2g0b5VGZsOCFOCgP7omTRYFqydmZkBwl5oNnQ1lDYC57uyO9KqNnNVxT7COSHTxrRCWVcAVOcbjk+tvh/rgQ==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
|
||||
merge-deep@3.0.3:
|
||||
resolution: {integrity: sha512-qtmzAS6t6grwEkNrunqTBdn0qKwFgNWvlxUbAV8es9M7Ot1EbyApytCnvE0jALPa46ZpKDUo527kKiaWplmlFA==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
|
||||
mixin-object@2.0.1:
|
||||
resolution: {integrity: sha512-ALGF1Jt9ouehcaXaHhn6t1yGWRqGaHkPFndtFVHfZXOvkIZ/yoGaSi0AHVTafb3ZBGg4dr/bDwnaEKqCXzchMA==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
|
||||
nestjs-zod@3.0.0:
|
||||
resolution: {integrity: sha512-vL9CHShCVj6TmjCVPOd4my46D8d7FdoB4nQvvh+lmVTuzvnwuD+slSxjT4EDdPDWDFtjhfpvQnnkr55/80KHEQ==}
|
||||
peerDependencies:
|
||||
'@nestjs/common': '>= 8.0.0'
|
||||
'@nestjs/core': '>= 8.0.0'
|
||||
'@nestjs/swagger': '>= 5.0.0'
|
||||
zod: '>= 3.14.3'
|
||||
peerDependenciesMeta:
|
||||
'@nestjs/common':
|
||||
optional: true
|
||||
'@nestjs/core':
|
||||
optional: true
|
||||
'@nestjs/swagger':
|
||||
optional: true
|
||||
|
||||
shallow-clone@0.1.2:
|
||||
resolution: {integrity: sha512-J1zdXCky5GmNnuauESROVu31MQSnLoYvlyEn6j2Ztk6Q5EHFIhxkMhYcv6vuDzl2XEzoRr856QwzMgWM/TmZgw==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
|
||||
tslib@2.8.1:
|
||||
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
|
||||
|
||||
zod@3.24.1:
|
||||
resolution: {integrity: sha512-muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A==}
|
||||
|
||||
snapshots:
|
||||
|
||||
'@noble/hashes@1.7.1': {}
|
||||
|
||||
'@paralleldrive/cuid2@2.2.2':
|
||||
dependencies:
|
||||
'@noble/hashes': 1.7.1
|
||||
|
||||
'@sindresorhus/slugify@2.2.1':
|
||||
dependencies:
|
||||
'@sindresorhus/transliterate': 1.6.0
|
||||
escape-string-regexp: 5.0.0
|
||||
|
||||
'@sindresorhus/transliterate@1.6.0':
|
||||
dependencies:
|
||||
escape-string-regexp: 5.0.0
|
||||
|
||||
'@swc/helpers@0.5.15':
|
||||
dependencies:
|
||||
tslib: 2.8.1
|
||||
|
||||
arr-union@3.1.0: {}
|
||||
|
||||
clone-deep@0.2.4:
|
||||
dependencies:
|
||||
for-own: 0.1.5
|
||||
is-plain-object: 2.0.4
|
||||
kind-of: 3.2.2
|
||||
lazy-cache: 1.0.4
|
||||
shallow-clone: 0.1.2
|
||||
|
||||
escape-string-regexp@5.0.0: {}
|
||||
|
||||
for-in@0.1.8: {}
|
||||
|
||||
for-in@1.0.2: {}
|
||||
|
||||
for-own@0.1.5:
|
||||
dependencies:
|
||||
for-in: 1.0.2
|
||||
|
||||
is-buffer@1.1.6: {}
|
||||
|
||||
is-extendable@0.1.1: {}
|
||||
|
||||
is-plain-object@2.0.4:
|
||||
dependencies:
|
||||
isobject: 3.0.1
|
||||
|
||||
isobject@3.0.1: {}
|
||||
|
||||
kind-of@2.0.1:
|
||||
dependencies:
|
||||
is-buffer: 1.1.6
|
||||
|
||||
kind-of@3.2.2:
|
||||
dependencies:
|
||||
is-buffer: 1.1.6
|
||||
|
||||
lazy-cache@0.2.7: {}
|
||||
|
||||
lazy-cache@1.0.4: {}
|
||||
|
||||
merge-deep@3.0.3:
|
||||
dependencies:
|
||||
arr-union: 3.1.0
|
||||
clone-deep: 0.2.4
|
||||
kind-of: 3.2.2
|
||||
|
||||
mixin-object@2.0.1:
|
||||
dependencies:
|
||||
for-in: 0.1.8
|
||||
is-extendable: 0.1.1
|
||||
|
||||
nestjs-zod@3.0.0(zod@3.24.1):
|
||||
dependencies:
|
||||
merge-deep: 3.0.3
|
||||
zod: 3.24.1
|
||||
|
||||
shallow-clone@0.1.2:
|
||||
dependencies:
|
||||
is-extendable: 0.1.1
|
||||
kind-of: 2.0.1
|
||||
lazy-cache: 0.2.7
|
||||
mixin-object: 2.0.1
|
||||
|
||||
tslib@2.8.1: {}
|
||||
|
||||
zod@3.24.1: {}
|
||||
9
libs/hooks/pnpm-lock.yaml
generated
Normal file
9
libs/hooks/pnpm-lock.yaml
generated
Normal file
@ -0,0 +1,9 @@
|
||||
lockfileVersion: '9.0'
|
||||
|
||||
settings:
|
||||
autoInstallPeers: true
|
||||
excludeLinksFromLockfile: false
|
||||
|
||||
importers:
|
||||
|
||||
.: {}
|
||||
@ -12,7 +12,7 @@
|
||||
"@reactive-resume/schema": "*",
|
||||
"@reactive-resume/utils": "*",
|
||||
"nestjs-zod": "^3.0.0",
|
||||
"zod": "^3.23.8",
|
||||
"zod": "^3.24.1",
|
||||
"@paralleldrive/cuid2": "^2.2.2",
|
||||
"jszip": "^3.10.1",
|
||||
"@swc/helpers": "~0.5.11"
|
||||
|
||||
288
libs/parser/pnpm-lock.yaml
generated
Normal file
288
libs/parser/pnpm-lock.yaml
generated
Normal file
@ -0,0 +1,288 @@
|
||||
lockfileVersion: '9.0'
|
||||
|
||||
settings:
|
||||
autoInstallPeers: true
|
||||
excludeLinksFromLockfile: false
|
||||
|
||||
importers:
|
||||
|
||||
.:
|
||||
dependencies:
|
||||
'@paralleldrive/cuid2':
|
||||
specifier: ^2.2.2
|
||||
version: 2.2.2
|
||||
'@reactive-resume/schema':
|
||||
specifier: '*'
|
||||
version: link:../schema
|
||||
'@reactive-resume/utils':
|
||||
specifier: '*'
|
||||
version: link:../utils
|
||||
'@swc/helpers':
|
||||
specifier: ~0.5.11
|
||||
version: 0.5.15
|
||||
jszip:
|
||||
specifier: ^3.10.1
|
||||
version: 3.10.1
|
||||
nestjs-zod:
|
||||
specifier: ^3.0.0
|
||||
version: 3.0.0(zod@3.24.1)
|
||||
zod:
|
||||
specifier: ^3.23.8
|
||||
version: 3.24.1
|
||||
|
||||
packages:
|
||||
|
||||
'@noble/hashes@1.7.1':
|
||||
resolution: {integrity: sha512-B8XBPsn4vT/KJAGqDzbwztd+6Yte3P4V7iafm24bxgDe/mlRuK6xmWPuCNrKt2vDafZ8MfJLlchDG/vYafQEjQ==}
|
||||
engines: {node: ^14.21.3 || >=16}
|
||||
|
||||
'@paralleldrive/cuid2@2.2.2':
|
||||
resolution: {integrity: sha512-ZOBkgDwEdoYVlSeRbYYXs0S9MejQofiVYoTbKzy/6GQa39/q5tQU2IX46+shYnUkpEl3wc+J6wRlar7r2EK2xA==}
|
||||
|
||||
'@swc/helpers@0.5.15':
|
||||
resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==}
|
||||
|
||||
arr-union@3.1.0:
|
||||
resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
|
||||
clone-deep@0.2.4:
|
||||
resolution: {integrity: sha512-we+NuQo2DHhSl+DP6jlUiAhyAjBQrYnpOk15rN6c6JSPScjiCLh8IbSU+VTcph6YS3o7mASE8a0+gbZ7ChLpgg==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
|
||||
core-util-is@1.0.3:
|
||||
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
|
||||
|
||||
for-in@0.1.8:
|
||||
resolution: {integrity: sha512-F0to7vbBSHP8E3l6dCjxNOLuSFAACIxFy3UehTUlG7svlXi37HHsDkyVcHo0Pq8QwrE+pXvWSVX3ZT1T9wAZ9g==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
|
||||
for-in@1.0.2:
|
||||
resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
|
||||
for-own@0.1.5:
|
||||
resolution: {integrity: sha512-SKmowqGTJoPzLO1T0BBJpkfp3EMacCMOuH40hOUbrbzElVktk4DioXVM99QkLCyKoiuOmyjgcWMpVz2xjE7LZw==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
|
||||
immediate@3.0.6:
|
||||
resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==}
|
||||
|
||||
inherits@2.0.4:
|
||||
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
|
||||
|
||||
is-buffer@1.1.6:
|
||||
resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==}
|
||||
|
||||
is-extendable@0.1.1:
|
||||
resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
|
||||
is-plain-object@2.0.4:
|
||||
resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
|
||||
isarray@1.0.0:
|
||||
resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
|
||||
|
||||
isobject@3.0.1:
|
||||
resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
|
||||
jszip@3.10.1:
|
||||
resolution: {integrity: sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==}
|
||||
|
||||
kind-of@2.0.1:
|
||||
resolution: {integrity: sha512-0u8i1NZ/mg0b+W3MGGw5I7+6Eib2nx72S/QvXa0hYjEkjTknYmEYQJwGu3mLC0BrhtJjtQafTkyRUQ75Kx0LVg==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
|
||||
kind-of@3.2.2:
|
||||
resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
|
||||
lazy-cache@0.2.7:
|
||||
resolution: {integrity: sha512-gkX52wvU/R8DVMMt78ATVPFMJqfW8FPz1GZ1sVHBVQHmu/WvhIWE4cE1GBzhJNFicDeYhnwp6Rl35BcAIM3YOQ==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
|
||||
lazy-cache@1.0.4:
|
||||
resolution: {integrity: sha512-RE2g0b5VGZsOCFOCgP7omTRYFqydmZkBwl5oNnQ1lDYC57uyO9KqNnNVxT7COSHTxrRCWVcAVOcbjk+tvh/rgQ==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
|
||||
lie@3.3.0:
|
||||
resolution: {integrity: sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==}
|
||||
|
||||
merge-deep@3.0.3:
|
||||
resolution: {integrity: sha512-qtmzAS6t6grwEkNrunqTBdn0qKwFgNWvlxUbAV8es9M7Ot1EbyApytCnvE0jALPa46ZpKDUo527kKiaWplmlFA==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
|
||||
mixin-object@2.0.1:
|
||||
resolution: {integrity: sha512-ALGF1Jt9ouehcaXaHhn6t1yGWRqGaHkPFndtFVHfZXOvkIZ/yoGaSi0AHVTafb3ZBGg4dr/bDwnaEKqCXzchMA==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
|
||||
nestjs-zod@3.0.0:
|
||||
resolution: {integrity: sha512-vL9CHShCVj6TmjCVPOd4my46D8d7FdoB4nQvvh+lmVTuzvnwuD+slSxjT4EDdPDWDFtjhfpvQnnkr55/80KHEQ==}
|
||||
peerDependencies:
|
||||
'@nestjs/common': '>= 8.0.0'
|
||||
'@nestjs/core': '>= 8.0.0'
|
||||
'@nestjs/swagger': '>= 5.0.0'
|
||||
zod: '>= 3.14.3'
|
||||
peerDependenciesMeta:
|
||||
'@nestjs/common':
|
||||
optional: true
|
||||
'@nestjs/core':
|
||||
optional: true
|
||||
'@nestjs/swagger':
|
||||
optional: true
|
||||
|
||||
pako@1.0.11:
|
||||
resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==}
|
||||
|
||||
process-nextick-args@2.0.1:
|
||||
resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
|
||||
|
||||
readable-stream@2.3.8:
|
||||
resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
|
||||
|
||||
safe-buffer@5.1.2:
|
||||
resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
|
||||
|
||||
setimmediate@1.0.5:
|
||||
resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==}
|
||||
|
||||
shallow-clone@0.1.2:
|
||||
resolution: {integrity: sha512-J1zdXCky5GmNnuauESROVu31MQSnLoYvlyEn6j2Ztk6Q5EHFIhxkMhYcv6vuDzl2XEzoRr856QwzMgWM/TmZgw==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
|
||||
string_decoder@1.1.1:
|
||||
resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
|
||||
|
||||
tslib@2.8.1:
|
||||
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
|
||||
|
||||
util-deprecate@1.0.2:
|
||||
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
|
||||
|
||||
zod@3.24.1:
|
||||
resolution: {integrity: sha512-muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A==}
|
||||
|
||||
snapshots:
|
||||
|
||||
'@noble/hashes@1.7.1': {}
|
||||
|
||||
'@paralleldrive/cuid2@2.2.2':
|
||||
dependencies:
|
||||
'@noble/hashes': 1.7.1
|
||||
|
||||
'@swc/helpers@0.5.15':
|
||||
dependencies:
|
||||
tslib: 2.8.1
|
||||
|
||||
arr-union@3.1.0: {}
|
||||
|
||||
clone-deep@0.2.4:
|
||||
dependencies:
|
||||
for-own: 0.1.5
|
||||
is-plain-object: 2.0.4
|
||||
kind-of: 3.2.2
|
||||
lazy-cache: 1.0.4
|
||||
shallow-clone: 0.1.2
|
||||
|
||||
core-util-is@1.0.3: {}
|
||||
|
||||
for-in@0.1.8: {}
|
||||
|
||||
for-in@1.0.2: {}
|
||||
|
||||
for-own@0.1.5:
|
||||
dependencies:
|
||||
for-in: 1.0.2
|
||||
|
||||
immediate@3.0.6: {}
|
||||
|
||||
inherits@2.0.4: {}
|
||||
|
||||
is-buffer@1.1.6: {}
|
||||
|
||||
is-extendable@0.1.1: {}
|
||||
|
||||
is-plain-object@2.0.4:
|
||||
dependencies:
|
||||
isobject: 3.0.1
|
||||
|
||||
isarray@1.0.0: {}
|
||||
|
||||
isobject@3.0.1: {}
|
||||
|
||||
jszip@3.10.1:
|
||||
dependencies:
|
||||
lie: 3.3.0
|
||||
pako: 1.0.11
|
||||
readable-stream: 2.3.8
|
||||
setimmediate: 1.0.5
|
||||
|
||||
kind-of@2.0.1:
|
||||
dependencies:
|
||||
is-buffer: 1.1.6
|
||||
|
||||
kind-of@3.2.2:
|
||||
dependencies:
|
||||
is-buffer: 1.1.6
|
||||
|
||||
lazy-cache@0.2.7: {}
|
||||
|
||||
lazy-cache@1.0.4: {}
|
||||
|
||||
lie@3.3.0:
|
||||
dependencies:
|
||||
immediate: 3.0.6
|
||||
|
||||
merge-deep@3.0.3:
|
||||
dependencies:
|
||||
arr-union: 3.1.0
|
||||
clone-deep: 0.2.4
|
||||
kind-of: 3.2.2
|
||||
|
||||
mixin-object@2.0.1:
|
||||
dependencies:
|
||||
for-in: 0.1.8
|
||||
is-extendable: 0.1.1
|
||||
|
||||
nestjs-zod@3.0.0(zod@3.24.1):
|
||||
dependencies:
|
||||
merge-deep: 3.0.3
|
||||
zod: 3.24.1
|
||||
|
||||
pako@1.0.11: {}
|
||||
|
||||
process-nextick-args@2.0.1: {}
|
||||
|
||||
readable-stream@2.3.8:
|
||||
dependencies:
|
||||
core-util-is: 1.0.3
|
||||
inherits: 2.0.4
|
||||
isarray: 1.0.0
|
||||
process-nextick-args: 2.0.1
|
||||
safe-buffer: 5.1.2
|
||||
string_decoder: 1.1.1
|
||||
util-deprecate: 1.0.2
|
||||
|
||||
safe-buffer@5.1.2: {}
|
||||
|
||||
setimmediate@1.0.5: {}
|
||||
|
||||
shallow-clone@0.1.2:
|
||||
dependencies:
|
||||
is-extendable: 0.1.1
|
||||
kind-of: 2.0.1
|
||||
lazy-cache: 0.2.7
|
||||
mixin-object: 2.0.1
|
||||
|
||||
string_decoder@1.1.1:
|
||||
dependencies:
|
||||
safe-buffer: 5.1.2
|
||||
|
||||
tslib@2.8.1: {}
|
||||
|
||||
util-deprecate@1.0.2: {}
|
||||
|
||||
zod@3.24.1: {}
|
||||
@ -9,11 +9,11 @@
|
||||
"access": "public"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"zod": "^3.23.8",
|
||||
"@paralleldrive/cuid2": "^2.2.2",
|
||||
"@swc/helpers": "^0.5.15"
|
||||
"@swc/helpers": "^0.5.15",
|
||||
"zod": "^3.23.8"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@swc/helpers": "~0.5.11"
|
||||
"@swc/helpers": "~0.5.15"
|
||||
}
|
||||
}
|
||||
|
||||
54
libs/schema/pnpm-lock.yaml
generated
Normal file
54
libs/schema/pnpm-lock.yaml
generated
Normal file
@ -0,0 +1,54 @@
|
||||
lockfileVersion: '9.0'
|
||||
|
||||
settings:
|
||||
autoInstallPeers: true
|
||||
excludeLinksFromLockfile: false
|
||||
|
||||
importers:
|
||||
|
||||
.:
|
||||
dependencies:
|
||||
'@paralleldrive/cuid2':
|
||||
specifier: ^2.2.2
|
||||
version: 2.2.2
|
||||
zod:
|
||||
specifier: ^3.23.8
|
||||
version: 3.24.1
|
||||
devDependencies:
|
||||
'@swc/helpers':
|
||||
specifier: ~0.5.15
|
||||
version: 0.5.15
|
||||
|
||||
packages:
|
||||
|
||||
'@noble/hashes@1.7.1':
|
||||
resolution: {integrity: sha512-B8XBPsn4vT/KJAGqDzbwztd+6Yte3P4V7iafm24bxgDe/mlRuK6xmWPuCNrKt2vDafZ8MfJLlchDG/vYafQEjQ==}
|
||||
engines: {node: ^14.21.3 || >=16}
|
||||
|
||||
'@paralleldrive/cuid2@2.2.2':
|
||||
resolution: {integrity: sha512-ZOBkgDwEdoYVlSeRbYYXs0S9MejQofiVYoTbKzy/6GQa39/q5tQU2IX46+shYnUkpEl3wc+J6wRlar7r2EK2xA==}
|
||||
|
||||
'@swc/helpers@0.5.15':
|
||||
resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==}
|
||||
|
||||
tslib@2.8.1:
|
||||
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
|
||||
|
||||
zod@3.24.1:
|
||||
resolution: {integrity: sha512-muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A==}
|
||||
|
||||
snapshots:
|
||||
|
||||
'@noble/hashes@1.7.1': {}
|
||||
|
||||
'@paralleldrive/cuid2@2.2.2':
|
||||
dependencies:
|
||||
'@noble/hashes': 1.7.1
|
||||
|
||||
'@swc/helpers@0.5.15':
|
||||
dependencies:
|
||||
tslib: 2.8.1
|
||||
|
||||
tslib@2.8.1: {}
|
||||
|
||||
zod@3.24.1: {}
|
||||
9
libs/ui/pnpm-lock.yaml
generated
Normal file
9
libs/ui/pnpm-lock.yaml
generated
Normal file
@ -0,0 +1,9 @@
|
||||
lockfileVersion: '9.0'
|
||||
|
||||
settings:
|
||||
autoInstallPeers: true
|
||||
excludeLinksFromLockfile: false
|
||||
|
||||
importers:
|
||||
|
||||
.: {}
|
||||
@ -9,12 +9,13 @@
|
||||
"access": "public"
|
||||
},
|
||||
"dependencies": {
|
||||
"papaparse": "^5.4.1",
|
||||
"dayjs": "^1.11.11",
|
||||
"unique-names-generator": "^4.7.1",
|
||||
"@swc/helpers": "~0.5.15",
|
||||
"clsx": "^2.1.1",
|
||||
"tailwind-merge": "^2.3.0",
|
||||
"@swc/helpers": "~0.5.11",
|
||||
"dayjs": "^1.11.13",
|
||||
"papaparse": "^5.5.2",
|
||||
"sanitize-html": "^2.14.0",
|
||||
"tailwind-merge": "^2.6.0",
|
||||
"unique-names-generator": "^4.7.1",
|
||||
"zod": "^3.24.1"
|
||||
}
|
||||
}
|
||||
|
||||
192
libs/utils/pnpm-lock.yaml
generated
Normal file
192
libs/utils/pnpm-lock.yaml
generated
Normal file
@ -0,0 +1,192 @@
|
||||
lockfileVersion: '9.0'
|
||||
|
||||
settings:
|
||||
autoInstallPeers: true
|
||||
excludeLinksFromLockfile: false
|
||||
|
||||
importers:
|
||||
|
||||
.:
|
||||
dependencies:
|
||||
'@swc/helpers':
|
||||
specifier: ~0.5.15
|
||||
version: 0.5.15
|
||||
clsx:
|
||||
specifier: ^2.1.1
|
||||
version: 2.1.1
|
||||
dayjs:
|
||||
specifier: ^1.11.13
|
||||
version: 1.11.13
|
||||
papaparse:
|
||||
specifier: ^5.5.2
|
||||
version: 5.5.2
|
||||
sanitize-html:
|
||||
specifier: ^2.14.0
|
||||
version: 2.14.0
|
||||
tailwind-merge:
|
||||
specifier: ^2.6.0
|
||||
version: 2.6.0
|
||||
unique-names-generator:
|
||||
specifier: ^4.7.1
|
||||
version: 4.7.1
|
||||
zod:
|
||||
specifier: ^3.24.1
|
||||
version: 3.24.1
|
||||
|
||||
packages:
|
||||
|
||||
'@swc/helpers@0.5.15':
|
||||
resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==}
|
||||
|
||||
clsx@2.1.1:
|
||||
resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
|
||||
engines: {node: '>=6'}
|
||||
|
||||
dayjs@1.11.13:
|
||||
resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==}
|
||||
|
||||
deepmerge@4.3.1:
|
||||
resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
|
||||
dom-serializer@2.0.0:
|
||||
resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==}
|
||||
|
||||
domelementtype@2.3.0:
|
||||
resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
|
||||
|
||||
domhandler@5.0.3:
|
||||
resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==}
|
||||
engines: {node: '>= 4'}
|
||||
|
||||
domutils@3.2.2:
|
||||
resolution: {integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==}
|
||||
|
||||
entities@4.5.0:
|
||||
resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
|
||||
engines: {node: '>=0.12'}
|
||||
|
||||
escape-string-regexp@4.0.0:
|
||||
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
|
||||
engines: {node: '>=10'}
|
||||
|
||||
htmlparser2@8.0.2:
|
||||
resolution: {integrity: sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==}
|
||||
|
||||
is-plain-object@5.0.0:
|
||||
resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
|
||||
nanoid@3.3.8:
|
||||
resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==}
|
||||
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
||||
hasBin: true
|
||||
|
||||
papaparse@5.5.2:
|
||||
resolution: {integrity: sha512-PZXg8UuAc4PcVwLosEEDYjPyfWnTEhOrUfdv+3Bx+NuAb+5NhDmXzg5fHWmdCh1mP5p7JAZfFr3IMQfcntNAdA==}
|
||||
|
||||
parse-srcset@1.0.2:
|
||||
resolution: {integrity: sha512-/2qh0lav6CmI15FzA3i/2Bzk2zCgQhGMkvhOhKNcBVQ1ldgpbfiNTVslmooUmWJcADi1f1kIeynbDRVzNlfR6Q==}
|
||||
|
||||
picocolors@1.1.1:
|
||||
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
|
||||
|
||||
postcss@8.5.1:
|
||||
resolution: {integrity: sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ==}
|
||||
engines: {node: ^10 || ^12 || >=14}
|
||||
|
||||
sanitize-html@2.14.0:
|
||||
resolution: {integrity: sha512-CafX+IUPxZshXqqRaG9ZClSlfPVjSxI0td7n07hk8QO2oO+9JDnlcL8iM8TWeOXOIBFgIOx6zioTzM53AOMn3g==}
|
||||
|
||||
source-map-js@1.2.1:
|
||||
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
|
||||
tailwind-merge@2.6.0:
|
||||
resolution: {integrity: sha512-P+Vu1qXfzediirmHOC3xKGAYeZtPcV9g76X+xg2FD4tYgR71ewMA35Y3sCz3zhiN/dwefRpJX0yBcgwi1fXNQA==}
|
||||
|
||||
tslib@2.8.1:
|
||||
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
|
||||
|
||||
unique-names-generator@4.7.1:
|
||||
resolution: {integrity: sha512-lMx9dX+KRmG8sq6gulYYpKWZc9RlGsgBR6aoO8Qsm3qvkSJ+3rAymr+TnV8EDMrIrwuFJ4kruzMWM/OpYzPoow==}
|
||||
engines: {node: '>=8'}
|
||||
|
||||
zod@3.24.1:
|
||||
resolution: {integrity: sha512-muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A==}
|
||||
|
||||
snapshots:
|
||||
|
||||
'@swc/helpers@0.5.15':
|
||||
dependencies:
|
||||
tslib: 2.8.1
|
||||
|
||||
clsx@2.1.1: {}
|
||||
|
||||
dayjs@1.11.13: {}
|
||||
|
||||
deepmerge@4.3.1: {}
|
||||
|
||||
dom-serializer@2.0.0:
|
||||
dependencies:
|
||||
domelementtype: 2.3.0
|
||||
domhandler: 5.0.3
|
||||
entities: 4.5.0
|
||||
|
||||
domelementtype@2.3.0: {}
|
||||
|
||||
domhandler@5.0.3:
|
||||
dependencies:
|
||||
domelementtype: 2.3.0
|
||||
|
||||
domutils@3.2.2:
|
||||
dependencies:
|
||||
dom-serializer: 2.0.0
|
||||
domelementtype: 2.3.0
|
||||
domhandler: 5.0.3
|
||||
|
||||
entities@4.5.0: {}
|
||||
|
||||
escape-string-regexp@4.0.0: {}
|
||||
|
||||
htmlparser2@8.0.2:
|
||||
dependencies:
|
||||
domelementtype: 2.3.0
|
||||
domhandler: 5.0.3
|
||||
domutils: 3.2.2
|
||||
entities: 4.5.0
|
||||
|
||||
is-plain-object@5.0.0: {}
|
||||
|
||||
nanoid@3.3.8: {}
|
||||
|
||||
papaparse@5.5.2: {}
|
||||
|
||||
parse-srcset@1.0.2: {}
|
||||
|
||||
picocolors@1.1.1: {}
|
||||
|
||||
postcss@8.5.1:
|
||||
dependencies:
|
||||
nanoid: 3.3.8
|
||||
picocolors: 1.1.1
|
||||
source-map-js: 1.2.1
|
||||
|
||||
sanitize-html@2.14.0:
|
||||
dependencies:
|
||||
deepmerge: 4.3.1
|
||||
escape-string-regexp: 4.0.0
|
||||
htmlparser2: 8.0.2
|
||||
is-plain-object: 5.0.0
|
||||
parse-srcset: 1.0.2
|
||||
postcss: 8.5.1
|
||||
|
||||
source-map-js@1.2.1: {}
|
||||
|
||||
tailwind-merge@2.6.0: {}
|
||||
|
||||
tslib@2.8.1: {}
|
||||
|
||||
unique-names-generator@4.7.1: {}
|
||||
|
||||
zod@3.24.1: {}
|
||||
@ -1,3 +1,4 @@
|
||||
import sanitizeHtml from "sanitize-html";
|
||||
import type { Config as UniqueNamesConfig } from "unique-names-generator";
|
||||
import { adjectives, animals, uniqueNamesGenerator } from "unique-names-generator";
|
||||
|
||||
@ -55,3 +56,95 @@ export const parseLayoutLocator = (payload: SortablePayload | null): LayoutLocat
|
||||
|
||||
return { page, column, section };
|
||||
};
|
||||
|
||||
export const sanitize = (html: string, options?: sanitizeHtml.IOptions) => {
|
||||
const allowedTags = (options?.allowedTags ?? []) as string[];
|
||||
|
||||
return sanitizeHtml(html, {
|
||||
...options,
|
||||
allowedTags: [
|
||||
...allowedTags,
|
||||
"a",
|
||||
"abbr",
|
||||
"address",
|
||||
"article",
|
||||
"aside",
|
||||
"b",
|
||||
"bdi",
|
||||
"bdo",
|
||||
"blockquote",
|
||||
"br",
|
||||
"caption",
|
||||
"cite",
|
||||
"code",
|
||||
"col",
|
||||
"colgroup",
|
||||
"data",
|
||||
"dd",
|
||||
"dfn",
|
||||
"div",
|
||||
"dl",
|
||||
"dt",
|
||||
"em",
|
||||
"figcaption",
|
||||
"figure",
|
||||
"footer",
|
||||
"h1",
|
||||
"h2",
|
||||
"h3",
|
||||
"h4",
|
||||
"h5",
|
||||
"h6",
|
||||
"header",
|
||||
"hgroup",
|
||||
"hr",
|
||||
"i",
|
||||
"img",
|
||||
"kbd",
|
||||
"li",
|
||||
"main",
|
||||
"main",
|
||||
"mark",
|
||||
"nav",
|
||||
"ol",
|
||||
"p",
|
||||
"pre",
|
||||
"q",
|
||||
"rb",
|
||||
"rp",
|
||||
"rt",
|
||||
"rtc",
|
||||
"ruby",
|
||||
"s",
|
||||
"samp",
|
||||
"section",
|
||||
"small",
|
||||
"span",
|
||||
"strong",
|
||||
"sub",
|
||||
"sup",
|
||||
"table",
|
||||
"tbody",
|
||||
"td",
|
||||
"tfoot",
|
||||
"th",
|
||||
"thead",
|
||||
"time",
|
||||
"tr",
|
||||
"u",
|
||||
"ul",
|
||||
"var",
|
||||
"wbr",
|
||||
],
|
||||
allowedAttributes: {
|
||||
...options?.allowedAttributes,
|
||||
"*": ["class", "style"],
|
||||
a: ["href", "target"],
|
||||
img: ["src", "alt"],
|
||||
},
|
||||
allowedStyles: {
|
||||
...options?.allowedStyles,
|
||||
"*": { "text-align": [/^left$/, /^right$/, /^center$/, /^justify$/] },
|
||||
},
|
||||
});
|
||||
};
|
||||
|
||||
53
package.json
53
package.json
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@reactive-resume/source",
|
||||
"description": "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume.",
|
||||
"version": "4.4.0",
|
||||
"version": "4.4.4",
|
||||
"license": "MIT",
|
||||
"private": true,
|
||||
"author": {
|
||||
@ -21,8 +21,9 @@
|
||||
"prestart": "pnpm prisma:migrate",
|
||||
"start": "node dist/apps/server/main",
|
||||
"lint": "nx run-many -t lint",
|
||||
"format:check": "pnpm exec prettier -c --log-level error .",
|
||||
"format:write": "pnpm exec prettier -w --log-level error .",
|
||||
"lint:fix": "nx run-many -t lint --fix",
|
||||
"format": "pnpm exec prettier -c --log-level error .",
|
||||
"format:fix": "pnpm exec prettier -w --log-level error .",
|
||||
"crowdin:sync": "crowdin push && crowdin pull",
|
||||
"prisma:generate": "pnpm exec prisma generate",
|
||||
"prisma:migrate": "pnpm exec prisma migrate deploy",
|
||||
@ -51,13 +52,13 @@
|
||||
"@nx/workspace": "^19.8.14",
|
||||
"@swc-node/register": "^1.10.9",
|
||||
"@swc/cli": "^0.4.0",
|
||||
"@swc/core": "^1.7.22",
|
||||
"@swc/core": "^1.10.12",
|
||||
"@tailwindcss/container-queries": "^0.1.1",
|
||||
"@tailwindcss/forms": "^0.5.10",
|
||||
"@tailwindcss/typography": "^0.5.16",
|
||||
"@tanstack/eslint-plugin-query": "^5.64.2",
|
||||
"@tanstack/eslint-plugin-query": "^5.65.0",
|
||||
"@testing-library/react": "^16.2.0",
|
||||
"@tiptap/core": "^2.11.3",
|
||||
"@tiptap/core": "^2.11.4",
|
||||
"@types/async-retry": "^1.4.9",
|
||||
"@types/bcryptjs": "^2.4.6",
|
||||
"@types/cookie-parser": "^1.4.8",
|
||||
@ -69,7 +70,7 @@
|
||||
"@types/lodash.get": "^4.4.9",
|
||||
"@types/lodash.set": "^4.3.9",
|
||||
"@types/multer": "^1.4.12",
|
||||
"@types/node": "^22.10.10",
|
||||
"@types/node": "^22.12.0",
|
||||
"@types/nodemailer": "^6.4.17",
|
||||
"@types/papaparse": "^5.3.15",
|
||||
"@types/passport": "^1.0.17",
|
||||
@ -82,16 +83,17 @@
|
||||
"@types/react-dom": "^18.3.5",
|
||||
"@types/react-is": "^18.3.1",
|
||||
"@types/retry": "^0.12.5",
|
||||
"@types/sanitize-html": "^2.13.0",
|
||||
"@types/webfontloader": "^1.6.38",
|
||||
"@typescript-eslint/eslint-plugin": "^8.21.0",
|
||||
"@typescript-eslint/parser": "^8.21.0",
|
||||
"@typescript-eslint/eslint-plugin": "^8.22.0",
|
||||
"@typescript-eslint/parser": "^8.22.0",
|
||||
"@vitejs/plugin-react": "^4.3.4",
|
||||
"@vitejs/plugin-react-swc": "^3.7.2",
|
||||
"@vitest/coverage-v8": "^2.1.8",
|
||||
"@vitest/ui": "^2.1.8",
|
||||
"autoprefixer": "^10.4.20",
|
||||
"babel-plugin-macros": "^3.1.0",
|
||||
"eslint": "^8.57.0",
|
||||
"eslint": "^8.57.1",
|
||||
"eslint-config-prettier": "^9.1.0",
|
||||
"eslint-plugin-import": "^2.31.0",
|
||||
"eslint-plugin-jsx-a11y": "^6.10.2",
|
||||
@ -144,7 +146,6 @@
|
||||
"@nestjs/swagger": "^7.4.2",
|
||||
"@nestjs/terminus": "^10.3.0",
|
||||
"@paralleldrive/cuid2": "^2.2.2",
|
||||
"@pdf-lib/fontkit": "^1.1.1",
|
||||
"@phosphor-icons/react": "^2.1.7",
|
||||
"@prisma/client": "^5.22.0",
|
||||
"@radix-ui/react-accordion": "^1.2.2",
|
||||
@ -173,15 +174,15 @@
|
||||
"@radix-ui/react-visually-hidden": "^1.1.1",
|
||||
"@sindresorhus/slugify": "^2.2.1",
|
||||
"@swc/helpers": "^0.5.15",
|
||||
"@tanstack/react-query": "^5.64.2",
|
||||
"@tiptap/extension-highlight": "^2.11.3",
|
||||
"@tiptap/extension-image": "^2.11.3",
|
||||
"@tiptap/extension-link": "^2.11.3",
|
||||
"@tiptap/extension-text-align": "^2.11.3",
|
||||
"@tiptap/extension-underline": "^2.11.3",
|
||||
"@tiptap/pm": "^2.11.3",
|
||||
"@tiptap/react": "^2.11.3",
|
||||
"@tiptap/starter-kit": "^2.11.3",
|
||||
"@tanstack/react-query": "^5.65.1",
|
||||
"@tiptap/extension-highlight": "^2.11.4",
|
||||
"@tiptap/extension-image": "^2.11.4",
|
||||
"@tiptap/extension-link": "^2.11.4",
|
||||
"@tiptap/extension-text-align": "^2.11.4",
|
||||
"@tiptap/extension-underline": "^2.11.4",
|
||||
"@tiptap/pm": "^2.11.4",
|
||||
"@tiptap/react": "^2.11.4",
|
||||
"@tiptap/starter-kit": "^2.11.4",
|
||||
"@types/passport-jwt": "^4.0.1",
|
||||
"async-retry": "^1.3.3",
|
||||
"axios": "^1.7.9",
|
||||
@ -209,9 +210,9 @@
|
||||
"nestjs-prisma": "^0.24.0",
|
||||
"nestjs-zod": "^3.0.0",
|
||||
"nodemailer": "^6.10.0",
|
||||
"openai": "^4.80.1",
|
||||
"openai": "^4.81.0",
|
||||
"otplib": "^12.0.1",
|
||||
"papaparse": "^5.5.1",
|
||||
"papaparse": "^5.5.2",
|
||||
"passport": "^0.7.0",
|
||||
"passport-github2": "^0.1.12",
|
||||
"passport-google-oauth20": "^2.0.0",
|
||||
@ -228,13 +229,14 @@
|
||||
"react-dom": "^18.3.1",
|
||||
"react-helmet-async": "^2.0.5",
|
||||
"react-hook-form": "^7.54.2",
|
||||
"react-parallax-tilt": "^1.7.274",
|
||||
"react-parallax-tilt": "^1.7.276",
|
||||
"react-resizable-panels": "^2.1.7",
|
||||
"react-router": "^7.1.3",
|
||||
"react-router": "^7.1.4",
|
||||
"react-simple-code-editor": "^0.14.1",
|
||||
"react-zoom-pan-pinch": "^3.6.1",
|
||||
"reflect-metadata": "^0.2.2",
|
||||
"rxjs": "^7.8.1",
|
||||
"sanitize-html": "^2.14.0",
|
||||
"sharp": "^0.33.5",
|
||||
"tailwind-merge": "^2.6.0",
|
||||
"tslib": "^2.8.1",
|
||||
@ -248,9 +250,8 @@
|
||||
"zundo": "^2.3.0",
|
||||
"zustand": "^4.5.6"
|
||||
},
|
||||
"packageManager": "pnpm@9.15.4",
|
||||
"engines": {
|
||||
"node": ">=20.13.1"
|
||||
"node": ">=22.13.1"
|
||||
},
|
||||
"prisma": {
|
||||
"schema": "tools/prisma/schema.prisma"
|
||||
|
||||
6950
pnpm-lock.yaml
generated
6950
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@ -52,16 +52,16 @@ services:
|
||||
|
||||
# Chrome Browser (for printing and previews)
|
||||
chrome:
|
||||
image: ghcr.io/browserless/chromium:v2.18.0 # Upgrading to newer versions causes issues
|
||||
image: ghcr.io/browserless/chromium:latest
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- ${CHROME_PORT:-8080}:3000
|
||||
environment:
|
||||
TIMEOUT: 10000
|
||||
CONCURRENT: 10
|
||||
HEALTH: "true"
|
||||
TOKEN: ${CHROME_TOKEN:-chrome_token}
|
||||
EXIT_ON_HEALTH_FAILURE: "true"
|
||||
PRE_REQUEST_HEALTH_CHECK: "true"
|
||||
PROXY_HOST: "localhost"
|
||||
PROXY_PORT: ${CHROME_PORT:-8080}
|
||||
PROXY_SSL: "false"
|
||||
|
||||
volumes:
|
||||
minio_data:
|
||||
|
||||
@ -39,14 +39,14 @@ services:
|
||||
|
||||
# Chrome Browser (for printing and previews)
|
||||
chrome:
|
||||
image: ghcr.io/browserless/chromium:v2.18.0 # Upgrading to newer versions causes issues
|
||||
image: ghcr.io/browserless/chromium:latest
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
TIMEOUT: 10000
|
||||
CONCURRENT: 10
|
||||
HEALTH: "true"
|
||||
TOKEN: chrome_token
|
||||
EXIT_ON_HEALTH_FAILURE: "true"
|
||||
PRE_REQUEST_HEALTH_CHECK: "true"
|
||||
PROXY_HOST: "printer.example.com"
|
||||
PROXY_PORT: 443
|
||||
PROXY_SSL: "true"
|
||||
|
||||
app:
|
||||
image: amruthpillai/reactive-resume:latest
|
||||
|
||||
@ -34,16 +34,16 @@ services:
|
||||
|
||||
# Chrome Browser (for printing and previews)
|
||||
chrome:
|
||||
image: ghcr.io/browserless/chromium:v2.18.0 # Upgrading to newer versions causes issues
|
||||
image: ghcr.io/browserless/chromium:latest
|
||||
restart: unless-stopped
|
||||
extra_hosts:
|
||||
- "host.docker.internal:host-gateway"
|
||||
environment:
|
||||
TIMEOUT: 10000
|
||||
CONCURRENT: 10
|
||||
HEALTH: "true"
|
||||
TOKEN: chrome_token
|
||||
EXIT_ON_HEALTH_FAILURE: "true"
|
||||
PRE_REQUEST_HEALTH_CHECK: "true"
|
||||
PROXY_HOST: "chrome"
|
||||
PROXY_PORT: 3000
|
||||
PROXY_SSL: "false"
|
||||
|
||||
app:
|
||||
image: amruthpillai/reactive-resume:latest
|
||||
|
||||
@ -50,15 +50,15 @@ services:
|
||||
|
||||
# Chrome Browser (for printing and previews)
|
||||
chrome:
|
||||
image: ghcr.io/browserless/chromium:v2.18.0 # Upgrading to newer versions causes issues
|
||||
image: ghcr.io/browserless/chromium:latest
|
||||
networks:
|
||||
- reactive_resume_network
|
||||
environment:
|
||||
TIMEOUT: 10000
|
||||
CONCURRENT: 10
|
||||
HEALTH: "true"
|
||||
TOKEN: chrome_token
|
||||
EXIT_ON_HEALTH_FAILURE: "true"
|
||||
PRE_REQUEST_HEALTH_CHECK: "true"
|
||||
PROXY_HOST: "printer.example.com"
|
||||
PROXY_PORT: 443
|
||||
PROXY_SSL: "true"
|
||||
deploy:
|
||||
replicas: 2
|
||||
restart_policy:
|
||||
|
||||
@ -41,14 +41,14 @@ services:
|
||||
|
||||
# Chrome Browser (for printing and previews)
|
||||
chrome:
|
||||
image: ghcr.io/browserless/chromium:v2.18.0 # Upgrading to newer versions causes issues
|
||||
image: ghcr.io/browserless/chromium:latest
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
TIMEOUT: 10000
|
||||
CONCURRENT: 10
|
||||
HEALTH: "true"
|
||||
TOKEN: chrome_token
|
||||
EXIT_ON_HEALTH_FAILURE: "true"
|
||||
PRE_REQUEST_HEALTH_CHECK: "true"
|
||||
PROXY_HOST: "printer.example.com"
|
||||
PROXY_PORT: 443
|
||||
PROXY_SSL: "true"
|
||||
labels:
|
||||
- traefik.enable=true
|
||||
- traefik.http.routers.printer.rule=Host(`printer.example.com`)
|
||||
|
||||
@ -39,14 +39,14 @@ services:
|
||||
|
||||
# Chrome Browser (for printing and previews)
|
||||
chrome:
|
||||
image: ghcr.io/browserless/chromium:v2.18.0 # Upgrading to newer versions causes issues
|
||||
image: ghcr.io/browserless/chromium:latest
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
TIMEOUT: 10000
|
||||
CONCURRENT: 10
|
||||
HEALTH: "true"
|
||||
TOKEN: chrome_token
|
||||
EXIT_ON_HEALTH_FAILURE: "true"
|
||||
PRE_REQUEST_HEALTH_CHECK: "true"
|
||||
PROXY_HOST: "printer.example.com"
|
||||
PROXY_PORT: 80
|
||||
PROXY_SSL: "false"
|
||||
labels:
|
||||
- traefik.enable=true
|
||||
- traefik.http.routers.printer.rule=Host(`printer.example.com`)
|
||||
|
||||
Reference in New Issue
Block a user