Compare commits
106 Commits
v4.4.0
...
1296e6bd45
| Author | SHA1 | Date | |
|---|---|---|---|
| 1296e6bd45 | |||
| d883edb51f | |||
| 6fcb7a4845 | |||
| 213f96b189 | |||
| e8d6d4ad3a | |||
| 87370cfdf0 | |||
| 112a644927 | |||
| 2977e3528a | |||
| 21fd079f94 | |||
| 9bdc61b50d | |||
| 2de24d5b55 | |||
| 1cba9d0fb9 | |||
| 8f532bf4a6 | |||
| 4efdabd475 | |||
| 8803101dcd | |||
| a4a9381b65 | |||
| 618d42019e | |||
| d9b56cfb5b | |||
| 5624dc4f83 | |||
| 313fe47050 | |||
| 772332661f | |||
| 4c6b512455 | |||
| cc576f5220 | |||
| b193329c23 | |||
| 8e1459f092 | |||
| e19b55ff65 | |||
| 687161df98 | |||
| c54cfebf5f | |||
| e8d0ed1370 | |||
| 87a17a5196 | |||
| d19df3389c | |||
| faa4c606e5 | |||
| 210fbd18ac | |||
| 3ba0141ab8 | |||
| 279a2ddaeb | |||
| ea7ee3dd7a | |||
| a55bea1e07 | |||
| ed5cb7f17b | |||
| c7f8daaff3 | |||
| ac48ad78db | |||
| c18e18cce8 | |||
| 65ba13e503 | |||
| 44ec9e1d43 | |||
| 7c53949741 | |||
| 6d37769e38 | |||
| c525f8d2cc | |||
| 04dfcae898 | |||
| 9b5a99a8ca | |||
| c44f1c5282 | |||
| 24dfa99034 | |||
| 35c0177729 | |||
| 098d67cd8c | |||
| d8e0ced54c | |||
| 8e9b409bae | |||
| b995a6b6c0 | |||
| 3e76a52306 | |||
| 4e91a2e2ef | |||
| 4314912d5a | |||
| 93da5157ff | |||
| cc7bc4ffb8 | |||
| 78eefe9da1 | |||
| 7f7c4acdcb | |||
| a23dbfa3df | |||
| 249104e7a3 | |||
| 76bbe7de6b | |||
| 1994dde1f2 | |||
| a8626e400d | |||
| f5136da681 | |||
| 8efc243e43 | |||
| cd21860535 | |||
| 7054623678 | |||
| 37781d51f3 | |||
| ec4e43d4fc | |||
| 1d4529128f | |||
| 60ed3e2a8d | |||
| 5b67e7c0b4 | |||
| 1399d3c44b | |||
| eb543cf32d | |||
| 9c6d9833d6 | |||
| f50cbd71b7 | |||
| 3d5b3db321 | |||
| e438602773 | |||
| f42b29e4ac | |||
| 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
@ -39,7 +39,7 @@ jobs:
|
|||||||
run: pnpm run lint
|
run: pnpm run lint
|
||||||
|
|
||||||
- name: Format
|
- name: Format
|
||||||
run: pnpm run format:check
|
run: pnpm run format
|
||||||
|
|
||||||
- name: Test
|
- name: Test
|
||||||
run: pnpm run test
|
run: pnpm run test
|
||||||
|
|||||||
1
.gitignore
vendored
@ -40,6 +40,7 @@ Thumbs.db
|
|||||||
# Generated Files
|
# Generated Files
|
||||||
.nx
|
.nx
|
||||||
.swc
|
.swc
|
||||||
|
.turbo
|
||||||
fly.toml
|
fly.toml
|
||||||
stats.html
|
stats.html
|
||||||
|
|
||||||
|
|||||||
@ -5,7 +5,9 @@
|
|||||||
"install": "always",
|
"install": "always",
|
||||||
"packageManager": "pnpm",
|
"packageManager": "pnpm",
|
||||||
"reject": [
|
"reject": [
|
||||||
|
"nx",
|
||||||
"eslint",
|
"eslint",
|
||||||
|
"@nx/*",
|
||||||
"@swc/*",
|
"@swc/*",
|
||||||
"@swc-node/*",
|
"@swc-node/*",
|
||||||
"@reactive-resume/*",
|
"@reactive-resume/*",
|
||||||
|
|||||||
2
.vscode/extensions.json
vendored
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"recommendations": ["nrwl.angular-console", "esbenp.prettier-vscode", "dbaeumer.vscode-eslint"]
|
"recommendations": ["esbenp.prettier-vscode", "dbaeumer.vscode-eslint"]
|
||||||
}
|
}
|
||||||
|
|||||||
6
.vscode/settings.json
vendored
@ -1,9 +1,9 @@
|
|||||||
{
|
{
|
||||||
"css.validate": false,
|
"css.validate": false,
|
||||||
"vitest.disableWorkspaceWarning": true,
|
"i18n-ally.localesPaths": ["apps/client/src/locales"],
|
||||||
"typescript.tsdk": "node_modules/typescript/lib",
|
|
||||||
"tailwindCSS.experimental.classRegex": [
|
"tailwindCSS.experimental.classRegex": [
|
||||||
["cva\\(([^)]*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"],
|
["cva\\(([^)]*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"],
|
||||||
["cn\\(([^)]*)\\)", "(?:'|\"|`)([^']*)(?:'|\"|`)"]
|
["cn\\(([^)]*)\\)", "(?:'|\"|`)([^']*)(?:'|\"|`)"]
|
||||||
]
|
],
|
||||||
|
"typescript.tsdk": "node_modules/typescript/lib"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -7,7 +7,7 @@ ARG NX_CLOUD_ACCESS_TOKEN
|
|||||||
ENV PNPM_HOME="/pnpm"
|
ENV PNPM_HOME="/pnpm"
|
||||||
ENV PATH="$PNPM_HOME:$PATH"
|
ENV PATH="$PNPM_HOME:$PATH"
|
||||||
|
|
||||||
RUN corepack enable pnpm && corepack prepare pnpm --activate
|
RUN corepack enable
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
|
|||||||
35
README.md
@ -1,4 +1,15 @@
|
|||||||

|
<div align="center" markdown="1">
|
||||||
|
<a href="https://go.warp.dev/Reactive-Resume">
|
||||||
|
<img alt="Warp Sponsorship" width="400" src="https://github.com/warpdotdev/brand-assets/blob/main/Github/Sponsor/Warp-Github-LG-03.png?raw=true" />
|
||||||
|
</a>
|
||||||
|
|
||||||
|
### [Warp, built for coding with multiple AI agents.](https://go.warp.dev/Reactive-Resume)
|
||||||
|
|
||||||
|
[Available for MacOS, Linux, & Windows](https://go.warp.dev/Reactive-Resume)<br>
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
<img alt="Reactive Resume" width="800" src="https://i.imgur.com/FFc4nyZ.jpg" />
|
||||||
|
|
||||||

|

|
||||||
[](https://hub.docker.com/repository/docker/amruthpillai/reactive-resume)
|
[](https://hub.docker.com/repository/docker/amruthpillai/reactive-resume)
|
||||||
@ -12,6 +23,8 @@ A free and open-source resume builder that simplifies the process of creating, u
|
|||||||
|
|
||||||
### [Go to App](https://rxresu.me/) | [Docs](https://docs.rxresu.me/)
|
### [Go to App](https://rxresu.me/) | [Docs](https://docs.rxresu.me/)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
## Description
|
## Description
|
||||||
|
|
||||||
Reactive Resume is a free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume. With zero user tracking or advertising, your privacy is a top priority. The platform is extremely user-friendly and can be self-hosted in less than 30 seconds if you wish to own your data completely.
|
Reactive Resume is a free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume. With zero user tracking or advertising, your privacy is a top priority. The platform is extremely user-friendly and can be self-hosted in less than 30 seconds if you wish to own your data completely.
|
||||||
@ -25,16 +38,20 @@ Start creating your standout resume with Reactive Resume today!
|
|||||||
## Templates
|
## Templates
|
||||||
|
|
||||||
| Azurill | Bronzor | Chikorita |
|
| Azurill | Bronzor | Chikorita |
|
||||||
| ------------------------------------------------------------ | ----------------------------------------------------------- | ----------------------------------------------------------- |
|
| ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ------------------------------------------------------------------------- |
|
||||||
| <img src="https://i.imgur.com/jKgo04C.jpeg" width="200px" /> | <img src="https://i.imgur.com/DFNQZP2.jpg" width="200px" /> | <img src="https://i.imgur.com/Dwv8Y7f.jpg" width="200px" /> |
|
| <img src="./apps/client/public/templates/jpg/azurill.jpg" width="200px" /> | <img src="./apps/client/public/templates/jpg/bronzor.jpg" width="200px" /> | <img src="./apps/client/public/templates/jpg/chikorita.jpg" width="200px" /> |
|
||||||
|
|
||||||
| Ditto | Kakuna | Nosepass |
|
| Ditto | Gengar | Glalie |
|
||||||
| ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- |
|
| -------------------------------------------------------------------- | ---------------------------------------------------------------------- | ---------------------------------------------------------------------- |
|
||||||
| <img src="https://i.imgur.com/6c5lASL.jpg" width="200px" /> | <img src="https://i.imgur.com/268ML3t.jpg" width="200px" /> | <img src="https://i.imgur.com/npRLsPS.jpg" width="200px" /> |
|
| <img src="./apps/client/public/templates/jpg/ditto.jpg" width="200px" /> | <img src="./apps/client/public/templates/jpg/gengar.jpg" width="200px" /> | <img src="./apps/client/public/templates/jpg/glalie.jpg" width="200px" /> |
|
||||||
|
|
||||||
|
| Kakuna | Leafish | Nosepass |
|
||||||
|
| ---------------------------------------------------------------------- | ----------------------------------------------------------------------- | ------------------------------------------------------------------------ |
|
||||||
|
| <img src="./apps/client/public/templates/jpg/kakuna.jpg" width="200px" /> | <img src="./apps/client/public/templates/jpg/leafish.jpg" width="200px" /> | <img src="./apps/client/public/templates/jpg/nosepass.jpg" width="200px" /> |
|
||||||
|
|
||||||
| Onyx | Pikachu | Rhyhorn |
|
| Onyx | Pikachu | Rhyhorn |
|
||||||
| ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- |
|
| ------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- |
|
||||||
| <img src="https://i.imgur.com/cxplXOW.jpg" width="200px" /> | <img src="https://i.imgur.com/Y9f7qsh.jpg" width="200px" /> | <img src="https://i.imgur.com/h4kQxy2.jpg" width="200px" /> |
|
| <img src="./apps/client/public/templates/jpg/onyx.jpg" width="200px" /> | <img src="./apps/client/public/templates/jpg/pikachu.jpg" width="200px" /> | <img src="./apps/client/public/templates/jpg/rhyhorn.jpg" width="200px" /> |
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
@ -93,7 +110,7 @@ _By the community, for the community._
|
|||||||
A passion project by [Amruth Pillai](https://www.amruthpillai.com/)
|
A passion project by [Amruth Pillai](https://www.amruthpillai.com/)
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
<a href="https://www.digitalocean.com/?utm_medium=opensource&utm_source=Reactive-Resume">
|
<a href="https://m.do.co/c/ceae1fff245e">
|
||||||
<img src="https://opensource.nyc3.cdn.digitaloceanspaces.com/attribution/assets/PoweredByDO/DO_Powered_by_Badge_blue.svg" width="200px">
|
<img src="https://opensource.nyc3.cdn.digitaloceanspaces.com/attribution/assets/PoweredByDO/DO_Powered_by_Badge_blue.svg" width="200px">
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
|
|||||||
@ -39,6 +39,6 @@
|
|||||||
<script type="module" src="/src/main.tsx"></script>
|
<script type="module" src="/src/main.tsx"></script>
|
||||||
|
|
||||||
<!-- Phosphor Icons -->
|
<!-- Phosphor Icons -->
|
||||||
<script src="https://unpkg.com/@phosphor-icons/web"></script>
|
<script src="https://cdn.jsdelivr.net/npm/@phosphor-icons/web"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -5,7 +5,7 @@ type BrandIconProps = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export const BrandIcon = forwardRef<HTMLImageElement, BrandIconProps>(({ slug }, ref) => {
|
export const BrandIcon = forwardRef<HTMLImageElement, BrandIconProps>(({ slug }, ref) => {
|
||||||
if (slug === "linkedin") {
|
if (slug.toLowerCase() === "linkedin") {
|
||||||
return (
|
return (
|
||||||
<img
|
<img
|
||||||
ref={ref}
|
ref={ref}
|
||||||
|
|||||||
@ -14,8 +14,8 @@ export const Picture = ({ className }: PictureProps) => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<img
|
<img
|
||||||
src={picture.url}
|
|
||||||
alt="Profile"
|
alt="Profile"
|
||||||
|
src={picture.url}
|
||||||
className={cn(
|
className={cn(
|
||||||
"relative z-20 object-cover",
|
"relative z-20 object-cover",
|
||||||
picture.effects.border && "border-primary",
|
picture.effects.border && "border-primary",
|
||||||
|
|||||||
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>
|
<Helmet>
|
||||||
<title>{name} | Reactive Resume</title>
|
<title>{name} | Reactive Resume</title>
|
||||||
|
{metadata.css.visible && (
|
||||||
{metadata.css.visible && <style lang="css">{metadata.css.value}</style>}
|
<style id="custom-css" lang="css">
|
||||||
|
{metadata.css.value}
|
||||||
|
</style>
|
||||||
|
)}
|
||||||
</Helmet>
|
</Helmet>
|
||||||
|
|
||||||
<Outlet />
|
<Outlet />
|
||||||
|
|||||||
@ -1,6 +1,8 @@
|
|||||||
import { useEffect } from "react";
|
import { useEffect } from "react";
|
||||||
|
import { HelmetProvider } from "react-helmet-async";
|
||||||
import { Outlet } from "react-router";
|
import { Outlet } from "react-router";
|
||||||
|
|
||||||
|
import { helmetContext } from "../constants/helmet";
|
||||||
import { useArtboardStore } from "../store/artboard";
|
import { useArtboardStore } from "../store/artboard";
|
||||||
|
|
||||||
export const Providers = () => {
|
export const Providers = () => {
|
||||||
@ -10,35 +12,28 @@ export const Providers = () => {
|
|||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
const handleMessage = (event: MessageEvent) => {
|
const handleMessage = (event: MessageEvent) => {
|
||||||
if (event.origin !== window.location.origin) return;
|
if (event.origin !== window.location.origin) return;
|
||||||
|
|
||||||
if (event.data.type === "SET_RESUME") setResume(event.data.payload);
|
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");
|
window.addEventListener("message", handleMessage, false);
|
||||||
if (resumeData) {
|
|
||||||
setResume(JSON.parse(resumeData));
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
window.addEventListener("message", handleMessage);
|
|
||||||
|
|
||||||
return () => {
|
return () => {
|
||||||
window.removeEventListener("message", handleMessage);
|
window.removeEventListener("message", handleMessage, false);
|
||||||
};
|
};
|
||||||
}, [setResume]);
|
}, []);
|
||||||
|
|
||||||
// Only for testing, in production this will be fetched from window.postMessage
|
useEffect(() => {
|
||||||
// useEffect(() => {
|
const resumeData = window.localStorage.getItem("resume");
|
||||||
// setResume(sampleResume);
|
|
||||||
// }, [setResume]);
|
if (resumeData) setResume(JSON.parse(resumeData));
|
||||||
|
}, [window.localStorage.getItem("resume")]);
|
||||||
|
|
||||||
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
|
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
|
||||||
if (!resume) return null;
|
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";
|
import { Providers } from "../providers";
|
||||||
|
|
||||||
export const routes = createRoutesFromChildren(
|
export const routes = createRoutesFromChildren(
|
||||||
<Route element={<Providers />} hydrateFallbackElement={<div>Loading...</div>}>
|
<Route element={<Providers />}>
|
||||||
<Route path="artboard" element={<ArtboardPage />}>
|
<Route path="artboard" element={<ArtboardPage />}>
|
||||||
<Route path="builder" element={<BuilderLayout />} />
|
<Route path="builder" element={<BuilderLayout />} />
|
||||||
<Route path="preview" element={<PreviewLayout />} />
|
<Route path="preview" element={<PreviewLayout />} />
|
||||||
|
|||||||
@ -8,6 +8,10 @@
|
|||||||
@apply border-current;
|
@apply border-current;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
#root {
|
#root {
|
||||||
@apply antialiased;
|
@apply antialiased;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -15,7 +15,7 @@ import type {
|
|||||||
URL,
|
URL,
|
||||||
} from "@reactive-resume/schema";
|
} from "@reactive-resume/schema";
|
||||||
import { Education, Experience, Volunteer } 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 get from "lodash.get";
|
||||||
import React, { Fragment } from "react";
|
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 className="absolute left-[-4.5px] top-[8px] hidden size-[8px] rounded-full bg-primary group-[.main]:block" />
|
||||||
|
|
||||||
<div
|
<div
|
||||||
dangerouslySetInnerHTML={{ __html: section.content }}
|
dangerouslySetInnerHTML={{ __html: sanitize(section.content) }}
|
||||||
className="wysiwyg"
|
|
||||||
style={{ columns: section.columns }}
|
style={{ columns: section.columns }}
|
||||||
|
className="wysiwyg"
|
||||||
/>
|
/>
|
||||||
</main>
|
</main>
|
||||||
</section>
|
</section>
|
||||||
@ -186,7 +186,7 @@ const Section = <T,>({
|
|||||||
summaryKey,
|
summaryKey,
|
||||||
keywordsKey,
|
keywordsKey,
|
||||||
}: SectionProps<T>) => {
|
}: SectionProps<T>) => {
|
||||||
if (!section.visible || section.items.length === 0) return null;
|
if (!section.visible || section.items.filter((item) => item.visible).length === 0) return null;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<section id={section.id} className="grid">
|
<section id={section.id} className="grid">
|
||||||
@ -224,7 +224,10 @@ const Section = <T,>({
|
|||||||
<div>{children?.(item as T)}</div>
|
<div>{children?.(item as T)}</div>
|
||||||
|
|
||||||
{summary !== undefined && !isEmptyString(summary) && (
|
{summary !== undefined && !isEmptyString(summary) && (
|
||||||
<div dangerouslySetInnerHTML={{ __html: summary }} className="wysiwyg" />
|
<div
|
||||||
|
dangerouslySetInnerHTML={{ __html: sanitize(summary) }}
|
||||||
|
className="wysiwyg"
|
||||||
|
/>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{level !== undefined && level > 0 && <Rating level={level} />}
|
{level !== undefined && level > 0 && <Rating level={level} />}
|
||||||
|
|||||||
@ -15,7 +15,7 @@ import type {
|
|||||||
URL,
|
URL,
|
||||||
} from "@reactive-resume/schema";
|
} from "@reactive-resume/schema";
|
||||||
import { Education, Experience, Volunteer } 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 get from "lodash.get";
|
||||||
import { Fragment } from "react";
|
import { Fragment } from "react";
|
||||||
|
|
||||||
@ -89,9 +89,9 @@ const Summary = () => {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
dangerouslySetInnerHTML={{ __html: section.content }}
|
dangerouslySetInnerHTML={{ __html: sanitize(section.content) }}
|
||||||
className="wysiwyg col-span-4"
|
|
||||||
style={{ columns: section.columns }}
|
style={{ columns: section.columns }}
|
||||||
|
className="wysiwyg col-span-4"
|
||||||
/>
|
/>
|
||||||
</section>
|
</section>
|
||||||
);
|
);
|
||||||
@ -177,7 +177,7 @@ const Section = <T,>({
|
|||||||
summaryKey,
|
summaryKey,
|
||||||
keywordsKey,
|
keywordsKey,
|
||||||
}: SectionProps<T>) => {
|
}: SectionProps<T>) => {
|
||||||
if (!section.visible || section.items.length === 0) return null;
|
if (!section.visible || section.items.filter((item) => item.visible).length === 0) return null;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<section id={section.id} className="grid grid-cols-5 border-t pt-2.5">
|
<section id={section.id} className="grid grid-cols-5 border-t pt-2.5">
|
||||||
@ -205,7 +205,10 @@ const Section = <T,>({
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{summary !== undefined && !isEmptyString(summary) && (
|
{summary !== undefined && !isEmptyString(summary) && (
|
||||||
<div dangerouslySetInnerHTML={{ __html: summary }} className="wysiwyg" />
|
<div
|
||||||
|
dangerouslySetInnerHTML={{ __html: sanitize(summary) }}
|
||||||
|
className="wysiwyg"
|
||||||
|
/>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{level !== undefined && level > 0 && <Rating level={level} />}
|
{level !== undefined && level > 0 && <Rating level={level} />}
|
||||||
|
|||||||
@ -15,7 +15,7 @@ import type {
|
|||||||
URL,
|
URL,
|
||||||
} from "@reactive-resume/schema";
|
} from "@reactive-resume/schema";
|
||||||
import { Education, Experience, Volunteer } 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 get from "lodash.get";
|
||||||
import { Fragment } from "react";
|
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>
|
<h4 className="mb-2 border-b pb-0.5 text-sm font-bold">{section.name}</h4>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
dangerouslySetInnerHTML={{ __html: section.content }}
|
dangerouslySetInnerHTML={{ __html: sanitize(section.content) }}
|
||||||
className="wysiwyg"
|
|
||||||
style={{ columns: section.columns }}
|
style={{ columns: section.columns }}
|
||||||
|
className="wysiwyg"
|
||||||
/>
|
/>
|
||||||
</section>
|
</section>
|
||||||
);
|
);
|
||||||
@ -182,7 +182,7 @@ const Section = <T,>({
|
|||||||
summaryKey,
|
summaryKey,
|
||||||
keywordsKey,
|
keywordsKey,
|
||||||
}: SectionProps<T>) => {
|
}: SectionProps<T>) => {
|
||||||
if (!section.visible || section.items.length === 0) return null;
|
if (!section.visible || section.items.filter((item) => item.visible).length === 0) return null;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<section id={section.id} className="grid">
|
<section id={section.id} className="grid">
|
||||||
@ -209,7 +209,7 @@ const Section = <T,>({
|
|||||||
|
|
||||||
{summary !== undefined && !isEmptyString(summary) && (
|
{summary !== undefined && !isEmptyString(summary) && (
|
||||||
<div
|
<div
|
||||||
dangerouslySetInnerHTML={{ __html: summary }}
|
dangerouslySetInnerHTML={{ __html: sanitize(summary) }}
|
||||||
className="wysiwyg group-[.sidebar]:prose-invert"
|
className="wysiwyg group-[.sidebar]:prose-invert"
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
|
|||||||
@ -15,7 +15,7 @@ import type {
|
|||||||
URL,
|
URL,
|
||||||
} from "@reactive-resume/schema";
|
} from "@reactive-resume/schema";
|
||||||
import { Education, Experience, Volunteer } 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 get from "lodash.get";
|
||||||
import { Fragment } from "react";
|
import { Fragment } from "react";
|
||||||
|
|
||||||
@ -109,9 +109,9 @@ const Summary = () => {
|
|||||||
<h4 className="mb-2 text-base font-bold">{section.name}</h4>
|
<h4 className="mb-2 text-base font-bold">{section.name}</h4>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
dangerouslySetInnerHTML={{ __html: section.content }}
|
dangerouslySetInnerHTML={{ __html: sanitize(section.content) }}
|
||||||
className="wysiwyg"
|
|
||||||
style={{ columns: section.columns }}
|
style={{ columns: section.columns }}
|
||||||
|
className="wysiwyg"
|
||||||
/>
|
/>
|
||||||
</section>
|
</section>
|
||||||
);
|
);
|
||||||
@ -197,7 +197,7 @@ const Section = <T,>({
|
|||||||
summaryKey,
|
summaryKey,
|
||||||
keywordsKey,
|
keywordsKey,
|
||||||
}: SectionProps<T>) => {
|
}: SectionProps<T>) => {
|
||||||
if (!section.visible || section.items.length === 0) return null;
|
if (!section.visible || section.items.filter((item) => item.visible).length === 0) return null;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<section id={section.id} className="grid">
|
<section id={section.id} className="grid">
|
||||||
@ -230,7 +230,10 @@ const Section = <T,>({
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{summary !== undefined && !isEmptyString(summary) && (
|
{summary !== undefined && !isEmptyString(summary) && (
|
||||||
<div dangerouslySetInnerHTML={{ __html: summary }} className="wysiwyg" />
|
<div
|
||||||
|
dangerouslySetInnerHTML={{ __html: sanitize(summary) }}
|
||||||
|
className="wysiwyg"
|
||||||
|
/>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{level !== undefined && level > 0 && <Rating level={level} />}
|
{level !== undefined && level > 0 && <Rating level={level} />}
|
||||||
|
|||||||
@ -15,7 +15,7 @@ import type {
|
|||||||
URL,
|
URL,
|
||||||
} from "@reactive-resume/schema";
|
} from "@reactive-resume/schema";
|
||||||
import { Education, Experience, Volunteer } 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 get from "lodash.get";
|
||||||
import { Fragment } from "react";
|
import { Fragment } from "react";
|
||||||
|
|
||||||
@ -89,9 +89,9 @@ const Summary = () => {
|
|||||||
<div className="p-custom space-y-4" style={{ backgroundColor: hexToRgb(primaryColor, 0.2) }}>
|
<div className="p-custom space-y-4" style={{ backgroundColor: hexToRgb(primaryColor, 0.2) }}>
|
||||||
<section id={section.id}>
|
<section id={section.id}>
|
||||||
<div
|
<div
|
||||||
dangerouslySetInnerHTML={{ __html: section.content }}
|
dangerouslySetInnerHTML={{ __html: sanitize(section.content) }}
|
||||||
className="wysiwyg"
|
|
||||||
style={{ columns: section.columns }}
|
style={{ columns: section.columns }}
|
||||||
|
className="wysiwyg"
|
||||||
/>
|
/>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
@ -184,7 +184,7 @@ const Section = <T,>({
|
|||||||
summaryKey,
|
summaryKey,
|
||||||
keywordsKey,
|
keywordsKey,
|
||||||
}: SectionProps<T>) => {
|
}: SectionProps<T>) => {
|
||||||
if (!section.visible || section.items.length === 0) return null;
|
if (!section.visible || section.items.filter((item) => item.visible).length === 0) return null;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<section id={section.id} className="grid">
|
<section id={section.id} className="grid">
|
||||||
@ -210,7 +210,10 @@ const Section = <T,>({
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{summary !== undefined && !isEmptyString(summary) && (
|
{summary !== undefined && !isEmptyString(summary) && (
|
||||||
<div dangerouslySetInnerHTML={{ __html: summary }} className="wysiwyg" />
|
<div
|
||||||
|
dangerouslySetInnerHTML={{ __html: sanitize(summary) }}
|
||||||
|
className="wysiwyg"
|
||||||
|
/>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{level !== undefined && level > 0 && <Rating level={level} />}
|
{level !== undefined && level > 0 && <Rating level={level} />}
|
||||||
@ -528,6 +531,11 @@ const mapSectionToComponent = (section: SectionKey) => {
|
|||||||
case "education": {
|
case "education": {
|
||||||
return <Education />;
|
return <Education />;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
case "summary": {
|
||||||
|
return <Summary />;
|
||||||
|
}
|
||||||
|
|
||||||
case "awards": {
|
case "awards": {
|
||||||
return <Awards />;
|
return <Awards />;
|
||||||
}
|
}
|
||||||
@ -589,8 +597,6 @@ export const Gengar = ({ columns, isFirstPage = false }: TemplateProps) => {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className={cn("main group", sidebar.length > 0 ? "col-span-2" : "col-span-3")}>
|
<div className={cn("main group", sidebar.length > 0 ? "col-span-2" : "col-span-3")}>
|
||||||
{isFirstPage && <Summary />}
|
|
||||||
|
|
||||||
<div className="p-custom space-y-4">
|
<div className="p-custom space-y-4">
|
||||||
{main.map((section) => (
|
{main.map((section) => (
|
||||||
<Fragment key={section}>{mapSectionToComponent(section)}</Fragment>
|
<Fragment key={section}>{mapSectionToComponent(section)}</Fragment>
|
||||||
|
|||||||
@ -15,7 +15,14 @@ import type {
|
|||||||
URL,
|
URL,
|
||||||
} from "@reactive-resume/schema";
|
} from "@reactive-resume/schema";
|
||||||
import { Education, Experience, Volunteer } 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 get from "lodash.get";
|
||||||
import { Fragment } from "react";
|
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>
|
<h4 className="mb-2 border-b pb-0.5 text-sm font-bold">{section.name}</h4>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
dangerouslySetInnerHTML={{ __html: section.content }}
|
dangerouslySetInnerHTML={{ __html: sanitize(section.content) }}
|
||||||
className="wysiwyg"
|
|
||||||
style={{ columns: section.columns }}
|
style={{ columns: section.columns }}
|
||||||
|
className="wysiwyg"
|
||||||
/>
|
/>
|
||||||
</section>
|
</section>
|
||||||
);
|
);
|
||||||
@ -185,7 +192,7 @@ const Section = <T,>({
|
|||||||
summaryKey,
|
summaryKey,
|
||||||
keywordsKey,
|
keywordsKey,
|
||||||
}: SectionProps<T>) => {
|
}: SectionProps<T>) => {
|
||||||
if (!section.visible || section.items.length === 0) return null;
|
if (!section.visible || section.items.filter((item) => item.visible).length === 0) return null;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<section id={section.id} className="grid">
|
<section id={section.id} className="grid">
|
||||||
@ -213,7 +220,10 @@ const Section = <T,>({
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{summary !== undefined && !isEmptyString(summary) && (
|
{summary !== undefined && !isEmptyString(summary) && (
|
||||||
<div dangerouslySetInnerHTML={{ __html: summary }} className="wysiwyg" />
|
<div
|
||||||
|
dangerouslySetInnerHTML={{ __html: sanitize(summary) }}
|
||||||
|
className="wysiwyg"
|
||||||
|
/>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{level !== undefined && level > 0 && <Rating level={level} />}
|
{level !== undefined && level > 0 && <Rating level={level} />}
|
||||||
|
|||||||
@ -14,7 +14,7 @@ import type {
|
|||||||
URL,
|
URL,
|
||||||
} from "@reactive-resume/schema";
|
} from "@reactive-resume/schema";
|
||||||
import { Education, Experience, Volunteer } 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 get from "lodash.get";
|
||||||
import React, { Fragment } from "react";
|
import React, { Fragment } from "react";
|
||||||
|
|
||||||
@ -108,9 +108,9 @@ const Summary = () => {
|
|||||||
</h4>
|
</h4>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
dangerouslySetInnerHTML={{ __html: section.content }}
|
dangerouslySetInnerHTML={{ __html: sanitize(section.content) }}
|
||||||
className="wysiwyg"
|
|
||||||
style={{ columns: section.columns }}
|
style={{ columns: section.columns }}
|
||||||
|
className="wysiwyg"
|
||||||
/>
|
/>
|
||||||
</section>
|
</section>
|
||||||
);
|
);
|
||||||
@ -196,7 +196,7 @@ const Section = <T,>({
|
|||||||
summaryKey,
|
summaryKey,
|
||||||
keywordsKey,
|
keywordsKey,
|
||||||
}: SectionProps<T>) => {
|
}: SectionProps<T>) => {
|
||||||
if (!section.visible || section.items.length === 0) return null;
|
if (!section.visible || section.items.filter((item) => item.visible).length === 0) return null;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<section id={section.id} className="grid">
|
<section id={section.id} className="grid">
|
||||||
@ -221,7 +221,10 @@ const Section = <T,>({
|
|||||||
<div>{children?.(item as T)}</div>
|
<div>{children?.(item as T)}</div>
|
||||||
|
|
||||||
{summary !== undefined && !isEmptyString(summary) && (
|
{summary !== undefined && !isEmptyString(summary) && (
|
||||||
<div dangerouslySetInnerHTML={{ __html: summary }} className="wysiwyg" />
|
<div
|
||||||
|
dangerouslySetInnerHTML={{ __html: sanitize(summary) }}
|
||||||
|
className="wysiwyg"
|
||||||
|
/>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{level !== undefined && level > 0 && <Rating level={level} />}
|
{level !== undefined && level > 0 && <Rating level={level} />}
|
||||||
|
|||||||
@ -14,7 +14,7 @@ import type {
|
|||||||
URL,
|
URL,
|
||||||
} from "@reactive-resume/schema";
|
} from "@reactive-resume/schema";
|
||||||
import { Education, Experience, Volunteer } 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 get from "lodash.get";
|
||||||
import React, { Fragment } from "react";
|
import React, { Fragment } from "react";
|
||||||
|
|
||||||
@ -42,9 +42,9 @@ const Header = () => {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
dangerouslySetInnerHTML={{ __html: section.content }}
|
dangerouslySetInnerHTML={{ __html: sanitize(section.content) }}
|
||||||
className="wysiwyg"
|
|
||||||
style={{ columns: section.columns }}
|
style={{ columns: section.columns }}
|
||||||
|
className="wysiwyg"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -191,7 +191,7 @@ const Section = <T,>({
|
|||||||
summaryKey,
|
summaryKey,
|
||||||
keywordsKey,
|
keywordsKey,
|
||||||
}: SectionProps<T>) => {
|
}: SectionProps<T>) => {
|
||||||
if (!section.visible || section.items.length === 0) return null;
|
if (!section.visible || section.items.filter((item) => item.visible).length === 0) return null;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<section id={section.id} className="grid">
|
<section id={section.id} className="grid">
|
||||||
@ -216,7 +216,10 @@ const Section = <T,>({
|
|||||||
<div>{children?.(item as T)}</div>
|
<div>{children?.(item as T)}</div>
|
||||||
|
|
||||||
{summary !== undefined && !isEmptyString(summary) && (
|
{summary !== undefined && !isEmptyString(summary) && (
|
||||||
<div dangerouslySetInnerHTML={{ __html: summary }} className="wysiwyg" />
|
<div
|
||||||
|
dangerouslySetInnerHTML={{ __html: sanitize(summary) }}
|
||||||
|
className="wysiwyg"
|
||||||
|
/>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{level !== undefined && level > 0 && <Rating level={level} />}
|
{level !== undefined && level > 0 && <Rating level={level} />}
|
||||||
|
|||||||
@ -15,7 +15,7 @@ import type {
|
|||||||
URL,
|
URL,
|
||||||
} from "@reactive-resume/schema";
|
} from "@reactive-resume/schema";
|
||||||
import { Education, Experience, Volunteer } 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 get from "lodash.get";
|
||||||
import { Fragment } from "react";
|
import { Fragment } from "react";
|
||||||
|
|
||||||
@ -105,9 +105,9 @@ const Summary = () => {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
dangerouslySetInnerHTML={{ __html: section.content }}
|
dangerouslySetInnerHTML={{ __html: sanitize(section.content) }}
|
||||||
className="wysiwyg"
|
|
||||||
style={{ columns: section.columns }}
|
style={{ columns: section.columns }}
|
||||||
|
className="wysiwyg"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
@ -180,7 +180,7 @@ const Section = <T,>({
|
|||||||
summaryKey,
|
summaryKey,
|
||||||
keywordsKey,
|
keywordsKey,
|
||||||
}: SectionProps<T>) => {
|
}: SectionProps<T>) => {
|
||||||
if (!section.visible || section.items.length === 0) return null;
|
if (!section.visible || section.items.filter((item) => item.visible).length === 0) return null;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<section id={section.id} className={cn("grid", dateKey !== undefined && "gap-y-4")}>
|
<section id={section.id} className={cn("grid", dateKey !== undefined && "gap-y-4")}>
|
||||||
@ -217,7 +217,10 @@ const Section = <T,>({
|
|||||||
{url !== undefined && section.separateLinks && <Link url={url} />}
|
{url !== undefined && section.separateLinks && <Link url={url} />}
|
||||||
|
|
||||||
{summary !== undefined && !isEmptyString(summary) && (
|
{summary !== undefined && !isEmptyString(summary) && (
|
||||||
<div dangerouslySetInnerHTML={{ __html: summary }} className="wysiwyg" />
|
<div
|
||||||
|
dangerouslySetInnerHTML={{ __html: sanitize(summary) }}
|
||||||
|
className="wysiwyg"
|
||||||
|
/>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{keywords !== undefined && keywords.length > 0 && (
|
{keywords !== undefined && keywords.length > 0 && (
|
||||||
@ -252,7 +255,10 @@ const Section = <T,>({
|
|||||||
{url !== undefined && section.separateLinks && <Link url={url} />}
|
{url !== undefined && section.separateLinks && <Link url={url} />}
|
||||||
|
|
||||||
{summary !== undefined && !isEmptyString(summary) && (
|
{summary !== undefined && !isEmptyString(summary) && (
|
||||||
<div dangerouslySetInnerHTML={{ __html: summary }} className="wysiwyg" />
|
<div
|
||||||
|
dangerouslySetInnerHTML={{ __html: sanitize(summary) }}
|
||||||
|
className="wysiwyg"
|
||||||
|
/>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{keywords !== undefined && keywords.length > 0 && (
|
{keywords !== undefined && keywords.length > 0 && (
|
||||||
|
|||||||
@ -14,7 +14,7 @@ import type {
|
|||||||
URL,
|
URL,
|
||||||
} from "@reactive-resume/schema";
|
} from "@reactive-resume/schema";
|
||||||
import { Education, Experience, Volunteer } 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 get from "lodash.get";
|
||||||
import React, { Fragment } from "react";
|
import React, { Fragment } from "react";
|
||||||
|
|
||||||
@ -109,9 +109,9 @@ const Summary = () => {
|
|||||||
<h4 className="font-bold text-primary">{section.name}</h4>
|
<h4 className="font-bold text-primary">{section.name}</h4>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
dangerouslySetInnerHTML={{ __html: section.content }}
|
dangerouslySetInnerHTML={{ __html: sanitize(section.content) }}
|
||||||
className="wysiwyg"
|
|
||||||
style={{ columns: section.columns }}
|
style={{ columns: section.columns }}
|
||||||
|
className="wysiwyg"
|
||||||
/>
|
/>
|
||||||
</section>
|
</section>
|
||||||
);
|
);
|
||||||
@ -197,7 +197,7 @@ const Section = <T,>({
|
|||||||
summaryKey,
|
summaryKey,
|
||||||
keywordsKey,
|
keywordsKey,
|
||||||
}: SectionProps<T>) => {
|
}: SectionProps<T>) => {
|
||||||
if (!section.visible || section.items.length === 0) return null;
|
if (!section.visible || section.items.filter((item) => item.visible).length === 0) return null;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<section id={section.id} className="grid">
|
<section id={section.id} className="grid">
|
||||||
@ -223,7 +223,10 @@ const Section = <T,>({
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{summary !== undefined && !isEmptyString(summary) && (
|
{summary !== undefined && !isEmptyString(summary) && (
|
||||||
<div dangerouslySetInnerHTML={{ __html: summary }} className="wysiwyg" />
|
<div
|
||||||
|
dangerouslySetInnerHTML={{ __html: sanitize(summary) }}
|
||||||
|
className="wysiwyg"
|
||||||
|
/>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{level !== undefined && level > 0 && <Rating level={level} />}
|
{level !== undefined && level > 0 && <Rating level={level} />}
|
||||||
|
|||||||
@ -15,7 +15,7 @@ import type {
|
|||||||
URL,
|
URL,
|
||||||
} from "@reactive-resume/schema";
|
} from "@reactive-resume/schema";
|
||||||
import { Education, Experience, Volunteer } 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 get from "lodash.get";
|
||||||
import { Fragment } from "react";
|
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>
|
<h4 className="mb-2 border-b border-primary text-base font-bold">{section.name}</h4>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
dangerouslySetInnerHTML={{ __html: section.content }}
|
dangerouslySetInnerHTML={{ __html: sanitize(section.content) }}
|
||||||
className="wysiwyg"
|
|
||||||
style={{ columns: section.columns }}
|
style={{ columns: section.columns }}
|
||||||
|
className="wysiwyg"
|
||||||
/>
|
/>
|
||||||
</section>
|
</section>
|
||||||
);
|
);
|
||||||
@ -212,7 +212,7 @@ const Section = <T,>({
|
|||||||
summaryKey,
|
summaryKey,
|
||||||
keywordsKey,
|
keywordsKey,
|
||||||
}: SectionProps<T>) => {
|
}: SectionProps<T>) => {
|
||||||
if (!section.visible || section.items.length === 0) return null;
|
if (!section.visible || section.items.filter((item) => item.visible).length === 0) return null;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<section id={section.id} className="grid">
|
<section id={section.id} className="grid">
|
||||||
@ -238,7 +238,10 @@ const Section = <T,>({
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{summary !== undefined && !isEmptyString(summary) && (
|
{summary !== undefined && !isEmptyString(summary) && (
|
||||||
<div dangerouslySetInnerHTML={{ __html: summary }} className="wysiwyg" />
|
<div
|
||||||
|
dangerouslySetInnerHTML={{ __html: sanitize(summary) }}
|
||||||
|
className="wysiwyg"
|
||||||
|
/>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{level !== undefined && level > 0 && <Rating level={level} />}
|
{level !== undefined && level > 0 && <Rating level={level} />}
|
||||||
|
|||||||
@ -15,7 +15,7 @@ import type {
|
|||||||
URL,
|
URL,
|
||||||
} from "@reactive-resume/schema";
|
} from "@reactive-resume/schema";
|
||||||
import { Education, Experience, Volunteer } 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 get from "lodash.get";
|
||||||
import { Fragment } from "react";
|
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>
|
<h4 className="mb-2 border-b pb-0.5 text-sm font-bold">{section.name}</h4>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
dangerouslySetInnerHTML={{ __html: section.content }}
|
dangerouslySetInnerHTML={{ __html: sanitize(section.content) }}
|
||||||
className="wysiwyg"
|
|
||||||
style={{ columns: section.columns }}
|
style={{ columns: section.columns }}
|
||||||
|
className="wysiwyg"
|
||||||
/>
|
/>
|
||||||
</section>
|
</section>
|
||||||
);
|
);
|
||||||
@ -178,7 +178,7 @@ const Section = <T,>({
|
|||||||
summaryKey,
|
summaryKey,
|
||||||
keywordsKey,
|
keywordsKey,
|
||||||
}: SectionProps<T>) => {
|
}: SectionProps<T>) => {
|
||||||
if (!section.visible || section.items.length === 0) return null;
|
if (!section.visible || section.items.filter((item) => item.visible).length === 0) return null;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<section id={section.id} className="grid">
|
<section id={section.id} className="grid">
|
||||||
@ -204,7 +204,10 @@ const Section = <T,>({
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{summary !== undefined && !isEmptyString(summary) && (
|
{summary !== undefined && !isEmptyString(summary) && (
|
||||||
<div dangerouslySetInnerHTML={{ __html: summary }} className="wysiwyg" />
|
<div
|
||||||
|
dangerouslySetInnerHTML={{ __html: sanitize(summary) }}
|
||||||
|
className="wysiwyg"
|
||||||
|
/>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{level !== undefined && level > 0 && <Rating level={level} />}
|
{level !== undefined && level > 0 && <Rating level={level} />}
|
||||||
|
|||||||
@ -42,6 +42,6 @@
|
|||||||
<script type="module" src="/src/main.tsx"></script>
|
<script type="module" src="/src/main.tsx"></script>
|
||||||
|
|
||||||
<!-- Phosphor Icons -->
|
<!-- Phosphor Icons -->
|
||||||
<script src="https://unpkg.com/@phosphor-icons/web"></script>
|
<script src="https://cdn.jsdelivr.net/npm/@phosphor-icons/web"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
67
apps/client/public/funding.json
Normal file
@ -0,0 +1,67 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://fundingjson.org/schema/v1.0.0/funding.schema.json",
|
||||||
|
"version": "v1.0.0",
|
||||||
|
"entity": {
|
||||||
|
"type": "individual",
|
||||||
|
"role": "maintainer",
|
||||||
|
"name": "Amruth Pillai",
|
||||||
|
"email": "im.amruth@gmail.com",
|
||||||
|
"description": "Software Engineer",
|
||||||
|
"webpageUrl": {
|
||||||
|
"url": "https://rxresu.me/funding.json"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"projects": [
|
||||||
|
{
|
||||||
|
"guid": "reactive-resume",
|
||||||
|
"name": "Reactive Resume",
|
||||||
|
"description": "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume.",
|
||||||
|
"webpageUrl": {
|
||||||
|
"url": "https://rxresu.me"
|
||||||
|
},
|
||||||
|
"repositoryUrl": {
|
||||||
|
"url": "https://github.com/AmruthPillai/Reactive-Resume"
|
||||||
|
},
|
||||||
|
"licenses": ["spdx:MIT"],
|
||||||
|
"tags": ["data", "design", "productivity", "resume-builder"]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"funding": {
|
||||||
|
"plans": [
|
||||||
|
{
|
||||||
|
"guid": "sponsor",
|
||||||
|
"status": "active",
|
||||||
|
"name": "Sponsor",
|
||||||
|
"description": "Support the project on a recurring basis by becoming a sponsor.",
|
||||||
|
"amount": 10,
|
||||||
|
"currency": "EUR",
|
||||||
|
"frequency": "monthly",
|
||||||
|
"channels": ["github", "open-collective"]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"guid": "donation",
|
||||||
|
"status": "active",
|
||||||
|
"name": "Donation",
|
||||||
|
"description": "Show your support for the project by making a one-time donation.",
|
||||||
|
"amount": 0,
|
||||||
|
"currency": "EUR",
|
||||||
|
"frequency": "one-time",
|
||||||
|
"channels": ["github", "open-collective"]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"channels": [
|
||||||
|
{
|
||||||
|
"guid": "github",
|
||||||
|
"type": "payment-provider",
|
||||||
|
"description": "GitHub Sponsors",
|
||||||
|
"address": "https://github.com/sponsors/AmruthPillai"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"guid": "open-collective",
|
||||||
|
"type": "payment-provider",
|
||||||
|
"description": "Open Collective",
|
||||||
|
"address": "https://opencollective.com/reactive-resume"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
0
apps/client/public/templates/jpg/azurill.jpg
Executable file → Normal file
|
Before Width: | Height: | Size: 129 KiB After Width: | Height: | Size: 129 KiB |
0
apps/client/public/templates/jpg/bronzor.jpg
Executable file → Normal file
|
Before Width: | Height: | Size: 120 KiB After Width: | Height: | Size: 120 KiB |
0
apps/client/public/templates/jpg/chikorita.jpg
Executable file → Normal file
|
Before Width: | Height: | Size: 145 KiB After Width: | Height: | Size: 145 KiB |
0
apps/client/public/templates/jpg/ditto.jpg
Executable file → Normal file
|
Before Width: | Height: | Size: 138 KiB After Width: | Height: | Size: 138 KiB |
0
apps/client/public/templates/jpg/kakuna.jpg
Executable file → Normal file
|
Before Width: | Height: | Size: 119 KiB After Width: | Height: | Size: 119 KiB |
0
apps/client/public/templates/jpg/nosepass.jpg
Executable file → Normal file
|
Before Width: | Height: | Size: 99 KiB After Width: | Height: | Size: 99 KiB |
0
apps/client/public/templates/jpg/onyx.jpg
Executable file → Normal file
|
Before Width: | Height: | Size: 113 KiB After Width: | Height: | Size: 113 KiB |
0
apps/client/public/templates/jpg/pikachu.jpg
Executable file → Normal file
|
Before Width: | Height: | Size: 136 KiB After Width: | Height: | Size: 136 KiB |
0
apps/client/public/templates/jpg/rhyhorn.jpg
Executable file → Normal file
|
Before Width: | Height: | Size: 131 KiB After Width: | Height: | Size: 131 KiB |
@ -1,11 +1,11 @@
|
|||||||
import { t } from "@lingui/macro";
|
import { t } from "@lingui/macro";
|
||||||
import {
|
import {
|
||||||
CaretDown,
|
CaretDownIcon,
|
||||||
ChatTeardropText,
|
ChatTeardropTextIcon,
|
||||||
CircleNotch,
|
CircleNotchIcon,
|
||||||
Exam,
|
ExamIcon,
|
||||||
MagicWand,
|
MagicWandIcon,
|
||||||
PenNib,
|
PenNibIcon,
|
||||||
} from "@phosphor-icons/react";
|
} from "@phosphor-icons/react";
|
||||||
import {
|
import {
|
||||||
Badge,
|
Badge,
|
||||||
@ -75,27 +75,31 @@ export const AiActions = ({ value, onChange, className }: Props) => {
|
|||||||
variant="primary"
|
variant="primary"
|
||||||
className="-rotate-90 bg-background px-2 text-[10px] leading-[10px]"
|
className="-rotate-90 bg-background px-2 text-[10px] leading-[10px]"
|
||||||
>
|
>
|
||||||
<MagicWand size={10} className="mr-1" />
|
<MagicWandIcon size={10} className="mr-1" />
|
||||||
{t`AI`}
|
{t`AI`}
|
||||||
</Badge>
|
</Badge>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<Button size="sm" variant="outline" disabled={!!loading} onClick={() => onClick("improve")}>
|
<Button size="sm" variant="outline" disabled={!!loading} onClick={() => onClick("improve")}>
|
||||||
{loading === "improve" ? <CircleNotch className="animate-spin" /> : <PenNib />}
|
{loading === "improve" ? <CircleNotchIcon className="animate-spin" /> : <PenNibIcon />}
|
||||||
<span className="ml-2 text-xs">{t`Improve Writing`}</span>
|
<span className="ml-2 text-xs">{t`Improve Writing`}</span>
|
||||||
</Button>
|
</Button>
|
||||||
|
|
||||||
<Button size="sm" variant="outline" disabled={!!loading} onClick={() => onClick("fix")}>
|
<Button size="sm" variant="outline" disabled={!!loading} onClick={() => onClick("fix")}>
|
||||||
{loading === "fix" ? <CircleNotch className="animate-spin" /> : <Exam />}
|
{loading === "fix" ? <CircleNotchIcon className="animate-spin" /> : <ExamIcon />}
|
||||||
<span className="ml-2 text-xs">{t`Fix Spelling & Grammar`}</span>
|
<span className="ml-2 text-xs">{t`Fix Spelling & Grammar`}</span>
|
||||||
</Button>
|
</Button>
|
||||||
|
|
||||||
<DropdownMenu>
|
<DropdownMenu>
|
||||||
<DropdownMenuTrigger asChild>
|
<DropdownMenuTrigger asChild>
|
||||||
<Button size="sm" variant="outline" disabled={!!loading}>
|
<Button size="sm" variant="outline" disabled={!!loading}>
|
||||||
{loading === "tone" ? <CircleNotch className="animate-spin" /> : <ChatTeardropText />}
|
{loading === "tone" ? (
|
||||||
|
<CircleNotchIcon className="animate-spin" />
|
||||||
|
) : (
|
||||||
|
<ChatTeardropTextIcon />
|
||||||
|
)}
|
||||||
<span className="mx-2 text-xs">{t`Change Tone`}</span>
|
<span className="mx-2 text-xs">{t`Change Tone`}</span>
|
||||||
<CaretDown />
|
<CaretDownIcon />
|
||||||
</Button>
|
</Button>
|
||||||
</DropdownMenuTrigger>
|
</DropdownMenuTrigger>
|
||||||
<DropdownMenuContent>
|
<DropdownMenuContent>
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
import { t } from "@lingui/macro";
|
import { t } from "@lingui/macro";
|
||||||
import { CaretDown, Check } from "@phosphor-icons/react";
|
import { CaretDownIcon, CheckIcon } from "@phosphor-icons/react";
|
||||||
import {
|
import {
|
||||||
Button,
|
Button,
|
||||||
Command,
|
Command,
|
||||||
@ -61,7 +61,7 @@ export const LocaleCombobox = ({ value, onValueChange }: Props) => {
|
|||||||
onValueChange(result.original.locale);
|
onValueChange(result.original.locale);
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Check
|
<CheckIcon
|
||||||
className={cn(
|
className={cn(
|
||||||
"mr-2 size-4 opacity-0",
|
"mr-2 size-4 opacity-0",
|
||||||
value === original.locale && "opacity-100",
|
value === original.locale && "opacity-100",
|
||||||
@ -104,7 +104,7 @@ export const LocaleComboboxPopover = ({ value, onValueChange }: Props) => {
|
|||||||
<span className="line-clamp-1 text-left font-normal">
|
<span className="line-clamp-1 text-left font-normal">
|
||||||
{selected?.name} <span className="ml-1 text-xs opacity-50">({selected?.locale})</span>
|
{selected?.name} <span className="ml-1 text-xs opacity-50">({selected?.locale})</span>
|
||||||
</span>
|
</span>
|
||||||
<CaretDown
|
<CaretDownIcon
|
||||||
className={cn(
|
className={cn(
|
||||||
"ml-2 size-4 shrink-0 rotate-0 opacity-50 transition-transform",
|
"ml-2 size-4 shrink-0 rotate-0 opacity-50 transition-transform",
|
||||||
open && "rotate-180",
|
open && "rotate-180",
|
||||||
|
|||||||
@ -1,5 +1,6 @@
|
|||||||
|
import { t } from "@lingui/macro";
|
||||||
import { useLingui } from "@lingui/react";
|
import { useLingui } from "@lingui/react";
|
||||||
import { Translate } from "@phosphor-icons/react";
|
import { TranslateIcon } from "@phosphor-icons/react";
|
||||||
import { Button, Popover, PopoverContent, PopoverTrigger } from "@reactive-resume/ui";
|
import { Button, Popover, PopoverContent, PopoverTrigger } from "@reactive-resume/ui";
|
||||||
import { useState } from "react";
|
import { useState } from "react";
|
||||||
|
|
||||||
@ -13,8 +14,8 @@ export const LocaleSwitch = () => {
|
|||||||
return (
|
return (
|
||||||
<Popover open={open} onOpenChange={setOpen}>
|
<Popover open={open} onOpenChange={setOpen}>
|
||||||
<PopoverTrigger asChild>
|
<PopoverTrigger asChild>
|
||||||
<Button size="icon" variant="ghost">
|
<Button size="icon" variant="ghost" aria-label={t`Change Language`}>
|
||||||
<Translate size={20} />
|
<TranslateIcon size={20} />
|
||||||
</Button>
|
</Button>
|
||||||
</PopoverTrigger>
|
</PopoverTrigger>
|
||||||
<PopoverContent align="end" className="p-0">
|
<PopoverContent align="end" className="p-0">
|
||||||
|
|||||||
@ -1,4 +1,5 @@
|
|||||||
import { CloudSun, Moon, Sun } from "@phosphor-icons/react";
|
import { t } from "@lingui/macro";
|
||||||
|
import { CloudSunIcon, MoonIcon, SunIcon } from "@phosphor-icons/react";
|
||||||
import { useTheme } from "@reactive-resume/hooks";
|
import { useTheme } from "@reactive-resume/hooks";
|
||||||
import { Button } from "@reactive-resume/ui";
|
import { Button } from "@reactive-resume/ui";
|
||||||
import type { Variants } from "framer-motion";
|
import type { Variants } from "framer-motion";
|
||||||
@ -7,9 +8,10 @@ import { useMemo } from "react";
|
|||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
size?: number;
|
size?: number;
|
||||||
|
className?: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
export const ThemeSwitch = ({ size = 20 }: Props) => {
|
export const ThemeSwitch = ({ size = 20, className }: Props) => {
|
||||||
const { theme, toggleTheme } = useTheme();
|
const { theme, toggleTheme } = useTheme();
|
||||||
|
|
||||||
const variants: Variants = useMemo(() => {
|
const variants: Variants = useMemo(() => {
|
||||||
@ -21,12 +23,12 @@ export const ThemeSwitch = ({ size = 20 }: Props) => {
|
|||||||
}, [size]);
|
}, [size]);
|
||||||
|
|
||||||
return (
|
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 }}>
|
<div className="cursor-pointer overflow-hidden" style={{ width: size, height: size }}>
|
||||||
<motion.div animate={theme} variants={variants} className="flex">
|
<motion.div animate={theme} variants={variants} className="flex">
|
||||||
<Sun size={size} className="shrink-0" />
|
<SunIcon size={size} className="shrink-0" aria-label={t`Switch to Light Mode`} />
|
||||||
<CloudSun size={size} className="shrink-0" />
|
<CloudSunIcon size={size} className="shrink-0" aria-label={t`Use System Theme`} />
|
||||||
<Moon size={size} className="shrink-0" />
|
<MoonIcon size={size} className="shrink-0" aria-label={t`Switch to Dark Mode`} />
|
||||||
</motion.div>
|
</motion.div>
|
||||||
</div>
|
</div>
|
||||||
</Button>
|
</Button>
|
||||||
|
|||||||
@ -1,2 +1,3 @@
|
|||||||
export const DEFAULT_MODEL = "gpt-3.5-turbo";
|
export const DEFAULT_MODEL = "gpt-3.5-turbo";
|
||||||
export const DEFAULT_MAX_TOKENS = 1024;
|
export const DEFAULT_MAX_TOKENS = 1024;
|
||||||
|
export const DEFAULT_AZURE_API_VERSION = "2024-10-21";
|
||||||
|
|||||||
@ -13,6 +13,7 @@ export const dayjsLocales: Record<string, () => Promise<ILocale>> = {
|
|||||||
"af-ZA": () => import("dayjs/locale/af"),
|
"af-ZA": () => import("dayjs/locale/af"),
|
||||||
"am-ET": () => import("dayjs/locale/am"),
|
"am-ET": () => import("dayjs/locale/am"),
|
||||||
"ar-SA": () => import("dayjs/locale/ar-sa"),
|
"ar-SA": () => import("dayjs/locale/ar-sa"),
|
||||||
|
"az-AZ": () => import("dayjs/locale/az"),
|
||||||
"bg-BG": () => import("dayjs/locale/bg"),
|
"bg-BG": () => import("dayjs/locale/bg"),
|
||||||
"bn-BD": () => import("dayjs/locale/bn"),
|
"bn-BD": () => import("dayjs/locale/bn"),
|
||||||
"ca-ES": () => import("dayjs/locale/ca"),
|
"ca-ES": () => import("dayjs/locale/ca"),
|
||||||
@ -35,17 +36,21 @@ export const dayjsLocales: Record<string, () => Promise<ILocale>> = {
|
|||||||
"kn-IN": () => import("dayjs/locale/kn"),
|
"kn-IN": () => import("dayjs/locale/kn"),
|
||||||
"ko-KR": () => import("dayjs/locale/ko"),
|
"ko-KR": () => import("dayjs/locale/ko"),
|
||||||
"lt-LT": () => import("dayjs/locale/lt"),
|
"lt-LT": () => import("dayjs/locale/lt"),
|
||||||
|
"lv-LV": () => import("dayjs/locale/lv"),
|
||||||
"ml-IN": () => import("dayjs/locale/ml"),
|
"ml-IN": () => import("dayjs/locale/ml"),
|
||||||
"mr-IN": () => import("dayjs/locale/mr"),
|
"mr-IN": () => import("dayjs/locale/mr"),
|
||||||
|
"ms-MY": () => import("dayjs/locale/ms-my"),
|
||||||
"ne-NP": () => import("dayjs/locale/ne"),
|
"ne-NP": () => import("dayjs/locale/ne"),
|
||||||
"nl-NL": () => import("dayjs/locale/nl"),
|
"nl-NL": () => import("dayjs/locale/nl"),
|
||||||
"no-NO": () => import("dayjs/locale/en"),
|
"no-NO": () => import("dayjs/locale/nb"),
|
||||||
"or-IN": () => import("dayjs/locale/en"),
|
"or-IN": () => import("dayjs/locale/en"),
|
||||||
"pl-PL": () => import("dayjs/locale/pl"),
|
"pl-PL": () => import("dayjs/locale/pl"),
|
||||||
"pt-BR": () => import("dayjs/locale/pt-br"),
|
"pt-BR": () => import("dayjs/locale/pt-br"),
|
||||||
"pt-PT": () => import("dayjs/locale/pt"),
|
"pt-PT": () => import("dayjs/locale/pt"),
|
||||||
"ro-RO": () => import("dayjs/locale/ro"),
|
"ro-RO": () => import("dayjs/locale/ro"),
|
||||||
"ru-RU": () => import("dayjs/locale/ru"),
|
"ru-RU": () => import("dayjs/locale/ru"),
|
||||||
|
"sk-SK": () => import("dayjs/locale/sk"),
|
||||||
|
"sq-AL": () => import("dayjs/locale/sq"),
|
||||||
"sr-SP": () => import("dayjs/locale/sr"),
|
"sr-SP": () => import("dayjs/locale/sr"),
|
||||||
"sv-SE": () => import("dayjs/locale/sv"),
|
"sv-SE": () => import("dayjs/locale/sv"),
|
||||||
"ta-IN": () => import("dayjs/locale/ta"),
|
"ta-IN": () => import("dayjs/locale/ta"),
|
||||||
@ -53,6 +58,7 @@ export const dayjsLocales: Record<string, () => Promise<ILocale>> = {
|
|||||||
"th-TH": () => import("dayjs/locale/th"),
|
"th-TH": () => import("dayjs/locale/th"),
|
||||||
"tr-TR": () => import("dayjs/locale/tr"),
|
"tr-TR": () => import("dayjs/locale/tr"),
|
||||||
"uk-UA": () => import("dayjs/locale/uk"),
|
"uk-UA": () => import("dayjs/locale/uk"),
|
||||||
|
"uz-UZ": () => import("dayjs/locale/uz"),
|
||||||
"vi-VN": () => import("dayjs/locale/vi"),
|
"vi-VN": () => import("dayjs/locale/vi"),
|
||||||
"zh-CN": () => import("dayjs/locale/zh-cn"),
|
"zh-CN": () => import("dayjs/locale/zh-cn"),
|
||||||
"zh-TW": () => import("dayjs/locale/zh-tw"),
|
"zh-TW": () => import("dayjs/locale/zh-tw"),
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: af\n"
|
"Language: af\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:32\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Afrikaans\n"
|
"Language-Team: Afrikaans\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -20,7 +20,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:171
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:171
|
||||||
msgid "You have enabled two-factor authentication successfully."
|
msgid "You have enabled two-factor authentication successfully."
|
||||||
msgstr ""
|
msgstr "Jhvgbjnklj."
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:57
|
#: apps/client/src/pages/home/sections/features/index.tsx:57
|
||||||
msgid "{templatesCount} resume templates to choose from"
|
msgid "{templatesCount} resume templates to choose from"
|
||||||
@ -30,27 +30,27 @@ msgstr ""
|
|||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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 ""
|
||||||
|
|
||||||
#: 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."
|
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||||
msgstr ""
|
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."
|
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -102,8 +102,8 @@ msgstr ""
|
|||||||
msgid "Add a custom field"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -117,7 +117,7 @@ msgstr ""
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr ""
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -191,6 +199,18 @@ msgstr ""
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,7 +229,7 @@ msgstr ""
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -246,8 +266,8 @@ msgstr ""
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr ""
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr ""
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr ""
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -351,7 +371,12 @@ msgstr ""
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr ""
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -386,10 +411,10 @@ msgstr ""
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -407,11 +432,15 @@ msgstr ""
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr ""
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||||
msgid "Disable 2FA"
|
msgid "Disable 2FA"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr ""
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr ""
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr ""
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr ""
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr ""
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||||
msgid "Enable 2FA"
|
msgid "Enable 2FA"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr ""
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -544,6 +576,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -564,19 +597,19 @@ msgstr ""
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr ""
|
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"
|
msgid "Font Family"
|
||||||
msgstr ""
|
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"
|
msgid "Font Size"
|
||||||
msgstr ""
|
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"
|
msgid "Font Subset"
|
||||||
msgstr ""
|
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"
|
msgid "Font Variants"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr ""
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr ""
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr ""
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr ""
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -651,7 +688,7 @@ msgstr ""
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -677,7 +714,7 @@ msgstr ""
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr ""
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -734,7 +771,7 @@ msgstr ""
|
|||||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||||
msgstr ""
|
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."
|
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ msgid "In this section, you can delete your account and all the data associated
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr ""
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr ""
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr ""
|
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"
|
msgid "Line Height"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr ""
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr ""
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -923,7 +962,7 @@ msgstr ""
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr ""
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||||
msgid "New Password"
|
msgid "New Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1009,16 +1049,16 @@ msgstr ""
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
|
||||||
msgid "OpenAI/Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: 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"
|
msgid "Options"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr ""
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr ""
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr ""
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr ""
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr ""
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1262,15 +1300,15 @@ msgstr ""
|
|||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr ""
|
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"
|
msgid "Search for a font family"
|
||||||
msgstr ""
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr ""
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr ""
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr ""
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1330,7 +1369,7 @@ msgstr ""
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1408,6 +1447,7 @@ msgid "Start building your resume by giving it a name."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1422,17 +1462,17 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr ""
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1465,8 +1514,12 @@ msgstr ""
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: apps/client/src/services/errors/translate-error.ts:49
|
||||||
@ -1474,6 +1527,7 @@ msgid "The resume you want to update is locked, please unlock if you wish to mak
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
#: 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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr ""
|
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"
|
msgid "Underline Links"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr ""
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,7 +1714,7 @@ msgstr ""
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1665,11 +1728,11 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr ""
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr ""
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr ""
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr ""
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1733,7 +1808,7 @@ msgstr ""
|
|||||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||||
msgstr ""
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: am\n"
|
"Language: am\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:32\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Amharic\n"
|
"Language-Team: Amharic\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||||
@ -30,27 +30,27 @@ msgstr ""
|
|||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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 ""
|
||||||
|
|
||||||
#: 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."
|
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||||
msgstr ""
|
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."
|
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -102,8 +102,8 @@ msgstr ""
|
|||||||
msgid "Add a custom field"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -117,7 +117,7 @@ msgstr ""
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr ""
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -191,6 +199,18 @@ msgstr ""
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,7 +229,7 @@ msgstr ""
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -246,8 +266,8 @@ msgstr ""
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr ""
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr ""
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr ""
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -351,7 +371,12 @@ msgstr ""
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr ""
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -386,10 +411,10 @@ msgstr ""
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -407,11 +432,15 @@ msgstr ""
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr ""
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||||
msgid "Disable 2FA"
|
msgid "Disable 2FA"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr ""
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr ""
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr ""
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr ""
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr ""
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||||
msgid "Enable 2FA"
|
msgid "Enable 2FA"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr ""
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -544,6 +576,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -564,19 +597,19 @@ msgstr ""
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr ""
|
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"
|
msgid "Font Family"
|
||||||
msgstr ""
|
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"
|
msgid "Font Size"
|
||||||
msgstr ""
|
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"
|
msgid "Font Subset"
|
||||||
msgstr ""
|
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"
|
msgid "Font Variants"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr ""
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr ""
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr ""
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr ""
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -651,7 +688,7 @@ msgstr ""
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -677,7 +714,7 @@ msgstr ""
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr ""
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -734,7 +771,7 @@ msgstr ""
|
|||||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||||
msgstr ""
|
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."
|
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ msgid "In this section, you can delete your account and all the data associated
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr ""
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr ""
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr ""
|
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"
|
msgid "Line Height"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr ""
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr ""
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -923,7 +962,7 @@ msgstr ""
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr ""
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||||
msgid "New Password"
|
msgid "New Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1009,16 +1049,16 @@ msgstr ""
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
|
||||||
msgid "OpenAI/Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: 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"
|
msgid "Options"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr ""
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr ""
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr ""
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr ""
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr ""
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1262,15 +1300,15 @@ msgstr ""
|
|||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr ""
|
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"
|
msgid "Search for a font family"
|
||||||
msgstr ""
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr ""
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr ""
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr ""
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1330,7 +1369,7 @@ msgstr ""
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1408,6 +1447,7 @@ msgid "Start building your resume by giving it a name."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1422,17 +1462,17 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr ""
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1465,8 +1514,12 @@ msgstr ""
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: apps/client/src/services/errors/translate-error.ts:49
|
||||||
@ -1474,6 +1527,7 @@ msgid "The resume you want to update is locked, please unlock if you wish to mak
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
#: 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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr ""
|
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"
|
msgid "Underline Links"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr ""
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,7 +1714,7 @@ msgstr ""
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1665,11 +1728,11 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr ""
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr ""
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr ""
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr ""
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1733,7 +1808,7 @@ msgstr ""
|
|||||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||||
msgstr ""
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: ar\n"
|
"Language: ar\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:40\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Arabic\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"
|
"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"
|
||||||
@ -20,37 +20,37 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:171
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:171
|
||||||
msgid "You have enabled two-factor authentication successfully."
|
msgid "You have enabled two-factor authentication successfully."
|
||||||
msgstr "لقد فعلت المصادقة الثنائية بنجاح."
|
msgstr "لقد تم تفعيل المصادقة الثنائية بنجاح."
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:57
|
#: apps/client/src/pages/home/sections/features/index.tsx:57
|
||||||
msgid "{templatesCount} resume templates to choose from"
|
msgid "{templatesCount} resume templates to choose from"
|
||||||
msgstr "{templatesCount} قوالب السيرة الذاتية للاختيار من بينها"
|
msgstr "{templatesCount} قوالب سيرة ذاتية لتختار من بينها"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:142
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:142
|
||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr "{value, plural, one {العمود} other {الأعمدة}}"
|
msgstr "{value, plural, one {العمود} other {الأعمدة}}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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>قمت ببناء مستأنف تفاعلي في الغالب بنفسي خلال وقت فراغي، مع الكثير من المساعدة من المساهمين الكبار في المصدر المفتوح. /0><1>إذا كنت تعجبك التطبيق وترغب في دعم بقائه مجاناً إلى الأبد، يرجى التبرع بكل ما يمكنك منحه.</1>"
|
msgstr "<0>بنيتُ ريأكتف رسومي في الغالب بنفسي خلال وقت فراغي، مع الكثير من المساعدة من المساهمين الكبار في المصدر المفتوح. /0><1>إذا كنت تعجبك التطبيق وترغب في دعم بقائه مجاناً إلى الأبد، يرجى التبرع بكل ما يمكنك منحه.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 "<0>ملاحظة: </0>، باستخدام API OpenAI ، فإنك تقر وتقبل شروط الاستخدام <1></1> و<2>سياسة الخصوصية </2> التي أوجزها OpenAI. يرجى ملاحظة أن الاستئناف التفاعلي لا يتحمل أي مسؤولية عن أي استخدام غير سليم أو غير مأذون به للخدمة، ويقع أي انعكاسات أو التزامات ناجمة عن ذلك على عاتق المستعمل وحده."
|
msgstr "<0>ملاحظة: </0>، باستخدام API OpenAI ، فإنك تقر وتقبل شروط الاستخدام <1></1> و<2>سياسة الخصوصية </2> التي أوجزها OpenAI. يرجى ملاحظة أن الاستئناف التفاعلي لا يتحمل أي مسؤولية عن أي استخدام غير سليم أو غير مأذون به للخدمة، ويقع أي انعكاسات أو التزامات ناجمة عن ذلك على عاتق المستعمل وحده."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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>"
|
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."
|
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||||
msgstr "<0>المصادقة الثنائية معطلة حاليا.</0> يمكنك تفعيلها عن طريق إضافة تطبيق مصادقة إلى حسابك."
|
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."
|
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||||
msgstr "<0>المصادقة الثنائية عامل مفعل.</0> سوف يطلب منك إدخال رمز في كل مرة تقوم فيها بتسجيل الدخول."
|
msgstr "<0>المصادقة الثنائية عامل مفعل.</0> سوف يطلب منك إدخال رمز في كل مرة تقوم فيها بتسجيل الدخول."
|
||||||
|
|
||||||
@ -79,7 +79,7 @@ msgstr "من المفترض أن يتم إرسال رابط إعادة تعيي
|
|||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:43
|
#: apps/client/src/services/errors/translate-error.ts:43
|
||||||
msgid "A resume with this slug already exists, please pick a different unique identifier."
|
msgid "A resume with this slug already exists, please pick a different unique identifier."
|
||||||
msgstr "السيرة الذاتية التي تحتوي على هذه العبارة موجودة بالفعل، يرجى اختيار معرف فريد مختلف."
|
msgstr "السيرة الذاتية التي تحتوي على هذه العبارة موجودة سلفًا، يرجى اختيار معرف فريد مختلف."
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:10
|
#: apps/client/src/services/errors/translate-error.ts:10
|
||||||
msgid "A user with this email address and/or username already exists."
|
msgid "A user with this email address and/or username already exists."
|
||||||
@ -102,8 +102,8 @@ msgstr "حساب"
|
|||||||
msgid "Add a custom field"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "إضافة عنصر جديد"
|
msgstr "إضافة عنصر جديد"
|
||||||
@ -117,7 +117,7 @@ msgstr "إضافة عنصر جديد"
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr "إضافة قسم جديد"
|
msgstr "إضافة قسم جديد"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr "إضافة صفحة جديدة"
|
msgstr "إضافة صفحة جديدة"
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr "لديك حساب مسبقا؟"
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr "حدث خطأ أثناء التحقق من صحة الملف."
|
msgstr "حدث خطأ أثناء التحقق من صحة الملف."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr "حدث خطأ داخلي في الخادم."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr "حدث خطأ غير متوقع."
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr "وأكثر من ذلك..."
|
msgstr "وأكثر من ذلك..."
|
||||||
@ -191,6 +199,18 @@ msgstr "متوفر في {languagesCount} لغات"
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr "إنجازات"
|
msgstr "إنجازات"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr "إصدار Azure API"
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr "Azure OpenAI Base URL، اسم النشر (نموذج)، إصدار API مطلوب عند استخدام Azure OpenAI."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr "رابط مصدر Azure OpenAI"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,7 +229,7 @@ msgstr "رمز النسخ الاحتياطي"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "قد تحتوي رموز النسخ الاحتياطي على أحرف أو أرقام صغيرة فقط، ويجب أن تكون بالضبط 10 أحرف."
|
msgstr "قد تحتوي رموز النسخ الاحتياطي على أحرف أو أرقام صغيرة فقط، ويجب أن تكون بالضبط 10 أحرف."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "الرابط الأساسي"
|
msgstr "الرابط الأساسي"
|
||||||
|
|
||||||
@ -246,8 +266,8 @@ msgstr "من قبل المجتمع، من أجل المجتمع."
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "إلغاء"
|
msgstr "إلغاء"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr "عادي"
|
msgstr "عادي"
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr "عادي"
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr "التوسيط إلى اللوحة"
|
msgstr "التوسيط إلى اللوحة"
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr "تغيير اللغة"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr "تغيير كلمة المرور"
|
msgstr "تغيير كلمة المرور"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr "تغيير التأثير"
|
msgstr "تغيير التأثير"
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr "أعمدة"
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr "الشركة"
|
msgstr "الشركة"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr "واثق"
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "استمر"
|
msgstr "استمر"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "نسخ"
|
msgstr "نسخ"
|
||||||
|
|
||||||
@ -351,7 +371,12 @@ msgstr "قم بإنشاء واحدة الآن"
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr "إنشاء نموذج السيرة الذاتية"
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr "CSS مخصص"
|
msgstr "CSS مخصص"
|
||||||
@ -386,10 +411,10 @@ msgstr "داكن"
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "التاريخ"
|
msgstr "التاريخ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "التاريخ أو النطاق الزمني"
|
msgstr "التاريخ أو النطاق الزمني"
|
||||||
@ -407,11 +432,15 @@ msgstr "حذف"
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr "حذف الحساب"
|
msgstr "حذف الحساب"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr "اسم النشر"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "الوصف"
|
msgstr "الوصف"
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr "تصميم السيرة الذاتية بصفحة واحدة/متعدد
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr "تعطيل"
|
msgstr "تعطيل"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||||
msgid "Disable 2FA"
|
msgid "Disable 2FA"
|
||||||
msgstr "تعطيل المصادقة الثنائية 2FA"
|
msgstr "تعطيل المصادقة الثنائية 2FA"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr "تجاهل"
|
msgstr "تجاهل"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "إرشادات الإستخدام"
|
msgstr "إرشادات الإستخدام"
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr "إرشادات الإستخدام"
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr "ليس لديك حساب؟"
|
msgstr "ليس لديك حساب؟"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr "لا تعرف من أين تبدأ؟ راجع الارشادات!"
|
msgstr "لا تعرف من أين تبدأ؟ راجع الارشادات!"
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr "لا تعرف من أين تبدأ؟ راجع الارشادات!"
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr "ألا ترى لغتك؟ <0>ساعدنا في ترجمة التطبيق.</0>"
|
msgstr "ألا ترى لغتك؟ <0>ساعدنا في ترجمة التطبيق.</0>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr "تبرع لـReactive Resume"
|
msgstr "تبرع لـReactive Resume"
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr "تبرع لـReactive Resume"
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr "قم بتنزيل لقطة JSON لاستئنافك. يمكن استخدام هذا الملف لاستيراد استئنافك في المستقبل، أو يمكن حتى مشاركته مع الآخرين للتعاون."
|
msgstr "قم بتنزيل لقطة JSON لاستئنافك. يمكن استخدام هذا الملف لاستيراد استئنافك في المستقبل، أو يمكن حتى مشاركته مع الآخرين للتعاون."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
msgstr "قم بتنزيل ملف PDF الخاص باستعادتك. يمكن استخدام هذا الملف لطباعة استعادتك، أو إرساله إلى القائمين بالتجنيد، أو تحميله على بوابات العمل."
|
msgstr "قم بتنزيل ملف PDF الخاص باستعادتك. يمكن استخدام هذا الملف لطباعة استعادتك، أو إرساله إلى القائمين بالتجنيد، أو تحميله على بوابات العمل."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr "تنزيل PDF"
|
msgstr "تنزيل PDF"
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr "استنسخ عنصرًا موجودًا"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "استنسخ سيرة ذاتية موجودة"
|
msgstr "استنسخ سيرة ذاتية موجودة"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "عدّل"
|
msgstr "عدّل"
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr "المؤثرات"
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr "البريد الإلكتروني"
|
msgstr "البريد الإلكتروني"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||||
msgid "Enable 2FA"
|
msgid "Enable 2FA"
|
||||||
msgstr "تمكين المصادقة الثنائية (2FA)"
|
msgstr "تمكين المصادقة الثنائية (2FA)"
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr "أدخل كلمة المرور لمرة واحدة التي وفرها
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr "أدخل عنوان البريد الإلكتروني الخاص بك وسوف نرسل لك رابط لإعادة تعيين كلمة المرور الخاصة بك إذا كان الحساب موجود."
|
msgstr "أدخل عنوان البريد الإلكتروني الخاص بك وسوف نرسل لك رابط لإعادة تعيين كلمة المرور الخاصة بك إذا كان الحساب موجود."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr "خطأ {statusCode}"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr "أخطاء"
|
msgstr "أخطاء"
|
||||||
@ -544,6 +576,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
|||||||
msgstr "استكشف القوالب المتاحة في Resume التفاعلي وعرض الاستئنافات التي تمت صياغتها معهم. ويمكنها أيضا أن تكون أمثلة للمساعدة في توجيه عملية إنشاء مستأنفتك المقبلة."
|
msgstr "استكشف القوالب المتاحة في Resume التفاعلي وعرض الاستئنافات التي تمت صياغتها معهم. ويمكنها أيضا أن تكون أمثلة للمساعدة في توجيه عملية إنشاء مستأنفتك المقبلة."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr "تصدير"
|
msgstr "تصدير"
|
||||||
@ -564,19 +597,19 @@ msgstr "أخيرًا،"
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr "إصلاح الإملاء والنحو"
|
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"
|
msgid "Font Family"
|
||||||
msgstr "مجموعة الخطوط"
|
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"
|
msgid "Font Size"
|
||||||
msgstr "حجم الخط"
|
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"
|
msgid "Font Subset"
|
||||||
msgstr "مجموعات الخط الفرعية"
|
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"
|
msgid "Font Variants"
|
||||||
msgstr "متغير الخط"
|
msgstr "متغير الخط"
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr "متغير الخط"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "فعلى سبيل المثال، يمكن الإشارة هنا إلى المعلومات المتعلقة بالشركات التي أرسلتها لاستئناف العمل أو الروابط مع توصيفات الوظائف."
|
msgstr "فعلى سبيل المثال، يمكن الإشارة هنا إلى المعلومات المتعلقة بالشركات التي أرسلتها لاستئناف العمل أو الروابط مع توصيفات الوظائف."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "نسيان"
|
msgstr "نسيان"
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr "أنسيت كلمة مرورك؟"
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr "الصيغة"
|
msgstr "الصيغة"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr "هل وجدت خطأ، أم لديك فكرة لميزة جديدة؟"
|
msgstr "هل وجدت خطأ، أم لديك فكرة لميزة جديدة؟"
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr "هل وجدت خطأ، أم لديك فكرة لميزة جديدة؟"
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr "مجاني، للأبد"
|
msgstr "مجاني، للأبد"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr "ودود"
|
msgstr "ودود"
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr "امنح سيرتك الذاتية القديمة اسماً جديدا
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr "الذهاب إلى لوحة التحكم"
|
msgstr "الذهاب إلى لوحة التحكم"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr "انتقل إلى الصفحة الرئيسية"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr "جوجل"
|
msgstr "جوجل"
|
||||||
@ -651,7 +688,7 @@ msgstr "جوجل"
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr "تدرج رمادي"
|
msgstr "تدرج رمادي"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr "الشبكة"
|
msgstr "الشبكة"
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr "هنا، يمكنك تحديث ملفك التعريفي لتخصيص تجربتك وإضافة طابعك الشخصي عليها."
|
msgstr "هنا، يمكنك تحديث ملفك التعريفي لتخصيص تجربتك وإضافة طابعك الشخصي عليها."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "مخفي"
|
msgstr "مخفي"
|
||||||
@ -677,7 +714,7 @@ msgstr "مخفي"
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr "إخفاء"
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr "إخفاء الأيقونات"
|
msgstr "إخفاء الأيقونات"
|
||||||
|
|
||||||
@ -734,7 +771,7 @@ msgstr "تحسين الكتابة"
|
|||||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||||
msgstr "في حال كنت غير قادر على مسح رمز QR هذا، يمكنك أيضًا نسخ ولصق هذا الرابط في تطبيق المصادقة الخاص بك."
|
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."
|
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||||
msgstr "في هذا القسم، يمكنك تغيير كلمة المرور الخاصة بك وتمكين/تعطيل المصادقة ذات العاملين."
|
msgstr "في هذا القسم، يمكنك تغيير كلمة المرور الخاصة بك وتمكين/تعطيل المصادقة ذات العاملين."
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ msgid "In this section, you can delete your account and all the data associated
|
|||||||
msgstr "في هذا القسم، يمكنك حذف حسابك وجميع البيانات المرتبطة بالمستخدم الخاص بك، ولكن يرجى مراعاة أن <0>هذا الإجراء لا رجعة فيه</0>."
|
msgstr "في هذا القسم، يمكنك حذف حسابك وجميع البيانات المرتبطة بالمستخدم الخاص بك، ولكن يرجى مراعاة أن <0>هذا الإجراء لا رجعة فيه</0>."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "المعلومات"
|
msgstr "المعلومات"
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr "john.doe@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "الكلمات المفتاحية"
|
msgstr "الكلمات المفتاحية"
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr "آخر تحديث {lastUpdated}"
|
msgstr "آخر تحديث {lastUpdated}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "التصميم"
|
msgstr "التصميم"
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr "رسالة"
|
msgstr "رسالة"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr "المستوى"
|
msgstr "المستوى"
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr "مضيئ"
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr "سمة مضيئة أو داكنة"
|
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"
|
msgid "Line Height"
|
||||||
msgstr "ارتفاع الخط"
|
msgstr "ارتفاع الخط"
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr "ارتفاع الخط"
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr "لينكد إن، JSON Resume، إلخ."
|
msgstr "لينكد إن، JSON Resume، إلخ."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr "قائمة"
|
msgstr "قائمة"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr "تسجيل الخروج"
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr "أفقدت جهازك؟"
|
msgstr "أفقدت جهازك؟"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr "رئيسي"
|
msgstr "رئيسي"
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr "مارس 2023"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr "مارس 2023 - حتى الآن"
|
msgstr "مارس 2023 - حتى الآن"
|
||||||
@ -923,7 +962,7 @@ msgstr "مارس 2023 - حتى الآن"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "هامش"
|
msgstr "هامش"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "الحد الأقصى للرموز"
|
msgstr "الحد الأقصى للرموز"
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr "الحد الأقصى للرموز"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "رخصة MIT"
|
msgstr "رخصة MIT"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "الموديل"
|
msgstr "الموديل"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr "الاسم"
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "الشبكة"
|
msgstr "الشبكة"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||||
msgid "New Password"
|
msgid "New Password"
|
||||||
msgstr "كلمة مرور جديدة"
|
msgstr "كلمة مرور جديدة"
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr "ملاحظة: هذا سيجعل حسابك أقل أمانًا."
|
msgstr "ملاحظة: هذا سيجعل حسابك أقل أمانًا."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "ملاحظات"
|
msgstr "ملاحظات"
|
||||||
@ -1009,16 +1049,16 @@ msgstr "لم يُرجع OpenAI أي اختيارات للنص الخاص بك."
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "تكامل مع OpenAI"
|
msgstr "تكامل مع OpenAI"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
msgstr "تكامل OpenAI/Azure OpenAI/Ollama"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr "مفتاح OpenAI/Ollama API"
|
msgstr "مفتاح OpenAI/Ollama API"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
|
||||||
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/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"
|
msgid "Options"
|
||||||
msgstr "خيارات"
|
msgstr "خيارات"
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr "الشركة"
|
msgstr "الشركة"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "صفحة"
|
msgstr "صفحة"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr "الصفحة {pageNumber}"
|
msgstr "الصفحة {pageNumber}"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr "كلمة المرور"
|
msgstr "كلمة المرور"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr "PDF"
|
msgstr "PDF"
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr "مدعوم من <0>أيس بسيط</0>"
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr "اللون الأساسي"
|
msgstr "اللون الأساسي"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr "سياسة الخصوصية"
|
msgstr "سياسة الخصوصية"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr "مهني"
|
msgstr "مهني"
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr "عامة"
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "الناشر"
|
msgstr "الناشر"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr "طرح مشكلة"
|
msgstr "طرح مشكلة"
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr "طرح مشكلة"
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr "إعادة التفاعل تزدهر بفضل مجتمعها النشط.
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "إعادة"
|
msgstr "إعادة"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "إزالة"
|
msgstr "إزالة"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr "إزالة الصفحة"
|
msgstr "إزالة الصفحة"
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr "إعادة إرسال رابط تأكيد البريد الإلكترو
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr "إعادة تعيين"
|
msgstr "إعادة تعيين"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr "إعادة تعيين التصميم"
|
msgstr "إعادة تعيين التصميم"
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr "إعادة ضبط التكبير"
|
msgstr "إعادة ضبط التكبير"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr "السير الذاتية"
|
msgstr "السير الذاتية"
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr "مدوّر"
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "حفظ التّغييرات"
|
msgstr "حفظ التّغييرات"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "الحفظ في الجهاز (محلياً)"
|
msgstr "الحفظ في الجهاز (محلياً)"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "تم الحفظ"
|
msgstr "تم الحفظ"
|
||||||
|
|
||||||
@ -1262,15 +1300,15 @@ msgstr "التمرير إلى المقلاة"
|
|||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr "التمرير للتكبير"
|
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"
|
msgid "Search for a font family"
|
||||||
msgstr "ابحث عن عائلة خطوط"
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr "البحث عن مجموعة خطوط فرعية"
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr "ابحث عن متغير الخط"
|
msgstr "ابحث عن متغير الخط"
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr "ابحث عن لغة"
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr "أمّن بالمصادقة الثنائية"
|
msgstr "أمّن بالمصادقة الثنائية"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "الأمان"
|
msgstr "الأمان"
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr "الاستضافة الذاتية مع Docker"
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr "إرسال بريد إلكتروني"
|
msgstr "إرسال بريد إلكتروني"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr "أرسل لي رسالة"
|
msgstr "أرسل لي رسالة"
|
||||||
|
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr "أعدّ المصادقة الثنائية على حسابك"
|
msgstr "أعدّ المصادقة الثنائية على حسابك"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr "المشاركة"
|
msgstr "المشاركة"
|
||||||
@ -1330,7 +1369,7 @@ msgstr "إظهار الخط الفاصل"
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr "إظهار أرقام الصفحات"
|
msgstr "إظهار أرقام الصفحات"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "الشريط الجانبي"
|
msgstr "الشريط الجانبي"
|
||||||
|
|
||||||
@ -1408,6 +1447,7 @@ msgid "Start building your resume by giving it a name."
|
|||||||
msgstr "ابدأ في بناء مستأنفتك عن طريق إعطائها اسماً."
|
msgstr "ابدأ في بناء مستأنفتك عن طريق إعطائها اسماً."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr "الإحصائيات"
|
msgstr "الإحصائيات"
|
||||||
@ -1422,17 +1462,17 @@ msgstr "تخزين رموز النسخ الاحتياطي الخاص بك بشك
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr "Summary"
|
msgstr "Summary"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr "دعم التطبيق عن طريق التبرع بما يمكنك!"
|
msgstr "دعم التطبيق عن طريق التبرع بما يمكنك!"
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr "دعم الإستئناف"
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr "يدعم تنسيقات صفحة A4/رسالة"
|
msgstr "يدعم تنسيقات صفحة A4/رسالة"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr "التبديل إلى الوضع المظلم"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr "التبديل إلى وضع الضوء"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr "النظام"
|
msgstr "النظام"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "قالب"
|
msgstr "قالب"
|
||||||
@ -1465,15 +1514,20 @@ msgstr "الشهادات"
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr "لون النص"
|
msgstr "لون النص"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
msgstr "كلمات المرور التي أدخلتها غير متطابقة."
|
msgstr "الصفحة التي تبحث عنها غير موجودة."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
|
msgstr "الطلب غير صالح."
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: 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."
|
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||||
msgstr "تم تأمين الاستئناف الذي تريد تحديثه، يرجى إلغاء قفل إذا كنت ترغب في إجراء أي تغييرات عليه."
|
msgstr "تم تأمين الاستئناف الذي تريد تحديثه، يرجى إلغاء قفل إذا كنت ترغب في إجراء أي تغييرات عليه."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
#: 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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,7 @@ msgstr "تتبع وجهات النظر والتنزيلات"
|
|||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr "المصادقة الثنائية"
|
msgstr "المصادقة الثنائية"
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr "نوع الدراسة"
|
msgstr "نوع الدراسة"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr "الطبقات"
|
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"
|
msgid "Underline Links"
|
||||||
msgstr "أسفل الروابط"
|
msgstr "أسفل الروابط"
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr "الرابط"
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr "عنوان URL يجب أن يبدأ بـ https://"
|
msgstr "عنوان URL يجب أن يبدأ بـ https://"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr "استخدام Azure OpenAI"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr "استخدام سمة النظام"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,7 +1714,7 @@ msgstr "الإصدار 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "المشاهدات"
|
msgstr "المشاهدات"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "مرئي"
|
msgstr "مرئي"
|
||||||
|
|
||||||
@ -1665,11 +1728,11 @@ msgstr "نحن نقوم بالتحقق من عنوان البريد الإلكت
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr "الموقع"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "ما هو الجديد في أحدث إصدار"
|
msgstr "ما هو الجديد في أحدث إصدار"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr "ليس لديك صلاحية لدخول هذه الصفحة."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "يمكنك إضافة عدة كلمات مفتاحية عن طريق فصلها بفاصلة أو الضغط على إدخال."
|
msgstr "يمكنك إضافة عدة كلمات مفتاحية عن طريق فصلها بفاصلة أو الضغط على إدخال."
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr "يمكنك إضافة عدة كلمات مفتاحية عن طريق ف
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "يمكنك أيضًا إدخال اسم المستخدم الخاص بك."
|
msgstr "يمكنك أيضًا إدخال اسم المستخدم الخاص بك."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr "يمكنك أيضًا التكامل مع Ollama ببساطة عن طريق تعيين مفتاح واجهة برمجة التطبيقات على 'ssk-1234567867890abcdef' وعنوان URL الأساسي إلى عنوان URL الخاص ب Ollama، أي 'http://localhost:11434/v1'. يمكنك أيضًا انتقاء واختيار النماذج وتعيين الحد الأقصى للرموز المميزة حسب تفضيلاتك."
|
msgstr "يمكنك أيضا التكامل مع Azure OpenAI عن طريق تمكين خانة الاختيار <0>استخدام Azure OpenAI</0> وتعيين عنوان URL المصدر إلى مصدر Azure OpenAI الخاص بك: <1>https://your-resource. penai.azure.com</1>. عيّن اسم الانتشار في حقل النموذج وحدد إصدار API المناسب لنشر Azure الخاص بك."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
msgstr "يمكنك استخدام واجهة برمجة تطبيقات OpenAI لمساعدتك في إنشاء المحتوى، أو تحسين الكتابة الخاصة بك أثناء تشكيل استعادتك."
|
msgstr "يمكنك أيضا الدمج مع أولاما ببساطة عن طريق تعيين مفتاح API إلى <0>sk-1234567890abcdef</0> و عنوان URL الأساسي إلى عنوان Ollama URL، ي. .<1>http://localhost:11434/v1</1>. يمكنك أيضًا اختيار النماذج واختيار الحد الأقصى للرموز المميزة حسب تفضيلاتك."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
|
msgstr "يمكنك استخدام واجهة برمجة تطبيقات OpenAI أو Azure OpenAI أو Ollama لمساعدتك على إنشاء المحتوى، أو تحسين الكتابة الخاصة بك أثناء تشكيل مستأنفتك."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "يمكنك تتبع عدد المشاهدات التي استلمتها في الاستئناف الخاص بك، أو كم عدد الأشخاص الذين قاموا بتنزيل الاستكمال عن طريق تمكين المشاركة العامة."
|
msgstr "يمكنك تتبع عدد المشاهدات التي استلمتها في الاستئناف الخاص بك، أو كم عدد الأشخاص الذين قاموا بتنزيل الاستكمال عن طريق تمكين المشاركة العامة."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr "ليس لديك الصلاحية للوصول إلى هذه الصفحة."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "لديك خيار <0>الحصول على مفتاح API OpenAI الخاص بك </0>. هذا المفتاح يمكّنك من استخدام API كما تراه مناسباً. بدلاً من ذلك، إذا كنت ترغب في تعطيل ميزات الذكاء الاصطناعي في الاستئناف التفاعلي تماماً، يمكنك ببساطة إزالة المفتاح من الإعدادات الخاصة بك."
|
msgstr "لديك خيار <0>الحصول على مفتاح API OpenAI الخاص بك </0>. هذا المفتاح يمكّنك من استخدام API كما تراه مناسباً. بدلاً من ذلك، إذا كنت ترغب في تعطيل ميزات الذكاء الاصطناعي في الاستئناف التفاعلي تماماً، يمكنك ببساطة إزالة المفتاح من الإعدادات الخاصة بك."
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr "لديك بريد!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "تم حذف حسابك وجميع بياناتك بنجاح. جيد!"
|
msgstr "تم حذف حسابك وجميع بياناتك بنجاح. جيد!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "يتم تخزين مفتاح API الخاص بك بشكل آمن في التخزين المحلي للمتصفح ويتم استخدامه فقط عند تقديم طلبات إلى OpenAI عن طريق SDK الرسمية الخاصة بهم. تأكد من أن المفتاح الخاص بك لا يتم إرساله إلى أي خادم خارجي إلا عند التفاعل مع خدمات OpenAI."
|
msgstr "يتم تخزين مفتاح API الخاص بك بشكل آمن في التخزين المحلي للمتصفح ويتم استخدامه فقط عند تقديم طلبات إلى OpenAI عن طريق SDK الرسمية الخاصة بهم. تأكد من أن المفتاح الخاص بك لا يتم إرساله إلى أي خادم خارجي إلا عند التفاعل مع خدمات OpenAI."
|
||||||
|
|
||||||
@ -1733,7 +1808,7 @@ msgstr "تم التحقق من عنوان البريد الإلكتروني ال
|
|||||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||||
msgstr "لم يتم تعيين مفتاح API OpenAI الخاص بك بعد. يرجى الذهاب إلى إعدادات الحساب الخاص بك لتمكين تكامل OpenAI."
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr "تم تحديث كلمة المرور الخاصة بك بنجاح."
|
msgstr "تم تحديث كلمة المرور الخاصة بك بنجاح."
|
||||||
|
|
||||||
|
|||||||
1822
apps/client/src/locales/az-AZ/messages.po
Normal file
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: bg\n"
|
"Language: bg\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:40\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Bulgarian\n"
|
"Language-Team: Bulgarian\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -30,27 +30,27 @@ msgstr "{templatesCount} шаблони на автобиографии, от к
|
|||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr "{value, plural, one {Колона} other {Колони}}"
|
msgstr "{value, plural, one {Колона} other {Колони}}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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 предимно сам през свободното си време, с голяма помощ от други големи автори на отворен код.</0><1>Ако харесвате приложението и искате да подкрепите запазването на безплатността му завинаги, моля, дарете каквото можете да си позволите.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 "<0>Забележка: </0>Използвайки API на OpenAI, вие потвърждавате и приемате <1>условията за използване</1> и <2>политиката за поверителност,</2> описани от OpenAI. Моля, обърнете внимание, че Reactive Resume не носи отговорност за неправилно или неразрешено използване на услугата и всички произтичащи от това последствия или отговорности са единствено за сметка на потребителя."
|
msgstr "<0>Забележка: </0>Използвайки API на OpenAI, вие потвърждавате и приемате <1>условията за използване</1> и <2>политиката за поверителност,</2> описани от OpenAI. Моля, обърнете внимание, че Reactive Resume не носи отговорност за неправилно или неразрешено използване на услугата и всички произтичащи от това последствия или отговорности са единствено за сметка на потребителя."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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>"
|
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."
|
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||||
msgstr "<0>Понастоящем двуфакторното удостоверяване е деактивирано.</0> Можете да я активирате, като добавите приложение за удостоверяване към профила си."
|
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."
|
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||||
msgstr "<0>Разрешено е двуфакторно удостоверяване.</0> Всеки път, когато влизате в системата, ще бъдете помолени да въведете код."
|
msgstr "<0>Разрешено е двуфакторно удостоверяване.</0> Всеки път, когато влизате в системата, ще бъдете помолени да въведете код."
|
||||||
|
|
||||||
@ -102,8 +102,8 @@ msgstr "Сметка"
|
|||||||
msgid "Add a custom field"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Добавяне на нов елемент"
|
msgstr "Добавяне на нов елемент"
|
||||||
@ -117,7 +117,7 @@ msgstr "Добавяне на нов елемент"
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr "Добавяне на нов раздел"
|
msgstr "Добавяне на нов раздел"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr "Добавяне на нова страница"
|
msgstr "Добавяне на нова страница"
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr "Вече имате акаунт?"
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr "Възникна грешка при валидирането на файла."
|
msgstr "Възникна грешка при валидирането на файла."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr "Възникнала е вътрешна грешка на сървъра."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr "Възникна неочаквана грешка."
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr "и много други..."
|
msgstr "и много други..."
|
||||||
@ -191,6 +199,18 @@ msgstr "Предлага се на {languagesCount} езици"
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr "Награждаващ"
|
msgstr "Награждаващ"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr "Версия на Azure API"
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr "При използване на Azure OpenAI се изискват базов URL адрес, име на внедряване (модел) и версия на API."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr "URL адрес на ресурса на Azure OpenAI"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,7 +229,7 @@ msgstr "Код за резервно копие"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Кодовете за архивиране могат да съдържат само малки букви или цифри и трябва да са точно 10 символа."
|
msgstr "Кодовете за архивиране могат да съдържат само малки букви или цифри и трябва да са точно 10 символа."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "Базов URL адрес"
|
msgstr "Базов URL адрес"
|
||||||
|
|
||||||
@ -246,8 +266,8 @@ msgstr "От общността, за общността."
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Отмяна на"
|
msgstr "Отмяна на"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr "Случайно"
|
msgstr "Случайно"
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr "Случайно"
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr "Център Артборд"
|
msgstr "Център Артборд"
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr "Промяна на езика"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr "Промяна на паролата"
|
msgstr "Промяна на паролата"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr "Промяна на тона"
|
msgstr "Промяна на тона"
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr "Колони"
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr "Компания"
|
msgstr "Компания"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr "Уверен"
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Продължи"
|
msgstr "Продължи"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Копие"
|
msgstr "Копие"
|
||||||
|
|
||||||
@ -351,7 +371,12 @@ msgstr "Създайте такъв сега"
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr "Създаване на примерна автобиография"
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr "Потребителски CSS"
|
msgstr "Потребителски CSS"
|
||||||
@ -386,10 +411,10 @@ msgstr "Dark"
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Дата"
|
msgstr "Дата"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Дата или диапазон от дати"
|
msgstr "Дата или диапазон от дати"
|
||||||
@ -407,11 +432,15 @@ msgstr "Изтриване на"
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr "Изтриване на профила"
|
msgstr "Изтриване на профила"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr "Име на внедряване"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Описание"
|
msgstr "Описание"
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr "Проектиране на автобиографии от една/н
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr "Деактивиране на"
|
msgstr "Деактивиране на"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||||
msgid "Disable 2FA"
|
msgid "Disable 2FA"
|
||||||
msgstr "Деактивиране на 2FA"
|
msgstr "Деактивиране на 2FA"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr "Изхвърляне"
|
msgstr "Изхвърляне"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Документация"
|
msgstr "Документация"
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr "Документация"
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr "Нямате акаунт?"
|
msgstr "Нямате акаунт?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr "Не знаете откъде да започнете? Обърнете се към документите!"
|
msgstr "Не знаете откъде да започнете? Обърнете се към документите!"
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr "Не знаете откъде да започнете? Обърнете
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr "Не виждате своя език? <0>Помогнете за превода на приложението.</0>"
|
msgstr "Не виждате своя език? <0>Помогнете за превода на приложението.</0>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr "Дарете за Reactive Resume"
|
msgstr "Дарете за Reactive Resume"
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr "Дарете за Reactive Resume"
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr "Изтеглете JSON снимка на автобиографията си. Този файл може да се използва за импортиране на автобиографията ви в бъдеще или дори да бъде споделен с други хора за съвместна работа."
|
msgstr "Изтеглете JSON снимка на автобиографията си. Този файл може да се използва за импортиране на автобиографията ви в бъдеще или дори да бъде споделен с други хора за съвместна работа."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
msgstr "Изтеглете PDF файл с автобиографията си. Този файл може да се използва за отпечатване на автобиографията ви, за изпращане до специалисти по подбор на персонал или за качване в портали за работа."
|
msgstr "Изтеглете PDF файл с автобиографията си. Този файл може да се използва за отпечатване на автобиографията ви, за изпращане до специалисти по подбор на персонал или за качване в портали за работа."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr "Изтегляне на PDF"
|
msgstr "Изтегляне на PDF"
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr "Дублиране на съществуващ елемент"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Дублиране на съществуваща автобиография"
|
msgstr "Дублиране на съществуваща автобиография"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Редактиране на"
|
msgstr "Редактиране на"
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr "Ефекти"
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr "Имейл"
|
msgstr "Имейл"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||||
msgid "Enable 2FA"
|
msgid "Enable 2FA"
|
||||||
msgstr "Активиране на 2FA"
|
msgstr "Активиране на 2FA"
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr "Въведете еднократната парола, предоста
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr "Въведете имейл адреса си и ние ще ви изпратим връзка за възстановяване на паролата, ако акаунтът съществува."
|
msgstr "Въведете имейл адреса си и ние ще ви изпратим връзка за възстановяване на паролата, ако акаунтът съществува."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr "Грешка {statusCode}"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr "Грешки"
|
msgstr "Грешки"
|
||||||
@ -544,6 +576,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
|||||||
msgstr "Разгледайте шаблоните, налични в Reactive Resume, и вижте автобиографиите, създадени с тях. Те могат да послужат и като примери, които да ви помогнат да създадете следващата си автобиография."
|
msgstr "Разгледайте шаблоните, налични в Reactive Resume, и вижте автобиографиите, създадени с тях. Те могат да послужат и като примери, които да ви помогнат да създадете следващата си автобиография."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr "Експорт"
|
msgstr "Експорт"
|
||||||
@ -564,19 +597,19 @@ msgstr "Накрая,"
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr "Поправяне на правописа и граматиката"
|
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"
|
msgid "Font Family"
|
||||||
msgstr "Семейство шрифтове"
|
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"
|
msgid "Font Size"
|
||||||
msgstr "Размер на шрифта"
|
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"
|
msgid "Font Subset"
|
||||||
msgstr "Подгрупа шрифтове"
|
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"
|
msgid "Font Variants"
|
||||||
msgstr "Варианти на шрифта"
|
msgstr "Варианти на шрифта"
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr "Варианти на шрифта"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "Например тук може да се запише информация за компаниите, на които сте изпратили автобиографията, или връзки към описанията на длъжностите."
|
msgstr "Например тук може да се запише информация за компаниите, на които сте изпратили автобиографията, или връзки към описанията на длъжностите."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Забравете"
|
msgstr "Забравете"
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr "Забравили сте паролата си?"
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr "Формат"
|
msgstr "Формат"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr "Открили сте грешка или имате идея за нова функция?"
|
msgstr "Открили сте грешка или имате идея за нова функция?"
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr "Открили сте грешка или имате идея за но
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr "Безплатно, завинаги"
|
msgstr "Безплатно, завинаги"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr "Приятелски"
|
msgstr "Приятелски"
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr "Дайте ново име на старото си резюме."
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr "Отидете на таблото за управление"
|
msgstr "Отидете на таблото за управление"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr "Отиди на дома"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr "Google"
|
msgstr "Google"
|
||||||
@ -651,7 +688,7 @@ msgstr "Google"
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr "Сива скала"
|
msgstr "Сива скала"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr "Мрежа"
|
msgstr "Мрежа"
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr "Тук можете да актуализирате профила си, за да персонализирате работата си."
|
msgstr "Тук можете да актуализирате профила си, за да персонализирате работата си."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Скрит"
|
msgstr "Скрит"
|
||||||
@ -677,7 +714,7 @@ msgstr "Скрит"
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr "Скрий"
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr "Скриване на икони"
|
msgstr "Скриване на икони"
|
||||||
|
|
||||||
@ -734,7 +771,7 @@ msgstr "Подобряване на писането"
|
|||||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||||
msgstr "В случай че не можете да сканирате този QR код, можете също така да копирате и поставите тази връзка в приложението си за удостоверяване на автентичност."
|
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."
|
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||||
msgstr "В този раздел можете да промените паролата си и да активирате/деактивирате двуфакторното удостоверяване."
|
msgstr "В този раздел можете да промените паролата си и да активирате/деактивирате двуфакторното удостоверяване."
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ msgid "In this section, you can delete your account and all the data associated
|
|||||||
msgstr "В този раздел можете да изтриете профила си и всички данни, свързани с него, но имайте предвид, че <0>това действие е необратимо</0>."
|
msgstr "В този раздел можете да изтриете профила си и всички данни, свързани с него, но имайте предвид, че <0>това действие е необратимо</0>."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Информация"
|
msgstr "Информация"
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr "john.doe@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Ключови думи"
|
msgstr "Ключови думи"
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr "Последна актуализация {lastUpdated}"
|
msgstr "Последна актуализация {lastUpdated}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Макет"
|
msgstr "Макет"
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr "Писмо"
|
msgstr "Писмо"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr "Ниво"
|
msgstr "Ниво"
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr "Светлина"
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr "Светла или тъмна тема"
|
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"
|
msgid "Line Height"
|
||||||
msgstr "Височина на линията"
|
msgstr "Височина на линията"
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr "Височина на линията"
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr "LinkedIn, JSON Resume и др."
|
msgstr "LinkedIn, JSON Resume и др."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr "Списък"
|
msgstr "Списък"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr "Излизане от системата"
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr "Загубили сте устройството си?"
|
msgstr "Загубили сте устройството си?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr "Основен"
|
msgstr "Основен"
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr "март 2023 г."
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr "март 2023 - Настояще"
|
msgstr "март 2023 - Настояще"
|
||||||
@ -923,7 +962,7 @@ msgstr "март 2023 - Настояще"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Марж"
|
msgstr "Марж"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "Максимален брой жетони"
|
msgstr "Максимален брой жетони"
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr "Максимален брой жетони"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "Лиценз MIT"
|
msgstr "Лиценз MIT"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "Модел"
|
msgstr "Модел"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr "Име"
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Мрежа"
|
msgstr "Мрежа"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||||
msgid "New Password"
|
msgid "New Password"
|
||||||
msgstr "Нова парола"
|
msgstr "Нова парола"
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr "Забележка: Това ще намали сигурността на акаунта ви."
|
msgstr "Забележка: Това ще намали сигурността на акаунта ви."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Бележки"
|
msgstr "Бележки"
|
||||||
@ -1009,16 +1049,16 @@ msgstr "OpenAI не върна никакви варианти за вашия
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "Интеграция на OpenAI"
|
msgstr "Интеграция на OpenAI"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
msgstr "Интеграция на OpenAI/Azure OpenAI/Ollama"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr "Ключ за API на OpenAI/Ollama"
|
msgstr "Ключ за API на OpenAI/Ollama"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
|
||||||
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/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"
|
msgid "Options"
|
||||||
msgstr "Опции"
|
msgstr "Опции"
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr "Организация"
|
msgstr "Организация"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "Страница"
|
msgstr "Страница"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr "Страница {pageNumber}"
|
msgstr "Страница {pageNumber}"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr "Парола"
|
msgstr "Парола"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr "PDF"
|
msgstr "PDF"
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr "Осъществено от <0>Simple Icons</0>"
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr "Основен цвят"
|
msgstr "Основен цвят"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr "Политика за поверителност"
|
msgstr "Политика за поверителност"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr "Професионален"
|
msgstr "Професионален"
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr "Публичен"
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "Издател"
|
msgstr "Издател"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr "Повдигане на въпрос"
|
msgstr "Повдигане на въпрос"
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr "Повдигане на въпрос"
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr "Reactive Resume процъфтява благодарение на св
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Redo"
|
msgstr "Redo"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Премахване на"
|
msgstr "Премахване на"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr "Премахване на страницата"
|
msgstr "Премахване на страницата"
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr "Повторно изпращане на връзка за потвър
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr "Нулиране на"
|
msgstr "Нулиране на"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr "Нулиране на оформлението"
|
msgstr "Нулиране на оформлението"
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr "Нулиране на мащаба"
|
msgstr "Нулиране на мащаба"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr "Резюмета"
|
msgstr "Резюмета"
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr "Заоблени"
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Запазване на промените"
|
msgstr "Запазване на промените"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "Запазване на местно ниво"
|
msgstr "Запазване на местно ниво"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Запазено"
|
msgstr "Запазено"
|
||||||
|
|
||||||
@ -1262,15 +1300,15 @@ msgstr "Превъртете към Pan"
|
|||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr "Превъртете, за да увеличите мащаба"
|
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"
|
msgid "Search for a font family"
|
||||||
msgstr "Търсене на семейство шрифтове"
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr "Търсене на подмножество на шрифт"
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr "Търсене на вариант на шрифт"
|
msgstr "Търсене на вариант на шрифт"
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr "Търсене на език"
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr "Сигурност с двуфакторно удостоверяване"
|
msgstr "Сигурност с двуфакторно удостоверяване"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "Защита"
|
msgstr "Защита"
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr "Самостоятелно хостване с Docker"
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr "Изпращане на имейл"
|
msgstr "Изпращане на имейл"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr "Изпратете ми съобщение"
|
msgstr "Изпратете ми съобщение"
|
||||||
|
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr "Настройка на двуфакторно удостоверяване в акаунта ви"
|
msgstr "Настройка на двуфакторно удостоверяване в акаунта ви"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr "Споделяне на"
|
msgstr "Споделяне на"
|
||||||
@ -1330,7 +1369,7 @@ msgstr "Показване на линия на прекъсване"
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr "Показване на номера на страници"
|
msgstr "Показване на номера на страници"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Странична лента"
|
msgstr "Странична лента"
|
||||||
|
|
||||||
@ -1408,6 +1447,7 @@ msgid "Start building your resume by giving it a name."
|
|||||||
msgstr "Започнете да изграждате автобиографията си, като й дадете име."
|
msgstr "Започнете да изграждате автобиографията си, като й дадете име."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr "Статистика"
|
msgstr "Статистика"
|
||||||
@ -1422,17 +1462,17 @@ msgstr "Съхранявайте сигурно кодовете си за ар
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr "Резюме"
|
msgstr "Резюме"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr "Подкрепете приложението, като дарите каквото можете!"
|
msgstr "Подкрепете приложението, като дарите каквото можете!"
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr "Поддържане на реактивно резюме"
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr "Поддържа формати на страници A4/Letter"
|
msgstr "Поддържа формати на страници A4/Letter"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr "Превключване към тъмен режим"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr "Превключване в режим на светлина"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr "Система"
|
msgstr "Система"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "Шаблон"
|
msgstr "Шаблон"
|
||||||
@ -1465,15 +1514,20 @@ msgstr "Отзиви"
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr "Цвят на текста"
|
msgstr "Цвят на текста"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
msgstr "Въведените пароли не съвпадат."
|
msgstr "Страницата, която търсите, не съществува."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
|
msgstr "Заявката е невалидна."
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: 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."
|
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||||
msgstr "Автобиографията, която искате да актуализирате, е заключена, моля, отключете я, ако искате да направите промени в нея."
|
msgstr "Автобиографията, която искате да актуализирате, е заключена, моля, отключете я, ако искате да направите промени в нея."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
#: 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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,7 @@ msgstr "Проследяване на изгледи и изтегляния"
|
|||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr "Двуфакторно удостоверяване на автентичността"
|
msgstr "Двуфакторно удостоверяване на автентичността"
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr "Вид на изследването"
|
msgstr "Вид на изследването"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr "Типография"
|
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"
|
msgid "Underline Links"
|
||||||
msgstr "Подчертаване на връзки"
|
msgstr "Подчертаване на връзки"
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr "URL"
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr "URL адресът трябва да започва с https://"
|
msgstr "URL адресът трябва да започва с https://"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr "Използване на Azure OpenAI"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr "Използване на темата на системата"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,7 +1714,7 @@ msgstr "Версия 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Прегледи"
|
msgstr "Прегледи"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Видим"
|
msgstr "Видим"
|
||||||
|
|
||||||
@ -1665,11 +1728,11 @@ msgstr "Проверяваме имейл адреса ви само за да
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr "Уебсайт"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Какво е новото в последната версия"
|
msgstr "Какво е новото в последната версия"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr "Нямате право на достъп до тази страница."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Можете да добавите няколко ключови думи, като ги разделите със запетая или натиснете Enter."
|
msgstr "Можете да добавите няколко ключови думи, като ги разделите със запетая или натиснете Enter."
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr "Можете да добавите няколко ключови дум
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Можете да въведете и потребителското си име."
|
msgstr "Можете да въведете и потребителското си име."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr "Можете също така да се интегрирате с Ollama, като просто зададете API ключа на `sk-1234567890abcdef`, а базовия URL адрес - на вашия URL адрес на Ollama, т.е. `http://localhost:11434/v1`. Можете също така да избирате модели и да задавате максималните токени според предпочитанията си."
|
msgstr "Можете също така да се интегрирате с Azure OpenAI, като поставите отметка в квадратчето <0>Use Azure OpenAI</0> и зададете URL адрес на ресурса на вашия ресурс Azure OpenAI: <1>https://your-resource.openai.azure.com.</1> Задайте името на внедряването в полето Model (Модел) и посочете подходящата версия на API за вашето внедряване в Azure."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
msgstr "Можете да използвате приложния програмен интерфейс на OpenAI, за да генерирате съдържание, или да подобрите писането, докато съставяте автобиографията си."
|
msgstr "Можете също така да се интегрирате с Ollama, като просто зададете API ключа<0>tosk-1234567890abcdef</0>, а базовия URL адрес - вашия URL адрес на Ollama, т.е.<1>http://localhost:11434/v1.</1> Можете също така да избирате модели и да задавате максималните токени според предпочитанията си."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
|
msgstr "Можете да използвате приложния програмен интерфейс OpenAI, Azure OpenAI или Ollama, за да генерирате съдържание или да подобрите писането си, докато съставяте автобиографията си."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Можете да проследите броя на прегледите на автобиографията си или колко души са я изтеглили, като разрешите публичното споделяне."
|
msgstr "Можете да проследите броя на прегледите на автобиографията си или колко души са я изтеглили, като разрешите публичното споделяне."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr "Нямате разрешение за достъп до тази страница."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "Имате възможност да <0>получите собствен API ключ на OpenAI</0>. Този ключ ви дава възможност да използвате API по ваша преценка. Ако желаете да деактивирате функциите на изкуствения интелект в Reactive Resume, можете просто да премахнете ключа от настройките си."
|
msgstr "Имате възможност да <0>получите собствен API ключ на OpenAI</0>. Този ключ ви дава възможност да използвате API по ваша преценка. Ако желаете да деактивирате функциите на изкуствения интелект в Reactive Resume, можете просто да премахнете ключа от настройките си."
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr "Имате поща!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Вашият акаунт и всички ваши данни са изтрити успешно. Сбогом!"
|
msgstr "Вашият акаунт и всички ваши данни са изтрити успешно. Сбогом!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "Вашият API ключ се съхранява по сигурен начин в локалното хранилище на браузъра и се използва само при извършване на заявки към OpenAI чрез официалния им SDK. Бъдете сигурни, че вашият ключ не се предава на външен сървър, освен при взаимодействие с услугите на OpenAI."
|
msgstr "Вашият API ключ се съхранява по сигурен начин в локалното хранилище на браузъра и се използва само при извършване на заявки към OpenAI чрез официалния им SDK. Бъдете сигурни, че вашият ключ не се предава на външен сървър, освен при взаимодействие с услугите на OpenAI."
|
||||||
|
|
||||||
@ -1733,7 +1808,7 @@ msgstr "Имейл адресът ви е проверен успешно."
|
|||||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||||
msgstr "Вашият API ключ на OpenAI все още не е зададен. Моля, отидете в настройките на профила си, за да разрешите интеграцията с OpenAI."
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr "Вашата парола е актуализирана успешно."
|
msgstr "Вашата парола е актуализирана успешно."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: bn\n"
|
"Language: bn\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:32\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Bengali\n"
|
"Language-Team: Bengali\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -30,27 +30,27 @@ msgstr "{templatesCount}জীবনবৃত্তান্ত টেমপ্
|
|||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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>অন্যান্য মহান ওপেন-সোর্স অবদানকারীদের অনেক সাহায্যে আমি আমার অতিরিক্ত সময়ে বেশিরভাগই নিজের দ্বারা প্রতিক্রিয়াশীল জীবনবৃত্তান্ত তৈরি করেছি।<0><1>আপনি যদি অ্যাপটি পছন্দ করেন এবং এটিকে চিরতরে বিনামূল্যে রাখতে সহায়তা করতে চান, তাহলে অনুগ্রহ করে আপনি যা দিতে পারেন তা দান করুন।</1>"
|
msgstr "</0>অন্যান্য মহান ওপেন-সোর্স অবদানকারীদের অনেক সাহায্যে আমি আমার অতিরিক্ত সময়ে বেশিরভাগই নিজের দ্বারা প্রতিক্রিয়াশীল জীবনবৃত্তান্ত তৈরি করেছি।<0><1>আপনি যদি অ্যাপটি পছন্দ করেন এবং এটিকে চিরতরে বিনামূল্যে রাখতে সহায়তা করতে চান, তাহলে অনুগ্রহ করে আপনি যা দিতে পারেন তা দান করুন।</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 "<0>দ্রষ্টব্য: </0>OpenAI API ব্যবহার করে, আপনি স্বীকার করেন এবং স্বীকার করেন<1>ব্যবহারের শর্তাবলী</1>এবং<2>গোপনীয়তা নীতি</2>OpenAI দ্বারা রূপরেখা। অনুগ্রহ করে মনে রাখবেন যে প্রতিক্রিয়াশীল জীবনবৃত্তান্ত পরিষেবাটির কোনও অনুপযুক্ত বা অননুমোদিত ব্যবহারের জন্য কোনও দায়বদ্ধতা বহন করে না এবং এর ফলে যে কোনও প্রতিক্রিয়া বা দায় সম্পূর্ণরূপে ব্যবহারকারীর উপর নির্ভর করে।"
|
msgstr "<0>দ্রষ্টব্য: </0>OpenAI API ব্যবহার করে, আপনি স্বীকার করেন এবং স্বীকার করেন<1>ব্যবহারের শর্তাবলী</1>এবং<2>গোপনীয়তা নীতি</2>OpenAI দ্বারা রূপরেখা। অনুগ্রহ করে মনে রাখবেন যে প্রতিক্রিয়াশীল জীবনবৃত্তান্ত পরিষেবাটির কোনও অনুপযুক্ত বা অননুমোদিত ব্যবহারের জন্য কোনও দায়বদ্ধতা বহন করে না এবং এর ফলে যে কোনও প্রতিক্রিয়া বা দায় সম্পূর্ণরূপে ব্যবহারকারীর উপর নির্ভর করে।"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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>"
|
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."
|
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||||
msgstr "<0>দ্বি-ফ্যাক্টর প্রমাণীকরণ বর্তমানে অক্ষম আছে৷</0>আপনি আপনার অ্যাকাউন্টে একটি প্রমাণীকরণকারী অ্যাপ যোগ করে এটি সক্ষম করতে পারেন।"
|
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."
|
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||||
msgstr "<0>দ্বি-ফ্যাক্টর প্রমাণীকরণ সক্ষম করা হয়েছে।</0>প্রতিবার সাইন ইন করার সময় আপনাকে একটি কোড লিখতে বলা হবে।"
|
msgstr "<0>দ্বি-ফ্যাক্টর প্রমাণীকরণ সক্ষম করা হয়েছে।</0>প্রতিবার সাইন ইন করার সময় আপনাকে একটি কোড লিখতে বলা হবে।"
|
||||||
|
|
||||||
@ -102,8 +102,8 @@ msgstr "খাতা "
|
|||||||
msgid "Add a custom field"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "একটি নতুন জিনিস যোগ করুন"
|
msgstr "একটি নতুন জিনিস যোগ করুন"
|
||||||
@ -117,7 +117,7 @@ msgstr "একটি নতুন জিনিস যোগ করুন"
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr "একটি নতুন বিভাগ যোগ করুন"
|
msgstr "একটি নতুন বিভাগ যোগ করুন"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr "নতুন পৃষ্ঠা যোগ করুন"
|
msgstr "নতুন পৃষ্ঠা যোগ করুন"
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr "ইতিমধ্যে একটি খাতা আছে?"
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr "ফাইলটি যাচাই করার সময় একটি ত্রুটি ঘটেছে৷"
|
msgstr "ফাইলটি যাচাই করার সময় একটি ত্রুটি ঘটেছে৷"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr "এবং আরো অনেক..."
|
msgstr "এবং আরো অনেক..."
|
||||||
@ -191,6 +199,18 @@ msgstr "{languagesCount} ভাষায় উপলব্ধ৷"
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr "পুরস্কারদাতা"
|
msgstr "পুরস্কারদাতা"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,7 +229,7 @@ msgstr "ব্যাকআপ কোড"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "ব্যাকআপ কোডে শুধুমাত্র ছোট হাতের অক্ষর বা সংখ্যা থাকতে পারে এবং অবশ্যই 10টি অক্ষর হতে হবে।"
|
msgstr "ব্যাকআপ কোডে শুধুমাত্র ছোট হাতের অক্ষর বা সংখ্যা থাকতে পারে এবং অবশ্যই 10টি অক্ষর হতে হবে।"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -246,8 +266,8 @@ msgstr "সম্প্রদায়ের দ্বারা, সম্প্
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "বাতিল করুন"
|
msgstr "বাতিল করুন"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr "নৈমিত্তিক"
|
msgstr "নৈমিত্তিক"
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr "নৈমিত্তিক"
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr ""
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr ""
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -351,7 +371,12 @@ msgstr ""
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr ""
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -386,10 +411,10 @@ msgstr ""
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -407,11 +432,15 @@ msgstr ""
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr ""
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||||
msgid "Disable 2FA"
|
msgid "Disable 2FA"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr ""
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr ""
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr ""
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr ""
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "সম্পাদন"
|
msgstr "সম্পাদন"
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr ""
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr "ইমেইল"
|
msgstr "ইমেইল"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||||
msgid "Enable 2FA"
|
msgid "Enable 2FA"
|
||||||
msgstr "2FA চালু করুন"
|
msgstr "2FA চালু করুন"
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr "নীচে আপনার অথিন্টিকেটার অ্
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr "আপনার ইমেল লিখুন এবং অ্যাকাউন্টটি বিদ্যমান থাকলে আপনার পাসওয়ার্ড পুনরায় সেট করার জন্য একটি লিঙ্ক পাঠানো হবে।"
|
msgstr "আপনার ইমেল লিখুন এবং অ্যাকাউন্টটি বিদ্যমান থাকলে আপনার পাসওয়ার্ড পুনরায় সেট করার জন্য একটি লিঙ্ক পাঠানো হবে।"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -544,6 +576,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -564,19 +597,19 @@ msgstr "অবশেষে,"
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr "বানান ও ব্যাকরণ ঠিক করুন"
|
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"
|
msgid "Font Family"
|
||||||
msgstr "ফন্ট ফ্যামিলি"
|
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"
|
msgid "Font Size"
|
||||||
msgstr "ফন্টের মাপ"
|
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"
|
msgid "Font Subset"
|
||||||
msgstr ""
|
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"
|
msgid "Font Variants"
|
||||||
msgstr "বিকল্প ফন্ট"
|
msgstr "বিকল্প ফন্ট"
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr "বিকল্প ফন্ট"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "উদাহরণস্বরূপ, আপনি কোন কোম্পানিতে এই জীবনবৃত্তান্ত পাঠিয়েছেন বা কাজের বিবরণের লিঙ্কগুলি এখানে উল্লেখ করা যেতে পারে"
|
msgstr "উদাহরণস্বরূপ, আপনি কোন কোম্পানিতে এই জীবনবৃত্তান্ত পাঠিয়েছেন বা কাজের বিবরণের লিঙ্কগুলি এখানে উল্লেখ করা যেতে পারে"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "ভুলে যান"
|
msgstr "ভুলে যান"
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr "আপনি কি পাসওয়ার্ড ভুলে গি
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr "রূপ"
|
msgstr "রূপ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr "কোনো ত্রুটি/সমস্যা অথবা কোনো নতুন ফিচারের আইডিয়া রয়েছে?"
|
msgstr "কোনো ত্রুটি/সমস্যা অথবা কোনো নতুন ফিচারের আইডিয়া রয়েছে?"
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr "কোনো ত্রুটি/সমস্যা অথবা কো
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr "সর্বদা সম্পূর্ণ বিনামূল্যে"
|
msgstr "সর্বদা সম্পূর্ণ বিনামূল্যে"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr "বন্ধুত্বপূর্ণ"
|
msgstr "বন্ধুত্বপূর্ণ"
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr "আপনার পুরানো জীবনবৃত্তান্
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr "ড্যাশবোর্ডে যান"
|
msgstr "ড্যাশবোর্ডে যান"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr "গুগল"
|
msgstr "গুগল"
|
||||||
@ -651,7 +688,7 @@ msgstr "গুগল"
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr "গ্রিড"
|
msgstr "গ্রিড"
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "গোপন করা"
|
msgstr "গোপন করা"
|
||||||
@ -677,7 +714,7 @@ msgstr "গোপন করা"
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr "লুকানো"
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr "আইকনগুলো লুকিয়ে রাখুন"
|
msgstr "আইকনগুলো লুকিয়ে রাখুন"
|
||||||
|
|
||||||
@ -734,7 +771,7 @@ msgstr ""
|
|||||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||||
msgstr ""
|
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."
|
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ msgid "In this section, you can delete your account and all the data associated
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr ""
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr ""
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr ""
|
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"
|
msgid "Line Height"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr ""
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr "লগআউট"
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr "আপনার ডিভাইসটি হারিয়ে গেছে?"
|
msgstr "আপনার ডিভাইসটি হারিয়ে গেছে?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr "প্রধান"
|
msgstr "প্রধান"
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr "মার্চ ২০২৩"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr "মার্চ ২০২৩ - বর্তমান"
|
msgstr "মার্চ ২০২৩ - বর্তমান"
|
||||||
@ -923,7 +962,7 @@ msgstr "মার্চ ২০২৩ - বর্তমান"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "মার্জিন"
|
msgstr "মার্জিন"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "এমআইটি লাইসেন্স"
|
msgstr "এমআইটি লাইসেন্স"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr "নাম"
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "নেটওয়ার্ক"
|
msgstr "নেটওয়ার্ক"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||||
msgid "New Password"
|
msgid "New Password"
|
||||||
msgstr "নতুন পাসওয়ার্ড"
|
msgstr "নতুন পাসওয়ার্ড"
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr "দ্রষ্টব্য: এটি আপনার অ্যাকাউন্টকে কম সুরক্ষিত করে তুলবে।"
|
msgstr "দ্রষ্টব্য: এটি আপনার অ্যাকাউন্টকে কম সুরক্ষিত করে তুলবে।"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "দ্রষ্টব্য:"
|
msgstr "দ্রষ্টব্য:"
|
||||||
@ -1009,16 +1049,16 @@ msgstr ""
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "OpenAI ইন্টিগ্রেশন"
|
msgstr "OpenAI ইন্টিগ্রেশন"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
|
||||||
msgid "OpenAI/Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: 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"
|
msgid "Options"
|
||||||
msgstr "বিকল্পসমূহ"
|
msgstr "বিকল্পসমূহ"
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr "প্রতিষ্ঠান"
|
msgstr "প্রতিষ্ঠান"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "পৃষ্ঠা"
|
msgstr "পৃষ্ঠা"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr "পাসওয়ার্ড"
|
msgstr "পাসওয়ার্ড"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr "পিডিএফ"
|
msgstr "পিডিএফ"
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr "<0>সাধারণ আইকন</0> দ্বারা চালি
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr "প্রাথমিক রঙ"
|
msgstr "প্রাথমিক রঙ"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr "পেশাদার"
|
msgstr "পেশাদার"
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr "পাবলিক"
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "প্রকাশক"
|
msgstr "প্রকাশক"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr "ত্রুটি / সমস্যা তুলে ধরুন"
|
msgstr "ত্রুটি / সমস্যা তুলে ধরুন"
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr "ত্রুটি / সমস্যা তুলে ধরুন"
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr ""
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr ""
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr ""
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1262,15 +1300,15 @@ msgstr ""
|
|||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr ""
|
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"
|
msgid "Search for a font family"
|
||||||
msgstr ""
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr ""
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr ""
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr ""
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1330,7 +1369,7 @@ msgstr ""
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1408,6 +1447,7 @@ msgid "Start building your resume by giving it a name."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1422,17 +1462,17 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr ""
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1465,8 +1514,12 @@ msgstr ""
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: apps/client/src/services/errors/translate-error.ts:49
|
||||||
@ -1474,6 +1527,7 @@ msgid "The resume you want to update is locked, please unlock if you wish to mak
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
#: 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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr ""
|
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"
|
msgid "Underline Links"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr ""
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,7 +1714,7 @@ msgstr ""
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1665,11 +1728,11 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr ""
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr ""
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr ""
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr ""
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1733,7 +1808,7 @@ msgstr ""
|
|||||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||||
msgstr ""
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: ca\n"
|
"Language: ca\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:32\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Catalan\n"
|
"Language-Team: Catalan\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -30,27 +30,27 @@ msgstr "{templatesCount} plantilles de currículum per triar"
|
|||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr "{value, plural, one {Columna} other {Columnes}}"
|
msgstr "{value, plural, one {Columna} other {Columnes}}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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 ""
|
||||||
|
|
||||||
#: 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."
|
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||||
msgstr ""
|
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."
|
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -102,8 +102,8 @@ msgstr "Compte"
|
|||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr "Afegir un camp personalitzat"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Afegiu un nou element"
|
msgstr "Afegiu un nou element"
|
||||||
@ -117,7 +117,7 @@ msgstr "Afegiu un nou element"
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr "Afegir una nova secció"
|
msgstr "Afegir una nova secció"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr "Afegeix una nova pàgina"
|
msgstr "Afegeix una nova pàgina"
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr "Ja tens un compte?"
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -191,6 +199,18 @@ msgstr ""
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,7 +229,7 @@ msgstr ""
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -246,8 +266,8 @@ msgstr ""
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr ""
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr ""
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr ""
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -351,7 +371,12 @@ msgstr ""
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr ""
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -386,10 +411,10 @@ msgstr "Fosc"
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Data"
|
msgstr "Data"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -407,11 +432,15 @@ msgstr ""
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr ""
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||||
msgid "Disable 2FA"
|
msgid "Disable 2FA"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr ""
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr ""
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr ""
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr ""
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr "Efectes"
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr "Correu electrònic"
|
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"
|
msgid "Enable 2FA"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr ""
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -544,6 +576,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -564,19 +597,19 @@ msgstr "Finalment,"
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr "Corregir ortografia i gramàtica"
|
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"
|
msgid "Font Family"
|
||||||
msgstr ""
|
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"
|
msgid "Font Size"
|
||||||
msgstr ""
|
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"
|
msgid "Font Subset"
|
||||||
msgstr ""
|
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"
|
msgid "Font Variants"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr ""
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr ""
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr ""
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr ""
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr "Google"
|
msgstr "Google"
|
||||||
@ -651,7 +688,7 @@ msgstr "Google"
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -677,7 +714,7 @@ msgstr ""
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr ""
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -734,7 +771,7 @@ msgstr ""
|
|||||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||||
msgstr ""
|
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."
|
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ msgid "In this section, you can delete your account and all the data associated
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr ""
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr ""
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr ""
|
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"
|
msgid "Line Height"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr ""
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr ""
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -923,7 +962,7 @@ msgstr ""
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "Llicència MIT"
|
msgstr "Llicència MIT"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr "Nom"
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||||
msgid "New Password"
|
msgid "New Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1009,16 +1049,16 @@ msgstr ""
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
|
||||||
msgid "OpenAI/Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: 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"
|
msgid "Options"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr "Contrasenya"
|
msgstr "Contrasenya"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr ""
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr ""
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr ""
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr ""
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr ""
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1262,15 +1300,15 @@ msgstr ""
|
|||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr ""
|
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"
|
msgid "Search for a font family"
|
||||||
msgstr ""
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr ""
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr ""
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr ""
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1330,7 +1369,7 @@ msgstr ""
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1408,6 +1447,7 @@ msgid "Start building your resume by giving it a name."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1422,17 +1462,17 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr ""
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1465,8 +1514,12 @@ msgstr ""
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: apps/client/src/services/errors/translate-error.ts:49
|
||||||
@ -1474,6 +1527,7 @@ msgid "The resume you want to update is locked, please unlock if you wish to mak
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
#: 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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr ""
|
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"
|
msgid "Underline Links"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr ""
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,7 +1714,7 @@ msgstr "Versió 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1665,11 +1728,11 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr ""
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr ""
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr ""
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr ""
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1733,7 +1808,7 @@ msgstr ""
|
|||||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||||
msgstr ""
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: cs\n"
|
"Language: cs\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:40\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Czech\n"
|
"Language-Team: Czech\n"
|
||||||
"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n"
|
"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n"
|
||||||
@ -30,27 +30,27 @@ msgstr "{templatesCount} šablon životopisů, ze kterých si můžete vybrat"
|
|||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr "{value, plural, one {Sloupec} few {Sloupce} many {Sloupce} other {Sloupce}}"
|
msgstr "{value, plural, one {Sloupec} few {Sloupce} many {Sloupce} other {Sloupce}}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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 jsem vytvořil převážně sám ve svém volném čase, s velkou pomocí dalších skvělých přispěvatelů do open-source.</0><1>Pokud se vám aplikace líbí a chcete ji podpořit, aby zůstala navždy zdarma, přispějte, prosím, jakoukoli částkou, kterou si můžete dovolit.</1>"
|
msgstr "<0>Reactive Resume jsem vytvořil převážně sám ve svém volném čase, s velkou pomocí dalších skvělých přispěvatelů do open-source.</0><1>Pokud se vám aplikace líbí a chcete ji podpořit, aby zůstala navždy zdarma, přispějte, prosím, jakoukoli částkou, kterou si můžete dovolit.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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>Jsem si jistý, že aplikace není dokonalá, ale rád bych, aby byla.</0><1>Pokud jste se při tvorbě životopisu setkali s nějakými problémy nebo máte nápad, který by vám i ostatním uživatelům pomohl při snadnější tvorbě životopisu, napište o tom do úložiště nebo mi pošlete e-mail.</1>"
|
msgstr "<0>Jsem si jistý, že aplikace není dokonalá, ale rád bych, aby byla.</0><1>Pokud jste se při tvorbě životopisu setkali s nějakými problémy nebo máte nápad, který by vám i ostatním uživatelům pomohl při snadnější tvorbě životopisu, napište o tom do úložiště nebo mi pošlete e-mail.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 "<0>Poznámka </0>: Používáním rozhraní API OpenAI berete na vědomí a souhlasíte s podmínkami <1>používání</1> a <2>zásadami ochrany osobních údajů</2> uvedenými společností OpenAI. Vezměte prosím na vědomí, že Reactive Resume nenese žádnou odpovědnost za nesprávné nebo neoprávněné použití služby a veškeré následky nebo závazky z toho plynoucí nese výhradně uživatel."
|
msgstr "<0>Poznámka </0>: Používáním rozhraní API OpenAI berete na vědomí a souhlasíte s podmínkami <1>používání</1> a <2>zásadami ochrany osobních údajů</2> uvedenými společností OpenAI. Vezměte prosím na vědomí, že Reactive Resume nenese žádnou odpovědnost za nesprávné nebo neoprávněné použití služby a veškeré následky nebo závazky z toho plynoucí nese výhradně uživatel."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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>"
|
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."
|
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."
|
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."
|
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."
|
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"
|
msgid "Add a custom field"
|
||||||
msgstr "Přidání vlastního pole"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Přidat novou položku"
|
msgstr "Přidat novou položku"
|
||||||
@ -117,7 +117,7 @@ msgstr "Přidat novou položku"
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr "Přidat novou sekci"
|
msgstr "Přidat novou sekci"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr "Přidat novou stránku"
|
msgstr "Přidat novou stránku"
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr "Již máte účet?"
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr "Při nahrávání souboru došlo k chybě."
|
msgstr "Při nahrávání souboru došlo k chybě."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr "Došlo k chybě serveru."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr "Došlo k neočekávané chybě."
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr "a mnoho dalších..."
|
msgstr "a mnoho dalších..."
|
||||||
@ -191,6 +199,18 @@ msgstr "Dostupné v {languagesCount} jazycích"
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr "Ocenění"
|
msgstr "Ocenění"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr "Azure API verze"
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr "Azure OpenAI Base URL, název nasazení (model) a API verze jsou vyžadovány při používání Azure OpenAI."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr "Azure OpenAI Resource URL"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,7 +229,7 @@ msgstr "Záložní kód"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Záložní kódy mohou obsahovat pouze malá písmena nebo číslice a musí mít přesně 10 znaků."
|
msgstr "Záložní kódy mohou obsahovat pouze malá písmena nebo číslice a musí mít přesně 10 znaků."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "Základní adresa URL"
|
msgstr "Základní adresa URL"
|
||||||
|
|
||||||
@ -246,8 +266,8 @@ msgstr "Vytvořeno komunitou pro komunitu."
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Zrušit"
|
msgstr "Zrušit"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr "Formální"
|
msgstr "Formální"
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr "Formální"
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr "Střed Artboard"
|
msgstr "Střed Artboard"
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr "Změnit jazyk"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr "Změnit heslo"
|
msgstr "Změnit heslo"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr "Změna tónu"
|
msgstr "Změna tónu"
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr "Sloupce"
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr "Společnost"
|
msgstr "Společnost"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr "Spolehlivost"
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Pokračovat"
|
msgstr "Pokračovat"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Kopírovat"
|
msgstr "Kopírovat"
|
||||||
|
|
||||||
@ -351,7 +371,12 @@ msgstr "Vytvořit nyní"
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr "Vytvořit ukázkový životopis"
|
msgstr "Vytvořit ukázkový životopis"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||||
|
msgid "Current Password"
|
||||||
|
msgstr "Aktuální heslo"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr "Vlastní CSS"
|
msgstr "Vlastní CSS"
|
||||||
@ -386,10 +411,10 @@ msgstr "Tmavý"
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Datum:"
|
msgstr "Datum:"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Časový rozsah"
|
msgstr "Časový rozsah"
|
||||||
@ -407,11 +432,15 @@ msgstr "Vymazat"
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr "Odstranit účet"
|
msgstr "Odstranit účet"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr "Název nasazení"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "L 343, 22.12.2009, s. 1)."
|
msgstr "L 343, 22.12.2009, s. 1)."
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr "Obnovení jedné nebo více stránek"
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr "Zakázat"
|
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"
|
msgid "Disable 2FA"
|
||||||
msgstr "Zakázat 2FA"
|
msgstr "Zakázat 2FA"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr "Zahodit"
|
msgstr "Zahodit"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Dokumentace"
|
msgstr "Dokumentace"
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr "Dokumentace"
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr "Nemáte účet?"
|
msgstr "Nemáte účet?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr "Nevíte kde začínajet? Stiskněte dokumenty!"
|
msgstr "Nevíte kde začínajet? Stiskněte dokumenty!"
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr "Nevíte kde začínajet? Stiskněte dokumenty!"
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr "Nevidíte váš jazyk? <0>Pomozte s překladem aplikace.</0>"
|
msgstr "Nevidíte váš jazyk? <0>Pomozte s překladem aplikace.</0>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr "Přispět na opětovné spuštění"
|
msgstr "Přispět na opětovné spuštění"
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr "Přispět na opětovné spuštění"
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr "Stáhněte si snímek svého životopisu ve formátu JSON. Tento soubor můžete použít k budoucímu importu svého životopisu nebo jej můžete sdílet s ostatními a spolupracovat s nimi."
|
msgstr "Stáhněte si snímek svého životopisu ve formátu JSON. Tento soubor můžete použít k budoucímu importu svého životopisu nebo jej můžete sdílet s ostatními a spolupracovat s nimi."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
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."
|
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/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr "Stáhnout PDF"
|
msgstr "Stáhnout PDF"
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr "Duplikovat existující položku"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Duplikujte existující životopis"
|
msgstr "Duplikujte existující životopis"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Upravit"
|
msgstr "Upravit"
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr "Efekty"
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr "e-mail"
|
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"
|
msgid "Enable 2FA"
|
||||||
msgstr "Aktivovat overeni 2FA"
|
msgstr "Aktivovat overeni 2FA"
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr "Níže zadejte jednorázové heslo poskytnuté vaší ověřovací aplik
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr "Zadejte svou e-mailovou adresu a my vám pošleme odkaz pro obnovení hesla, pokud účet existuje."
|
msgstr "Zadejte svou e-mailovou adresu a my vám pošleme odkaz pro obnovení hesla, pokud účet existuje."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr "Chyba {statusCode}"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr "Chyby"
|
msgstr "Chyby"
|
||||||
@ -544,6 +576,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."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr "Exportovat"
|
msgstr "Exportovat"
|
||||||
@ -564,19 +597,19 @@ msgstr "Konečně"
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr "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"
|
msgid "Font Family"
|
||||||
msgstr "Rodina písma"
|
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"
|
msgid "Font Size"
|
||||||
msgstr "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"
|
msgid "Font Subset"
|
||||||
msgstr "Podmnožina písma"
|
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"
|
msgid "Font Variants"
|
||||||
msgstr "Font Variants"
|
msgstr "Font Variants"
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr "Font Variants"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "Například informace o tom, které společnosti, které jste zaslali tento životopis, nebo odkazy na popisy práce, lze zaznamenat zde."
|
msgstr "Například informace o tom, které společnosti, které jste zaslali tento životopis, nebo odkazy na popisy práce, lze zaznamenat zde."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Zapomenout"
|
msgstr "Zapomenout"
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr "Zapomněli jste heslo?"
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr "Formát"
|
msgstr "Formát"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr "Nalezena chyba, nebo máte nápad na novou funkci?"
|
msgstr "Nalezena chyba, nebo máte nápad na novou funkci?"
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr "Nalezena chyba, nebo máte nápad na novou funkci?"
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr "Volné, navždy"
|
msgstr "Volné, navždy"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr "Přátelské"
|
msgstr "Přátelské"
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr "Dejte svému starému obnovit nový název."
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr "Přejít na nástěnku"
|
msgstr "Přejít na nástěnku"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr "Přejít na úvodní stránku"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr "Google"
|
msgstr "Google"
|
||||||
@ -651,7 +688,7 @@ msgstr "Google"
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr "Grayscale"
|
msgstr "Grayscale"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr "Mřížka"
|
msgstr "Mřížka"
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr "Zde můžete aktualizovat svůj profil, abyste si mohli přizpůsobit a přizpůsobit svůj zážitek."
|
msgstr "Zde můžete aktualizovat svůj profil, abyste si mohli přizpůsobit a přizpůsobit svůj zážitek."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Hidden"
|
msgstr "Hidden"
|
||||||
@ -677,7 +714,7 @@ msgstr "Hidden"
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr "Skrýt"
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr "Skrýt ikony"
|
msgstr "Skrýt ikony"
|
||||||
|
|
||||||
@ -734,7 +771,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."
|
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."
|
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."
|
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í."
|
msgstr "V této sekci můžete změnit své heslo a povolit/zakázat dvoufaktorové ověřování."
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ 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>."
|
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/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Informace"
|
msgstr "Informace"
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr "john.doe@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Klíčová slova"
|
msgstr "Klíčová slova"
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr "Naposledy aktualizováno {lastUpdated}"
|
msgstr "Naposledy aktualizováno {lastUpdated}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Rozložení"
|
msgstr "Rozložení"
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr "Dopis"
|
msgstr "Dopis"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr "Úrovně"
|
msgstr "Úrovně"
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr "Světlý"
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr "Světlý nebo tmavý motiv"
|
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"
|
msgid "Line Height"
|
||||||
msgstr "Výška řádku"
|
msgstr "Výška řádku"
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr "Výška řádku"
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr "LinkedIn, JSON Resume, atd."
|
msgstr "LinkedIn, JSON Resume, atd."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr "Seznam"
|
msgstr "Seznam"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr "Odhlásit se"
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr "Zapomněli jste své zařízení?"
|
msgstr "Zapomněli jste své zařízení?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr "Hlavní"
|
msgstr "Hlavní"
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr "březen 2023"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr "březen 2023 - Současný"
|
msgstr "březen 2023 - Současný"
|
||||||
@ -923,7 +962,7 @@ msgstr "březen 2023 - Současný"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Okraj"
|
msgstr "Okraj"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "Maximální počet žetonů"
|
msgstr "Maximální počet žetonů"
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr "Maximální počet žetonů"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "MIT licence"
|
msgstr "MIT licence"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "Model"
|
msgstr "Model"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr "Název"
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Síť"
|
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"
|
msgid "New Password"
|
||||||
msgstr "Nové heslo"
|
msgstr "Nové heslo"
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr "Poznámka: Váš účet bude méně bezpečný."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Poznámky"
|
msgstr "Poznámky"
|
||||||
@ -1009,16 +1049,16 @@ msgstr "OpenAI nevrátil žádné volby pro tvůj text."
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "OpenAI integrace"
|
msgstr "OpenAI integrace"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
msgstr "OpenAI/Azure OpenAI/Ollama integrace"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr "Klíč API OpenAI/Ollama"
|
msgstr "Klíč API OpenAI/Ollama"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
|
||||||
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/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"
|
msgid "Options"
|
||||||
msgstr "Možnosti"
|
msgstr "Možnosti"
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr "Organizace"
|
msgstr "Organizace"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "Stránka"
|
msgstr "Stránka"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr "Stránka {pageNumber}"
|
msgstr "Stránka {pageNumber}"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr "Heslo"
|
msgstr "Heslo"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr "PDF"
|
msgstr "PDF"
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr "Běží o <0>Jednoduchý Icons</0>"
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr "Primární barva"
|
msgstr "Primární barva"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr "Ochrana osobních údajů"
|
msgstr "Ochrana osobních údajů"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr "Profesionální"
|
msgstr "Profesionální"
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr "Veřejnost"
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "Vydavatel"
|
msgstr "Vydavatel"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr "Vyvolat problém"
|
msgstr "Vyvolat problém"
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr "Vyvolat problém"
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr "Reactive Resume vzkvétá díky jeho živé komunitě. Tento projekt vd
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Znovu"
|
msgstr "Znovu"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Odebrat"
|
msgstr "Odebrat"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr "Odstranit stránku"
|
msgstr "Odstranit stránku"
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr "Znovu odeslat odkaz pro potvrzení e-mailu"
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr "Reset"
|
msgstr "Reset"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr "Obnovit rozvržení"
|
msgstr "Obnovit rozvržení"
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr "Reset Zoom"
|
msgstr "Reset Zoom"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr "Obnovení"
|
msgstr "Obnovení"
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr "Zaobleno"
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Uložit změny"
|
msgstr "Uložit změny"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "Uložit lokálně"
|
msgstr "Uložit lokálně"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Uloženo"
|
msgstr "Uloženo"
|
||||||
|
|
||||||
@ -1262,15 +1300,15 @@ msgstr "Posuňte se na Pan"
|
|||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr "Posouvání pro zvětšení"
|
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"
|
msgid "Search for a font family"
|
||||||
msgstr "Hledat rodinu písem"
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr "Hledat podsadu písma"
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr "Hledat variantu písma"
|
msgstr "Hledat variantu písma"
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr "Hledat jazyk"
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr "Zabezpečit s dvoufaktorovým ověřením"
|
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"
|
msgid "Security"
|
||||||
msgstr "Zabezpečení"
|
msgstr "Zabezpečení"
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr "Samostatně hostitel s Docker"
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr "Poslat e-mail"
|
msgstr "Poslat e-mail"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr "Pošlete mi zprávu"
|
msgstr "Pošlete mi zprávu"
|
||||||
|
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr "Nastavení dvoufaktorového ověřování na vašem účtu"
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr "Sdílení"
|
msgstr "Sdílení"
|
||||||
@ -1330,7 +1369,7 @@ msgstr "Zobrazit řádek lomu"
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr "Zobrazit čísla stránky"
|
msgstr "Zobrazit čísla stránky"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Sidebar"
|
msgstr "Sidebar"
|
||||||
|
|
||||||
@ -1408,6 +1447,7 @@ msgid "Start building your resume by giving it a name."
|
|||||||
msgstr "Začněte budovat svůj životopis zadáním jména."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr "Statistiky"
|
msgstr "Statistiky"
|
||||||
@ -1422,17 +1462,17 @@ msgstr "Vaše záložní kódy bezpečně uložte"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr "Summary"
|
msgstr "Summary"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr "Podpořte aplikaci tím, že přispějete, co můžete!"
|
msgstr "Podpořte aplikaci tím, že přispějete, co můžete!"
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr "Podpora reaktivního obnovení"
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr "Podporuje A4/Letter formáty stránky"
|
msgstr "Podporuje A4/Letter formáty stránky"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr "Přepnout do tmavého režimu"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr "Přepnout do světlého režimu"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr "Systém"
|
msgstr "Systém"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "Šablona"
|
msgstr "Šablona"
|
||||||
@ -1465,15 +1514,20 @@ msgstr "Referenční údaje"
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr "Barva textu"
|
msgstr "Barva textu"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
msgstr "Zadaná hesla se neshodují."
|
msgstr "Hledaná stránka neexistuje."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
|
msgstr "Požadavek byl neplatný."
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: 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."
|
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."
|
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/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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,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:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr "Dvoufaktorové ověření"
|
msgstr "Dvoufaktorové ověření"
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr "Typ studia"
|
msgstr "Typ studia"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr "Typografie"
|
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"
|
msgid "Underline Links"
|
||||||
msgstr "Podtrhnout odkazy"
|
msgstr "Podtrhnout odkazy"
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr "URL"
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr "Adresa URL musí začínat https://://"
|
msgstr "Adresa URL musí začínat https://://"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr "Použít Azure OpenAI"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr "Použít systémový motiv"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,7 +1714,7 @@ msgstr "Verze 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Zobrazení"
|
msgstr "Zobrazení"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Viditelné"
|
msgstr "Viditelné"
|
||||||
|
|
||||||
@ -1665,11 +1728,11 @@ msgstr "Ověřujeme vaši e-mailovou adresu pouze proto, abychom se ujistili, ž
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr "Webová stránka"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Co je nového v nejnovější verzi"
|
msgstr "Co je nového v nejnovější verzi"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr "Nejste oprávněni k přístupu na tuto stránku."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Můžete přidat více klíčových slov oddělením čárkou nebo stisknutím klávesy enter."
|
msgstr "Můžete přidat více klíčových slov oddělením čárkou nebo stisknutím klávesy enter."
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr "Můžete přidat více klíčových slov oddělením čárkou nebo stisk
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Můžete také zadat své uživatelské jméno."
|
msgstr "Můžete také zadat své uživatelské jméno."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr "Integraci se službou Ollama můžete také provést jednoduše nastavením klíče API na `sk-1234567890abcdef` a základní adresy URL na adresu URL služby Ollama, tj. `http://localhost:11434/v1`. Můžete si také vybrat modely a nastavit maximální tokeny podle svých preferencí."
|
msgstr "Můžete také integrovat s Azure OpenAI povolením zaškrtnutí políčka <0>Použít Azure OpenAI</0> a nastavením URL zdroje na zdroj Azure OpenAI: <1>https://your-resource. penai.azure.com</1>. Nastavte název nasazení v poli Model a zadejte příslušnou verzi API pro vaše Azure nasazení."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
msgstr "Můžete využít OpenAI API, abyste vám pomohli vygenerovat obsah nebo vylepšit psaní při psaní vašeho obnovení."
|
msgstr "Můžete se také integrovat s Ollama jednoduše nastavením API klíče<0>sk-1234567890abcdef</0> a základní URL na vaši Ollama URL, i. .<1>http://localhost:11434/v1</1>. Můžete také vybrat modely a nastavit maximální počet tokenů podle vašich preferencí."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
|
msgstr "Můžete využít OpenAI API, Azure OpenAI, nebo Ollama k vygenerování obsahu nebo ke zlepšení vašeho psaní při vytváření obnovy."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Můžete sledovat počet zobrazení, která jste obnovili, nebo kolik lidí si stáhlo obnovení povolením veřejného sdílení."
|
msgstr "Můžete sledovat počet zobrazení, která jste obnovili, nebo kolik lidí si stáhlo obnovení povolením veřejného sdílení."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr "Nemáte oprávnění k přístupu na tuto stránku."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "Máte možnost <0>získat vlastní OpenAI API klíč</0>. Tento klíč vás zmocňuje k pákovému API tak, jak to považujete za vhodné. Alternativně pokud chcete úplně zakázat AI funkce v reaktivním obnovení, můžete jednoduše odstranit klíč z nastavení."
|
msgstr "Máte možnost <0>získat vlastní OpenAI API klíč</0>. Tento klíč vás zmocňuje k pákovému API tak, jak to považujete za vhodné. Alternativně pokud chcete úplně zakázat AI funkce v reaktivním obnovení, můžete jednoduše odstranit klíč z nastavení."
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr "Máš email!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Váš účet a všechna data byla úspěšně odstraněna. Sboheme!"
|
msgstr "Váš účet a všechna data byla úspěšně odstraněna. Sboheme!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "Váš API klíč je bezpečně uložen v místním úložišti prohlížeče a používá se pouze při podávání žádostí OpenAI prostřednictvím jejich oficiálního SDK. Buďte ujištěni, že váš klíč není přenášen na žádný externí server, kromě interakce se službami OpenAI."
|
msgstr "Váš API klíč je bezpečně uložen v místním úložišti prohlížeče a používá se pouze při podávání žádostí OpenAI prostřednictvím jejich oficiálního SDK. Buďte ujištěni, že váš klíč není přenášen na žádný externí server, kromě interakce se službami OpenAI."
|
||||||
|
|
||||||
@ -1733,7 +1808,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."
|
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."
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr "Vaše heslo bylo úspěšně aktualizováno."
|
msgstr "Vaše heslo bylo úspěšně aktualizováno."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: da\n"
|
"Language: da\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:40\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Danish\n"
|
"Language-Team: Danish\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -30,27 +30,27 @@ msgstr "{templatesCount} CV skabeloner at vælge imellem"
|
|||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr "{value, plural, one {Kolonne} other {Kolonner}}"
|
msgstr "{value, plural, one {Kolonne} other {Kolonner}}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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>Jeg byggede Reactive Resume for det meste af mig selv i min fritid, med en masse hjælp fra andre gode open-source bidragydere.</0> <1>Hvis du kan lide appen og vil støtte at holde den gratis for evigt, bedes du donere, hvad du har råd til at give.</1>"
|
msgstr "<0>Jeg byggede Reactive Resume for det meste af mig selv i min fritid, med en masse hjælp fra andre gode open-source bidragydere.</0> <1>Hvis du kan lide appen og vil støtte at holde den gratis for evigt, bedes du donere, hvad du har råd til at give.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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>Jeg er sikker på, at appen ikke er perfekt, men det er mit mål.</0> <1>Hvis du stødte på problemer, mens du oprettede dit CV, eller har en idé, der ville hjælpe dig og andre brugere med at oprette dit CV lettere, så skriv et problem på github-repo eller send mig en e-mail om det.</1>"
|
msgstr "<0>Jeg er sikker på, at appen ikke er perfekt, men det er mit mål.</0> <1>Hvis du stødte på problemer, mens du oprettede dit CV, eller har en idé, der ville hjælpe dig og andre brugere med at oprette dit CV lettere, så skriv et problem på github-repo eller send mig en e-mail om det.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 "<0>Bemærk:</0> Ved at bruge OpenAI API'en anerkender og accepterer du <1>brugsbetingelserne</1> og <2>privatlivspolitik</2> skitseret af OpenAI. Bemærk venligst at Reactive Resume ikke bærer noget ansvar for ukorrekt eller uautoriseret brug af tjenesten, og eventuelle følgevirkninger eller ansvar påhviler udelukkende brugeren."
|
msgstr "<0>Bemærk:</0> Ved at bruge OpenAI API'en anerkender og accepterer du <1>brugsbetingelserne</1> og <2>privatlivspolitik</2> skitseret af OpenAI. Bemærk venligst at Reactive Resume ikke bærer noget ansvar for ukorrekt eller uautoriseret brug af tjenesten, og eventuelle følgevirkninger eller ansvar påhviler udelukkende brugeren."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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>"
|
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."
|
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."
|
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."
|
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."
|
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"
|
msgid "Add a custom field"
|
||||||
msgstr "Tilføj et brugerdefineret felt"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Tilføj et nyt element"
|
msgstr "Tilføj et nyt element"
|
||||||
@ -117,7 +117,7 @@ msgstr "Tilføj et nyt element"
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr "Tilføj et nyt afsnit"
|
msgstr "Tilføj et nyt afsnit"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr "Tilføj ny side"
|
msgstr "Tilføj ny side"
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr "Har du allerede en bruger?"
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr "Der opstod en fejl under validering af filen."
|
msgstr "Der opstod en fejl under validering af filen."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr "Der opstod en intern serverfejl."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr "Der opstod en uventet fejl."
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr "og mange flere..."
|
msgstr "og mange flere..."
|
||||||
@ -191,6 +199,18 @@ msgstr "Tilgængelig på {languagesCount} sprog"
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr "Prisuddeler"
|
msgstr "Prisuddeler"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr "Azure API Version"
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr "Azure OpenAI Base URL, implementering navn (model) og API version er påkrævet, når du bruger Azure OpenAI."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr "Azure OpenAI Resource Url"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,7 +229,7 @@ msgstr "Backup kode"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Backup-koder må kun indeholde små bogstaver eller tal og skal bestå af nøjagtigt 10 tegn."
|
msgstr "Backup-koder må kun indeholde små bogstaver eller tal og skal bestå af nøjagtigt 10 tegn."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "Basis-URL"
|
msgstr "Basis-URL"
|
||||||
|
|
||||||
@ -246,8 +266,8 @@ msgstr "Af fællesskabet, for fællesskabet."
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Annuller"
|
msgstr "Annuller"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr "Uformel"
|
msgstr "Uformel"
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr "Uformel"
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr "Center tegnebræt"
|
msgstr "Center tegnebræt"
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr "Skift Sprog"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr "Skift adgangskode"
|
msgstr "Skift adgangskode"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr "Skift tone"
|
msgstr "Skift tone"
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr "Kolonner"
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr "Virksomhed"
|
msgstr "Virksomhed"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr "Selvsikker"
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Forsæt"
|
msgstr "Forsæt"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Kopiér"
|
msgstr "Kopiér"
|
||||||
|
|
||||||
@ -351,7 +371,12 @@ msgstr "Opret en nu"
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr "Opret eksempel på CV"
|
msgstr "Opret eksempel på CV"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||||
|
msgid "Current Password"
|
||||||
|
msgstr "Nuværende adgangskode"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr "Brugerdefineret CSS"
|
msgstr "Brugerdefineret CSS"
|
||||||
@ -386,10 +411,10 @@ msgstr "Mørk"
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Dato"
|
msgstr "Dato"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Dato eller datointerval"
|
msgstr "Dato eller datointerval"
|
||||||
@ -407,11 +432,15 @@ msgstr "Slet"
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr "Slet Konto"
|
msgstr "Slet Konto"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr "Deployment Navn"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Beskriveslse"
|
msgstr "Beskriveslse"
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr "Design af enkelt- og flersidede CV'er"
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr "Deaktivér"
|
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"
|
msgid "Disable 2FA"
|
||||||
msgstr "Deaktivér 2FA"
|
msgstr "Deaktivér 2FA"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr "Kassér"
|
msgstr "Kassér"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Dokumentation"
|
msgstr "Dokumentation"
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr "Dokumentation"
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr "Har du ikke en konto?"
|
msgstr "Har du ikke en konto?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr "Ved du ikke, hvor du skal begynde? Tryk på dokumenterne!"
|
msgstr "Ved du ikke, hvor du skal begynde? Tryk på dokumenterne!"
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr "Ved du ikke, hvor du skal begynde? Tryk på dokumenterne!"
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr "Kan du ikke se dit sprog? <0>Hjælp med at oversætte appen.</0>"
|
msgstr "Kan du ikke se dit sprog? <0>Hjælp med at oversætte appen.</0>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr "Donér til Reactive Resume"
|
msgstr "Donér til Reactive Resume"
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr "Donér til Reactive Resume"
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr "Download et JSON-snapshot af dit CV. Denne fil kan bruges til at importere dit CV i fremtiden, eller du kan dele den med andre for at samarbejde."
|
msgstr "Download et JSON-snapshot af dit CV. Denne fil kan bruges til at importere dit CV i fremtiden, eller du kan dele den med andre for at samarbejde."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
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."
|
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/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr "Download PDF"
|
msgstr "Download PDF"
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr "Duplikér et eksisterende element"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Duplikér et eksisterende CV"
|
msgstr "Duplikér et eksisterende CV"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Rediger"
|
msgstr "Rediger"
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr "Effekter"
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr "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"
|
msgid "Enable 2FA"
|
||||||
msgstr "Aktiver 2FA"
|
msgstr "Aktiver 2FA"
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr "Indtast engangsadgangskoden fra din authenticator app nedenfor."
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr "Indtast din e-mailadresse, og vi sender dig et link til at nulstille din adgangskode, hvis kontoen eksisterer."
|
msgstr "Indtast din e-mailadresse, og vi sender dig et link til at nulstille din adgangskode, hvis kontoen eksisterer."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr "Fejl {statusCode}"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr "Fejl"
|
msgstr "Fejl"
|
||||||
@ -544,6 +576,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."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr "Eksportér"
|
msgstr "Eksportér"
|
||||||
@ -564,19 +597,19 @@ msgstr "Endelig,"
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr "Ret stavning og grammatik"
|
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"
|
msgid "Font Family"
|
||||||
msgstr "Skrifttype"
|
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"
|
msgid "Font Size"
|
||||||
msgstr "Skriftstørrelse"
|
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"
|
msgid "Font Subset"
|
||||||
msgstr "Skrifttype-undersæt"
|
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"
|
msgid "Font Variants"
|
||||||
msgstr "Skrifttype-varianter"
|
msgstr "Skrifttype-varianter"
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr "Skrifttype-varianter"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "For eksempel kan oplysninger om hvilke virksomheder du har sendt dette CV til eller links til jobbeskrivelserne noteres her."
|
msgstr "For eksempel kan oplysninger om hvilke virksomheder du har sendt dette CV til eller links til jobbeskrivelserne noteres her."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Glem"
|
msgstr "Glem"
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr "Har du glemt din adgangskode?"
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr "Format"
|
msgstr "Format"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr "Har du fundet en fejl, eller har du en idé til en ny funktion?"
|
msgstr "Har du fundet en fejl, eller har du en idé til en ny funktion?"
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr "Har du fundet en fejl, eller har du en idé til en ny funktion?"
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr "Gratis for evigt"
|
msgstr "Gratis for evigt"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr "Venlig"
|
msgstr "Venlig"
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr "Giv dit gamle CV et nyt navn."
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr "Gå til dashboard"
|
msgstr "Gå til dashboard"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr "Gå til startsiden"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr "Google"
|
msgstr "Google"
|
||||||
@ -651,7 +688,7 @@ msgstr "Google"
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr "Gråtoner"
|
msgstr "Gråtoner"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr "Gitter"
|
msgstr "Gitter"
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr "Her kan du opdatere din profil for at tilpasse og personliggøre din oplevelse."
|
msgstr "Her kan du opdatere din profil for at tilpasse og personliggøre din oplevelse."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Skjult"
|
msgstr "Skjult"
|
||||||
@ -677,7 +714,7 @@ msgstr "Skjult"
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr "Skjul"
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr "Skjul ikoner"
|
msgstr "Skjul ikoner"
|
||||||
|
|
||||||
@ -734,7 +771,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."
|
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."
|
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."
|
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."
|
msgstr "I dette afsnit kan du ændre din adgangskode og aktivere/deaktivere to-faktor godkendelse."
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ 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>."
|
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/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Information"
|
msgstr "Information"
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr "anders.andersen@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Nøgleord"
|
msgstr "Nøgleord"
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr "Sidst opdateret {lastUpdated}"
|
msgstr "Sidst opdateret {lastUpdated}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Layout"
|
msgstr "Layout"
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr "Brev"
|
msgstr "Brev"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr "Niveau"
|
msgstr "Niveau"
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr "Lyst"
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr "Lyst eller mørkt tema"
|
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"
|
msgid "Line Height"
|
||||||
msgstr "Linjehøjde"
|
msgstr "Linjehøjde"
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr "Linjehøjde"
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr "LinkedIn, JSON CV osv."
|
msgstr "LinkedIn, JSON CV osv."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr "Liste"
|
msgstr "Liste"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr "Log ud"
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr "Har du mistet din enhed?"
|
msgstr "Har du mistet din enhed?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr "Hovedmenu"
|
msgstr "Hovedmenu"
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr "Marts 2023"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr "Marts 2023 - nutid"
|
msgstr "Marts 2023 - nutid"
|
||||||
@ -923,7 +962,7 @@ msgstr "Marts 2023 - nutid"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Margen"
|
msgstr "Margen"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "Max Tokens"
|
msgstr "Max Tokens"
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr "Max Tokens"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "MIT-licens"
|
msgstr "MIT-licens"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "Model"
|
msgstr "Model"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr "Navn"
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Netværk"
|
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"
|
msgid "New Password"
|
||||||
msgstr "Ny adgangskode"
|
msgstr "Ny adgangskode"
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr "Bemærk: Dette vil gøre din konto mindre sikker."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Noter"
|
msgstr "Noter"
|
||||||
@ -1009,16 +1049,16 @@ msgstr "OpenAI returnerede ikke nogen valgmuligheder for din tekst."
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "OpenAI-integration"
|
msgstr "OpenAI-integration"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
msgstr "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr "OpenAI/Ollama API-nøgle"
|
msgstr "OpenAI/Ollama API-nøgle"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
|
||||||
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/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"
|
msgid "Options"
|
||||||
msgstr "Indstillinger"
|
msgstr "Indstillinger"
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr "Organisation"
|
msgstr "Organisation"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "Side"
|
msgstr "Side"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr "Side {pageNumber}"
|
msgstr "Side {pageNumber}"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr "Adgangskode"
|
msgstr "Adgangskode"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr "PDF"
|
msgstr "PDF"
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr "Drevet af <0>Simple Icons</0>"
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr "Primær farve"
|
msgstr "Primær farve"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr "Fortrolighedspolitik"
|
msgstr "Fortrolighedspolitik"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr "Professionel"
|
msgstr "Professionel"
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr "Offentlig"
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "Udgiver"
|
msgstr "Udgiver"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr "Løft et problem"
|
msgstr "Løft et problem"
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr "Løft et problem"
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr "Reactive Resume trives takket være sit livlige fællesskab. Dette proje
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Gentag"
|
msgstr "Gentag"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Fjern"
|
msgstr "Fjern"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr "Fjern side"
|
msgstr "Fjern side"
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr "Send bekræftelseslink til e-mail igen"
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr "Nulstil"
|
msgstr "Nulstil"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr "Nulstil opsætning"
|
msgstr "Nulstil opsætning"
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr "Nulstil zoom"
|
msgstr "Nulstil zoom"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr "Resumé"
|
msgstr "Resumé"
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr "Afrundet"
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Gem ændringer"
|
msgstr "Gem ændringer"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "Spar lokalt"
|
msgstr "Spar lokalt"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Gemt"
|
msgstr "Gemt"
|
||||||
|
|
||||||
@ -1262,15 +1300,15 @@ msgstr "Rul til Pan"
|
|||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr "Rul til 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"
|
msgid "Search for a font family"
|
||||||
msgstr "Søg efter en skrifttypefamilie"
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr "Søg efter et skrifttypeundersæt"
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr "Søg efter en skrifttypevariant"
|
msgstr "Søg efter en skrifttypevariant"
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr "Søg efter et sprog"
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr "Sikker med to-faktor godkendelse"
|
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"
|
msgid "Security"
|
||||||
msgstr "Sikkerhed"
|
msgstr "Sikkerhed"
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr "Selv-host med Docker"
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr "Send e-mail"
|
msgstr "Send e-mail"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr "Send mig en besked"
|
msgstr "Send mig en besked"
|
||||||
|
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr "Opsæt to-faktor godkendelse på din konto"
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr "Deling"
|
msgstr "Deling"
|
||||||
@ -1330,7 +1369,7 @@ msgstr "Vis Linjebrud"
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr "Vis sidetal"
|
msgstr "Vis sidetal"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Sidebjælke"
|
msgstr "Sidebjælke"
|
||||||
|
|
||||||
@ -1408,6 +1447,7 @@ msgid "Start building your resume by giving it a name."
|
|||||||
msgstr "Begynd at opbygge dit CV ved at give det et navn."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr "Statistik"
|
msgstr "Statistik"
|
||||||
@ -1422,17 +1462,17 @@ msgstr "Opbevar dine backup-koder sikkert"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr "Opsummering"
|
msgstr "Opsummering"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr "Støt appen ved at donere, hvad du kan!"
|
msgstr "Støt appen ved at donere, hvad du kan!"
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr "Støtter Reactive Resume"
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr "Understøtter A4/Brev-sideformater"
|
msgstr "Understøtter A4/Brev-sideformater"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr "Skift til mørk tilstand"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr "Skift til lystilstand"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr "System"
|
msgstr "System"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "Skabelon"
|
msgstr "Skabelon"
|
||||||
@ -1465,15 +1514,20 @@ msgstr "Udtalelser"
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr "Tekstfarve"
|
msgstr "Tekstfarve"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
msgstr "De indtastede adgangskoder matcher ikke."
|
msgstr "Den side du leder efter eksisterer ikke."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
|
msgstr "Anmodningen var ugyldig."
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: 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."
|
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."
|
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/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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,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:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr "To-faktor godkendelse"
|
msgstr "To-faktor godkendelse"
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr "Type af studie"
|
msgstr "Type af studie"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr "Typografi"
|
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"
|
msgid "Underline Links"
|
||||||
msgstr "Understreg links"
|
msgstr "Understreg links"
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr "URL"
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr "URL skal starte med https://"
|
msgstr "URL skal starte med https://"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr "Brug Azure OpenAI"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr "Brug System Tema"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,7 +1714,7 @@ msgstr "Version 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Visninger"
|
msgstr "Visninger"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Synlig"
|
msgstr "Synlig"
|
||||||
|
|
||||||
@ -1665,11 +1728,11 @@ msgstr "Vi bekræfter kun din e-mailadresse for at sikre, at vi kan sende dig et
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr "Hjemmeside"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Hvad er nyt i den seneste version"
|
msgstr "Hvad er nyt i den seneste version"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr "Du har ikke adgang til denne side."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Du kan tilføje flere søgeord ved at adskille dem med et komma eller trykke på enter."
|
msgstr "Du kan tilføje flere søgeord ved at adskille dem med et komma eller trykke på enter."
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr "Du kan tilføje flere søgeord ved at adskille dem med et komma eller tr
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Du kan også indtaste dit brugernavn."
|
msgstr "Du kan også indtaste dit brugernavn."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr "Du kan også integrere med Ollama ved blot at indstille API-nøglen til `sk-1234567890abcdef` og Base URL til din Ollama URL, dvs. `http://localhost:11434/v1`. Du kan også vælge og vrage mellem modeller og indstille de maksimale tokens efter dine præferencer."
|
msgstr "Du kan også integrere med Azure OpenAI ved at aktivere afkrydsningsfeltet <0>Brug Azure OpenAI</0> og indstille ressource-URL'en til din Azure OpenAI-ressource: <1>https://your-resource. penai.azure.com</1>. Indstil implementeringsnavnet i Model feltet og angiv den relevante API version til din Azure implementering."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
msgstr "Du kan gøre brug af OpenAI API til at hjælpe dig med at generere indhold eller forbedre din skrivning, mens du skriver dit CV."
|
msgstr "Du kan også integrere med Ollama ved blot at indstille API-nøglen til<0>sk-1234567890abcdef</0> og Base URL til din Ollama URL, jeg. .<1>http://localhost:11434/v1</1>. Du kan også vælge modeller og indstille max tokens som pr din præference."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
|
msgstr "Du kan gøre brug af OpenAI API, Azure OpenAI, eller Ollama til at hjælpe dig med at generere indhold, eller forbedre din skrivning, mens du komponerer dit cv."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Du kan spore antallet af visninger, dit CV har fået, eller hvor mange der har downloadet CV'et ved at aktivere offentlig deling."
|
msgstr "Du kan spore antallet af visninger, dit CV har fået, eller hvor mange der har downloadet CV'et ved at aktivere offentlig deling."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr "Du har ikke tilladelse til at tilgå denne side."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "Du har mulighed for at <0>få din egen OpenAI API-nøgle</0>. Denne nøgle giver dig mulighed for at udnytte API'en, som det passer dig. Alternativt, hvis du ønsker at deaktivere AI-funktionerne i Reactive Resume helt, kan du blot fjerne nøglen fra dine indstillinger."
|
msgstr "Du har mulighed for at <0>få din egen OpenAI API-nøgle</0>. Denne nøgle giver dig mulighed for at udnytte API'en, som det passer dig. Alternativt, hvis du ønsker at deaktivere AI-funktionerne i Reactive Resume helt, kan du blot fjerne nøglen fra dine indstillinger."
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr "Du har post!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Din konto og alle dine data er blevet slettet. Vi siger farvel!"
|
msgstr "Din konto og alle dine data er blevet slettet. Vi siger farvel!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "Din API-nøgle gemmes sikkert i browserens lokale lager og bruges kun, når du sender anmodninger til OpenAI via deres officielle SDK. Du kan være sikker på, at din nøgle ikke overføres til nogen ekstern server, undtagen når du interagerer med OpenAI's tjenester."
|
msgstr "Din API-nøgle gemmes sikkert i browserens lokale lager og bruges kun, når du sender anmodninger til OpenAI via deres officielle SDK. Du kan være sikker på, at din nøgle ikke overføres til nogen ekstern server, undtagen når du interagerer med OpenAI's tjenester."
|
||||||
|
|
||||||
@ -1733,7 +1808,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."
|
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."
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr "Din adgangskode er blevet ændret."
|
msgstr "Din adgangskode er blevet ændret."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: de\n"
|
"Language: de\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:40\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: German\n"
|
"Language-Team: German\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -30,27 +30,27 @@ msgstr "{templatesCount} Lebenslaufvorlagen zur Auswahl"
|
|||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr "{value, plural, one {Spalte} other {Spalten}}"
|
msgstr "{value, plural, one {Spalte} other {Spalten}}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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>Ich habe Reactive Resume größtenteils in meiner Freizeit fast alleine entwickelt, mit viel Unterstützung aus der Open-Source-Community.</0><1>Wenn Dir die App gefällt und Du die dauerhafte kostenlose Verfügbarkeit unterstützen möchtest, spende bitte, was Du kannst.</1>"
|
msgstr "<0>Ich habe Reactive Resume größtenteils in meiner Freizeit fast alleine entwickelt, mit viel Unterstützung aus der Open-Source-Community.</0><1>Wenn Dir die App gefällt und Du die dauerhafte kostenlose Verfügbarkeit unterstützen möchtest, spende bitte, was Du kannst.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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>Ich bin mir sicher, dass die App nicht perfekt ist, aber ich wünsche mir, dass sie es wird.</0><1>Du hast beim Erstellen Deines Lebenslaufs ein Problem gefunden oder eine Idee, die Dir und anderen Nutzern dabei helfen würde? Dann erstelle ein Ticket auf GitHub oder schicke mir eine E-Mail.</1>"
|
msgstr "<0>Ich bin mir sicher, dass die App nicht perfekt ist, aber ich wünsche mir, dass sie es wird.</0><1>Du hast beim Erstellen Deines Lebenslaufs ein Problem gefunden oder eine Idee, die Dir und anderen Nutzern dabei helfen würde? Dann erstelle ein Ticket auf GitHub oder schicke mir eine E-Mail.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 "<0>Hinweis:</0> Wenn du die OpenAI API nutzt, erkennst du die <1>Nutzungsbedingungen</1> und die <2>Datenschutzrichtlinie</2> von OpenAI an und akzeptierst diese. Bitte beachte, dass Reactive Resume keine Verantwortung für eine unsachgemäße oder unbefugte Nutzung des Dienstes übernimmt und eventuelle Folgen oder Haftungsansprüche ausschließlich beim Nutzer liegen."
|
msgstr "<0>Hinweis:</0> Wenn du die OpenAI API nutzt, erkennst du die <1>Nutzungsbedingungen</1> und die <2>Datenschutzrichtlinie</2> von OpenAI an und akzeptierst diese. Bitte beachte, dass Reactive Resume keine Verantwortung für eine unsachgemäße oder unbefugte Nutzung des Dienstes übernimmt und eventuelle Folgen oder Haftungsansprüche ausschließlich beim Nutzer liegen."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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>"
|
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."
|
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."
|
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."
|
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."
|
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"
|
msgid "Add a custom field"
|
||||||
msgstr "Benutzerdefiniertes Feld hinzufügen"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Eintrag hinzufügen"
|
msgstr "Eintrag hinzufügen"
|
||||||
@ -117,7 +117,7 @@ msgstr "Eintrag hinzufügen"
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr "Neuen Abschnitt hinzufügen"
|
msgstr "Neuen Abschnitt hinzufügen"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr "Neue Seite hinzufügen"
|
msgstr "Neue Seite hinzufügen"
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr "Hast du bereits ein Konto?"
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr "Beim Überprüfen der Datei ist ein Fehler aufgetreten."
|
msgstr "Beim Überprüfen der Datei ist ein Fehler aufgetreten."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr "Ein interner Serverfehler ist aufgetreten."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr "Ein ungeplanter Fehler ist aufgetreten."
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr "und viele weitere..."
|
msgstr "und viele weitere..."
|
||||||
@ -191,6 +199,18 @@ msgstr "Verfügbar in {languagesCount} Sprachen"
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr "Verliehen von"
|
msgstr "Verliehen von"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr "Azure API Version"
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr "Azure OpenAI Base-URL, Bereitstellungsname (Modell) und API-Version sind erforderlich, wenn Azure OpenAI verwendet wird."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr "Azure OpenAI Ressourcen-URL"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,7 +229,7 @@ msgstr "Backup-Code"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Backup-Codes dürfen nur Kleinbuchstaben oder Zahlen enthalten und müssen aus genau 10 Zeichen bestehen."
|
msgstr "Backup-Codes dürfen nur Kleinbuchstaben oder Zahlen enthalten und müssen aus genau 10 Zeichen bestehen."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "Basis URL"
|
msgstr "Basis URL"
|
||||||
|
|
||||||
@ -246,8 +266,8 @@ msgstr "Von der Gemeinschaft, für die Gemeinschaft."
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Abbrechen"
|
msgstr "Abbrechen"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr "Leger"
|
msgstr "Leger"
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr "Leger"
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr "Artboard zentrieren"
|
msgstr "Artboard zentrieren"
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr "Sprache ändern"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr "Passwort ändern"
|
msgstr "Passwort ändern"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr "Ausdrucksweise ändern"
|
msgstr "Ausdrucksweise ändern"
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr "Spalten"
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr "Unternehmen"
|
msgstr "Unternehmen"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr "Selbstbewusst"
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Weiter"
|
msgstr "Weiter"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Kopieren"
|
msgstr "Kopieren"
|
||||||
|
|
||||||
@ -351,7 +371,12 @@ msgstr "Jetzt eins erstellen"
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr "Musterlebenslauf erstellen"
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr "Benutzerdefiniertes CSS"
|
msgstr "Benutzerdefiniertes CSS"
|
||||||
@ -386,10 +411,10 @@ msgstr "Dunkel"
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Zeitraum"
|
msgstr "Zeitraum"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Datum oder Zeitraum"
|
msgstr "Datum oder Zeitraum"
|
||||||
@ -407,11 +432,15 @@ msgstr "Löschen"
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr "Konto löschen"
|
msgstr "Konto löschen"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr "Einsatzname"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Beschreibung"
|
msgstr "Beschreibung"
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr "Entwerfe ein- oder mehrseitige Lebensläufe"
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr "Deaktivieren"
|
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"
|
msgid "Disable 2FA"
|
||||||
msgstr "2FA deaktivieren"
|
msgstr "2FA deaktivieren"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr "Verwerfen"
|
msgstr "Verwerfen"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Dokumentation"
|
msgstr "Dokumentation"
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr "Dokumentation"
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr "Du hast noch kein Konto?"
|
msgstr "Du hast noch kein Konto?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr "Du weißt nicht, wo du anfangen sollst? Schau dir die Dokumentation an!"
|
msgstr "Du weißt nicht, wo du anfangen sollst? Schau dir die Dokumentation an!"
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr "Du weißt nicht, wo du anfangen sollst? Schau dir die Dokumentation an!"
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr "Deine Sprache nicht dabei? <0>Hilf mit, die App zu übersetzen.</0>"
|
msgstr "Deine Sprache nicht dabei? <0>Hilf mit, die App zu übersetzen.</0>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr "Spende an Reactive Resume"
|
msgstr "Spende an Reactive Resume"
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr "Spende an Reactive Resume"
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr "Lade Deinen Lebenslauf im JSON-Format herunter. Diese Datei kannst Du zukünftig für einen erneuten Import benutzen. Alternativ kannst Du ihn mit anderen teilen, um gemeinsam daran zu arbeiten."
|
msgstr "Lade Deinen Lebenslauf im JSON-Format herunter. Diese Datei kannst Du zukünftig für einen erneuten Import benutzen. Alternativ kannst Du ihn mit anderen teilen, um gemeinsam daran zu arbeiten."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
msgstr "Lade Deinen Lebenslauf als PDF herunter. Diese Datei kannst Du dann ausdrucken, an Recruiter schicken oder in Jobbörsen hochladen."
|
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/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr "PDF herunterladen"
|
msgstr "PDF herunterladen"
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr "Vorhandenen Eintrag duplizieren"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Vorhandenen Lebenslauf duplizieren"
|
msgstr "Vorhandenen Lebenslauf duplizieren"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Bearbeiten"
|
msgstr "Bearbeiten"
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr "Effekte"
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr "E-Mail"
|
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"
|
msgid "Enable 2FA"
|
||||||
msgstr "2FA aktivieren"
|
msgstr "2FA aktivieren"
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr "Gib den Einmalpasswort aus Deiner Authenticator-App unten ein."
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr "Gib Deine E-Mail-Adresse ein und wir senden Dir einen Link zum Zurücksetzen des Passworts zu, sofern das Konto existiert."
|
msgstr "Gib Deine E-Mail-Adresse ein und wir senden Dir einen Link zum Zurücksetzen des Passworts zu, sofern das Konto existiert."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr "Fehler {statusCode}"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr "Fehler"
|
msgstr "Fehler"
|
||||||
@ -544,6 +576,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."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr "Exportieren"
|
msgstr "Exportieren"
|
||||||
@ -564,19 +597,19 @@ msgstr "Endlich!"
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr "Rechtschreibung und Grammatik korrigieren"
|
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"
|
msgid "Font Family"
|
||||||
msgstr "Schriftfamilie"
|
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"
|
msgid "Font Size"
|
||||||
msgstr "Schriftgröße"
|
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"
|
msgid "Font Subset"
|
||||||
msgstr "Schriftart-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"
|
msgid "Font Variants"
|
||||||
msgstr "Schriftvariante"
|
msgstr "Schriftvariante"
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr "Schriftvariante"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "Zum Beispiel kannst Du hier notieren, an welche Unternehmen Du diesen Lebenslauf geschickt hast. Oder die Links zu den Stellenbeschreibungen."
|
msgstr "Zum Beispiel kannst Du hier notieren, an welche Unternehmen Du diesen Lebenslauf geschickt hast. Oder die Links zu den Stellenbeschreibungen."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Löschen"
|
msgstr "Löschen"
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr "Dein Passwort vergessen?"
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr "Seitenformat"
|
msgstr "Seitenformat"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr "Hast du einen Fehler gefunden oder eine Idee für eine neue Funktion?"
|
msgstr "Hast du einen Fehler gefunden oder eine Idee für eine neue Funktion?"
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr "Hast du einen Fehler gefunden oder eine Idee für eine neue Funktion?"
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr "Kostenlos, für immer"
|
msgstr "Kostenlos, für immer"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr "Freundlich"
|
msgstr "Freundlich"
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr "Gib deinem alten Lebenslauf einen neuen Namen."
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr "Weiter zum Dashboard"
|
msgstr "Weiter zum Dashboard"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr "Zur Startseite"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr "Google"
|
msgstr "Google"
|
||||||
@ -651,7 +688,7 @@ msgstr "Google"
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr "Graustufen"
|
msgstr "Graustufen"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr "Rasteransicht"
|
msgstr "Rasteransicht"
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr "Hier kannst du dein Profil aktualisieren, um deine Erfahrung individuell anzupassen und zu personalisieren."
|
msgstr "Hier kannst du dein Profil aktualisieren, um deine Erfahrung individuell anzupassen und zu personalisieren."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Ausgeblendet"
|
msgstr "Ausgeblendet"
|
||||||
@ -677,7 +714,7 @@ msgstr "Ausgeblendet"
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr "Ausblenden"
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr "Symbole ausblenden"
|
msgstr "Symbole ausblenden"
|
||||||
|
|
||||||
@ -734,7 +771,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."
|
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."
|
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."
|
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."
|
msgstr "In diesem Bereich kannst du dein Passwort ändern und die Zwei-Faktor-Authentifizierung aktivieren oder deaktivieren."
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ 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>."
|
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/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Informationen"
|
msgstr "Informationen"
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr "max.mustermann@beispiel.de"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Schlüsselwörter"
|
msgstr "Schlüsselwörter"
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr "Letzte Aktualisierung: {lastUpdated}"
|
msgstr "Letzte Aktualisierung: {lastUpdated}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Layout"
|
msgstr "Layout"
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr "US Letter"
|
msgstr "US Letter"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr "Niveau"
|
msgstr "Niveau"
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr "Hell"
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr "Helles oder dunkles Design"
|
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"
|
msgid "Line Height"
|
||||||
msgstr "Zeilenhöhe"
|
msgstr "Zeilenhöhe"
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr "Zeilenhöhe"
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr "LinkedIn, Lebenslauf als JSON, etc."
|
msgstr "LinkedIn, Lebenslauf als JSON, etc."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr "Listenansicht"
|
msgstr "Listenansicht"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr "Abmelden"
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr "Gerät verloren?"
|
msgstr "Gerät verloren?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr "Hauptteil"
|
msgstr "Hauptteil"
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr "März 2023"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr "März 2023 – Heute"
|
msgstr "März 2023 – Heute"
|
||||||
@ -923,7 +962,7 @@ msgstr "März 2023 – Heute"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Außenabstand"
|
msgstr "Außenabstand"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "Max Tokens"
|
msgstr "Max Tokens"
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr "Max Tokens"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "MIT Lizenz"
|
msgstr "MIT Lizenz"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "Model"
|
msgstr "Model"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr "Name"
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Netzwerk"
|
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"
|
msgid "New Password"
|
||||||
msgstr "Neues Passwort"
|
msgstr "Neues Passwort"
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr "Achtung: Dadurch wird dein Konto weniger sicher sein."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Notizen"
|
msgstr "Notizen"
|
||||||
@ -1009,16 +1049,16 @@ msgstr "OpenAI hat keine Auswahl für deinen Text zurückgegeben."
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "OpenAI Integration"
|
msgstr "OpenAI Integration"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
msgstr "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr "OpenAI/Ollama API-Schlüssel"
|
msgstr "OpenAI/Ollama API-Schlüssel"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
|
||||||
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/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"
|
msgid "Options"
|
||||||
msgstr "Optionen"
|
msgstr "Optionen"
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr "Organisation"
|
msgstr "Organisation"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "Seite"
|
msgstr "Seite"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr "Seite {pageNumber}"
|
msgstr "Seite {pageNumber}"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr "Passwort"
|
msgstr "Passwort"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr "PDF"
|
msgstr "PDF"
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr "Powered by <0>Simple Icons</0>"
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr "Primärfarbe"
|
msgstr "Primärfarbe"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr "Datenschutzerklärung"
|
msgstr "Datenschutzerklärung"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr "Formell"
|
msgstr "Formell"
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr "Öffentlich"
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "Herausgeber"
|
msgstr "Herausgeber"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr "Problem melden"
|
msgstr "Problem melden"
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr "Problem melden"
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr "Reactive Resume blüht dank seiner lebendigen Gemeinschaft auf. Dieses P
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Wiederherstellen"
|
msgstr "Wiederherstellen"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Entfernen"
|
msgstr "Entfernen"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr "Seite entfernen"
|
msgstr "Seite entfernen"
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr "Bestätigungs-E-Mail erneut senden"
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr "Zurücksetzen"
|
msgstr "Zurücksetzen"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr "Layout zurücksetzen"
|
msgstr "Layout zurücksetzen"
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr "Zoom zurücksetzen"
|
msgstr "Zoom zurücksetzen"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr "Lebensläufe"
|
msgstr "Lebensläufe"
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr "Abgerundet"
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Änderungen speichern"
|
msgstr "Änderungen speichern"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "Lokal speichern"
|
msgstr "Lokal speichern"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Gespeichert"
|
msgstr "Gespeichert"
|
||||||
|
|
||||||
@ -1262,15 +1300,15 @@ msgstr "Zum Schwenken blättern"
|
|||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr "Zum Zoom blättern"
|
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"
|
msgid "Search for a font family"
|
||||||
msgstr "Suche nach einer Schriftfamilie"
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr "Nach einem Schriftart-Subset suchen"
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr "Nach einer Schriftvariante suchen"
|
msgstr "Nach einer Schriftvariante suchen"
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr "Nach einer Sprache suchen"
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr "Abgesichert mit Zwei-Faktor-Authentifizierung"
|
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"
|
msgid "Security"
|
||||||
msgstr "Sicherheit"
|
msgstr "Sicherheit"
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr "Selbst hosten mit Docker"
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr "E-Mail senden"
|
msgstr "E-Mail senden"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr "Schick mir eine Nachricht"
|
msgstr "Schick mir eine Nachricht"
|
||||||
|
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr "Zwei-Faktor-Authentifizierung für dein Konto einrichten"
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr "Freigeben"
|
msgstr "Freigeben"
|
||||||
@ -1330,7 +1369,7 @@ msgstr "Seitenumbruchlinie anzeigen"
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr "Seitenzahlen anzeigen"
|
msgstr "Seitenzahlen anzeigen"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Seitenleiste"
|
msgstr "Seitenleiste"
|
||||||
|
|
||||||
@ -1408,6 +1447,7 @@ msgid "Start building your resume by giving it a name."
|
|||||||
msgstr "Beginne mit der Erstellung Deines Lebenslaufs, indem Du ihm einen Namen gibst."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr "Statistiken"
|
msgstr "Statistiken"
|
||||||
@ -1422,17 +1462,17 @@ msgstr "Bewahre Deine Backup-Codes sicher auf"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr "Zusammenfassung"
|
msgstr "Zusammenfassung"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr "Unterstütze die App, indem du spendest, was du kannst!"
|
msgstr "Unterstütze die App, indem du spendest, was du kannst!"
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr "Unterstütze Reactive Resume"
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr "Unterstützt die Seitenformate A4 / Letter"
|
msgstr "Unterstützt die Seitenformate A4 / Letter"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr "Zum Dunklen Modus wechseln"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr "Zum Lichtmodus wechseln"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr "System"
|
msgstr "System"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "Vorlage"
|
msgstr "Vorlage"
|
||||||
@ -1465,15 +1514,20 @@ msgstr "Erfahrungsberichte"
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr "Schriftfarbe"
|
msgstr "Schriftfarbe"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
msgstr "Die eingegebenen Passwörter stimmen nicht überein."
|
msgstr "Die angeforderte Seite existiert nicht."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
|
msgstr "Die Anfrage war ungültig."
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: 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."
|
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."
|
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/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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,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:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr "Zwei-Faktor-Authentifizierung"
|
msgstr "Zwei-Faktor-Authentifizierung"
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr "Studienart"
|
msgstr "Studienart"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr "Typografie"
|
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"
|
msgid "Underline Links"
|
||||||
msgstr "Links unterstreichen"
|
msgstr "Links unterstreichen"
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr "URL"
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr "URL muss mit https:// beginnen"
|
msgstr "URL muss mit https:// beginnen"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr "Azure OpenAI verwenden"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr "System-Theme verwenden"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,7 +1714,7 @@ msgstr "Version 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Aufrufe"
|
msgstr "Aufrufe"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Sichtbar"
|
msgstr "Sichtbar"
|
||||||
|
|
||||||
@ -1665,11 +1728,11 @@ msgstr "Wir verifizieren deine E-Mail-Adresse nur, um sicherzustellen, dass wir
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr "Webseite"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Was ist neu in der aktuellsten Version"
|
msgstr "Was ist neu in der aktuellsten Version"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr "Sie sind nicht berechtigt, auf diese Seite zuzugreifen."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Du kannst mehrere Schlüsselwörter (Keywords) hinzufügen, indem du sie mit einem Komma trennst oder die Eingabetaste drückst."
|
msgstr "Du kannst mehrere Schlüsselwörter (Keywords) hinzufügen, indem du sie mit einem Komma trennst oder die Eingabetaste drückst."
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr "Du kannst mehrere Schlüsselwörter (Keywords) hinzufügen, indem du sie
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Du kannst alternativ auch deinen Benutzernamen eingeben."
|
msgstr "Du kannst alternativ auch deinen Benutzernamen eingeben."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr "Sie können auch eine Integration mit Ollama vornehmen, indem Sie den API-Schlüssel auf `sk-1234567890abcdef` und die Basis-URL auf Ihre Ollama-URL setzen, d.h. `http://localhost:11434/v1`. Sie können auch Modelle auswählen und die maximalen Token nach Ihren Wünschen festlegen."
|
msgstr "Du kannst dich auch in Azure OpenAI integrieren, indem du das Kontrollkästchen <0>Azure OpenAI</0> verwenden und die Ressourcen-URL auf deine Azure OpenAI-Ressource setzt: <1>https://your-resource. penai.azure.com</1>. Legen Sie den Bereitstellungsnamen im Modellfeld fest und geben Sie die entsprechende API-Version für Ihren Azure-Einsatz an."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
msgstr "Du kannst die OpenAI API nutzen, um Inhalte zu generieren oder deine Schreibfähigkeiten beim Verfassen deines Lebenslaufs zu verbessern."
|
msgstr "Sie können sich auch einfach mit Ollama integrieren indem Sie den API-Schlüssel zu<0>sk-1234567890abcdef</0> und die Basis-URL auf Ihre Ollama URL, i. .<1>http://localhost:11434/v1</1>. Sie können auch Modelle auswählen und wählen und die Maximal-Tokens nach Ihren Vorlieben festlegen."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
|
msgstr "Sie können die OpenAI-API, Azure OpenAI oder Ollama nutzen, um Ihnen dabei zu helfen, Inhalte zu generieren oder Ihr Schreiben zu verbessern, während Sie Ihren Lebenslauf komponieren."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Hier siehst Du die Aufrufe und Downloads dieses Lebenslaufs, wenn Du ihn öffentlich teilst."
|
msgstr "Hier siehst Du die Aufrufe und Downloads dieses Lebenslaufs, wenn Du ihn öffentlich teilst."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr "Sie besitzen nicht die nötigen Berechtigungen, um auf diese Seite zuzugreifen."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "Du hast die Möglichkeit, <0>deinen eigenen OpenAI API-Schlüssel zu bekommen</0>. Mit diesem Schlüssel kannst du die API nach Belieben nutzen. Wenn du die KI-Funktionen in Reactive Resume komplett deaktivieren möchtest, entferne einfach den Schlüssel in deinen Einstellungen."
|
msgstr "Du hast die Möglichkeit, <0>deinen eigenen OpenAI API-Schlüssel zu bekommen</0>. Mit diesem Schlüssel kannst du die API nach Belieben nutzen. Wenn du die KI-Funktionen in Reactive Resume komplett deaktivieren möchtest, entferne einfach den Schlüssel in deinen Einstellungen."
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr "Du hast Post!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Dein Konto und alle deine Daten wurden erfolgreich gelöscht. Bis bald!"
|
msgstr "Dein Konto und alle deine Daten wurden erfolgreich gelöscht. Bis bald!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "Dein API-Schlüssel wird sicher im lokalen Speicher deines Browsers gespeichert und kommt nur zum Einsatz, wenn du mit OpenAI's Diensten über deren offizielles SDK Kontakt aufnimmst. Keine Sorge, dein Schlüssel wird nur an OpenAI gesendet und sonst an keinen anderen Server."
|
msgstr "Dein API-Schlüssel wird sicher im lokalen Speicher deines Browsers gespeichert und kommt nur zum Einsatz, wenn du mit OpenAI's Diensten über deren offizielles SDK Kontakt aufnimmst. Keine Sorge, dein Schlüssel wird nur an OpenAI gesendet und sonst an keinen anderen Server."
|
||||||
|
|
||||||
@ -1733,7 +1808,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."
|
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."
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr "Dein Passwort wurde erfolgreich geändert."
|
msgstr "Dein Passwort wurde erfolgreich geändert."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: el\n"
|
"Language: el\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:40\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Greek\n"
|
"Language-Team: Greek\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -30,27 +30,27 @@ msgstr "{templatesCount} πρότυπα βιογραφικών για να δι
|
|||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr "{value, plural, one {Στήλη} other {Στήλες}}"
|
msgstr "{value, plural, one {Στήλη} other {Στήλες}}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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 κυρίως μόνος μου στον ελεύθερο χρόνο μου, με πολλή βοήθεια από άλλους σπουδαίους συνεισφέροντες ανοιχτού κώδικα.</0><1>Αν σας αρέσει η εφαρμογή και θέλετε να στηρίξετε τη διατήρησή της δωρεάν για πάντα, παρακαλώ δωρίστε ότι μπορείτε να δώσετε.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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>Αν αντιμετωπίσατε προβλήματα κατά τη δημιουργία του βιογραφικού σας, ή έχετε κάποια ιδέα που μπορεί να βοηθήσει εσάς ή άλλους για να δημιουργήσετε το βιογραφικό πιο εύκολα, στείλτε μου ένα email σχετικά με αυτό. </1>"
|
msgstr "<0>Είμαι βέβαιος ότι η εφαρμογή δεν είναι τέλεια, αλλά θα ήθελα να είναι. </0><1>Αν αντιμετωπίσατε προβλήματα κατά τη δημιουργία του βιογραφικού σας, ή έχετε κάποια ιδέα που μπορεί να βοηθήσει εσάς ή άλλους για να δημιουργήσετε το βιογραφικό πιο εύκολα, στείλτε μου ένα email σχετικά με αυτό. </1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 "<0>Σημείωση: </0>Χρησιμοποιώντας το API του OpenAI, αναγνωρίζετε και αποδέχεστε τους <1>όρους χρήσης</1> και την <2>πολιτική απορρήτου</2> που περιγράφονται από το OpenAI. Σημειώστε ότι η Reactive Resume δεν φέρει καμία ευθύνη για οποιαδήποτε ακατάλληλη ή μη εξουσιοδοτημένη χρήση της υπηρεσίας, και οποιεσδήποτε επακόλουθες επιπτώσεις ή ευθύνες βαρύνουν αποκλειστικά τον χρήστη."
|
msgstr "<0>Σημείωση: </0>Χρησιμοποιώντας το API του OpenAI, αναγνωρίζετε και αποδέχεστε τους <1>όρους χρήσης</1> και την <2>πολιτική απορρήτου</2> που περιγράφονται από το OpenAI. Σημειώστε ότι η Reactive Resume δεν φέρει καμία ευθύνη για οποιαδήποτε ακατάλληλη ή μη εξουσιοδοτημένη χρήση της υπηρεσίας, και οποιεσδήποτε επακόλουθες επιπτώσεις ή ευθύνες βαρύνουν αποκλειστικά τον χρήστη."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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>"
|
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."
|
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||||
msgstr "<0>Ο έλεγχος ταυτότητας δύο παραγόντων είναι επί του παρόντος απενεργοποιημένος.</0> Μπορείτε να τον ενεργοποιήσετε προσθέτοντας μια εφαρμογή ελέγχου ταυτότητας στο λογαριασμό σας."
|
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."
|
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||||
msgstr "<0>Ο έλεγχος ταυτότητας δύο παραγόντων είναι ενεργοποιημένος.</0> Θα σας ζητηθεί να εισάγετε έναν κωδικό κάθε φορά που συνδέεστε."
|
msgstr "<0>Ο έλεγχος ταυτότητας δύο παραγόντων είναι ενεργοποιημένος.</0> Θα σας ζητηθεί να εισάγετε έναν κωδικό κάθε φορά που συνδέεστε."
|
||||||
|
|
||||||
@ -102,8 +102,8 @@ msgstr "Λογαριασμός χρήστη"
|
|||||||
msgid "Add a custom field"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Προσθήκη νέου αντικείμενου"
|
msgstr "Προσθήκη νέου αντικείμενου"
|
||||||
@ -117,7 +117,7 @@ msgstr "Προσθήκη νέου αντικείμενου"
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr "Προσθήκη νέας ενότητας"
|
msgstr "Προσθήκη νέας ενότητας"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr "Προσθήκη νέας σελίδας"
|
msgstr "Προσθήκη νέας σελίδας"
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr "Έχεις ήδη λογαριασμό;"
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr "Προέκυψε σφάλμα κατά την αποστολή του αρχείου."
|
msgstr "Προέκυψε σφάλμα κατά την αποστολή του αρχείου."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr "Παρουσιάστηκε ένα εσωτερικό σφάλμα διακομιστή."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr "Παρουσιάστηκε μη αναμενόμενο σφάλμα."
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr "και πολλά άλλα..."
|
msgstr "και πολλά άλλα..."
|
||||||
@ -191,6 +199,18 @@ msgstr "Διαθέσιμο σε {languagesCount} γλώσσες"
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr "Βραβευτής"
|
msgstr "Βραβευτής"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr "Azure Έκδοση Api"
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr "Azure OpenAI Base URL, όνομα ανάπτυξης (μοντέλο) και έκδοση API απαιτούνται όταν χρησιμοποιείτε το Azure OpenAI."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr "Url Πόρου Azure OpenAI"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,7 +229,7 @@ msgstr "Εφεδρικός κωδικός"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Οι κωδικοί αντιγράφων ασφαλείας μπορούν να περιέχουν μόνο πεζά γράμματα ή αριθμούς και πρέπει να είναι ακριβώς 10 χαρακτήρες."
|
msgstr "Οι κωδικοί αντιγράφων ασφαλείας μπορούν να περιέχουν μόνο πεζά γράμματα ή αριθμούς και πρέπει να είναι ακριβώς 10 χαρακτήρες."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "https://rxresu.me/builder/cm23wdob830tdmtv5iyuvprzz"
|
msgstr "https://rxresu.me/builder/cm23wdob830tdmtv5iyuvprzz"
|
||||||
|
|
||||||
@ -246,8 +266,8 @@ msgstr "Από την κοινότητα, για την κοινότητα."
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Ακύρωση"
|
msgstr "Ακύρωση"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr "Περιστασιακό"
|
msgstr "Περιστασιακό"
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr "Περιστασιακό"
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr "Κεντράρισμα Πίνακα"
|
msgstr "Κεντράρισμα Πίνακα"
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr "Αλλαγή Γλώσσας"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr "Αλλαγή κωδικού πρόσβασης"
|
msgstr "Αλλαγή κωδικού πρόσβασης"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr "Αλλαγή τόνου"
|
msgstr "Αλλαγή τόνου"
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr "Στήλες"
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr "Εταιρεια"
|
msgstr "Εταιρεια"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr "Αυτοπεποίθηση"
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Συνέχεια"
|
msgstr "Συνέχεια"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Αντιγραφή"
|
msgstr "Αντιγραφή"
|
||||||
|
|
||||||
@ -351,7 +371,12 @@ msgstr "Δημιουργήστε ένα τώρα"
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr "Δημιουργία νέου βιογραφικού σημειώματος"
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr "Προσαρμοσμένη CSS"
|
msgstr "Προσαρμοσμένη CSS"
|
||||||
@ -386,10 +411,10 @@ msgstr "Σκούρο"
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Ημερομηνία"
|
msgstr "Ημερομηνία"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Ημερομηνία ή εύρος ημερομηνιών"
|
msgstr "Ημερομηνία ή εύρος ημερομηνιών"
|
||||||
@ -407,11 +432,15 @@ msgstr "Διαγραφή"
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr "Διαγραφή Λογαριασμού"
|
msgstr "Διαγραφή Λογαριασμού"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr "Όνομα Εφαρμογής"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Περιγραφή"
|
msgstr "Περιγραφή"
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr "Σχεδιασμός μονοσέλιδων/πολυσέλιδων βι
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr "Απενεργοποίηση"
|
msgstr "Απενεργοποίηση"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||||
msgid "Disable 2FA"
|
msgid "Disable 2FA"
|
||||||
msgstr "Απενεργοποίηση 2FA"
|
msgstr "Απενεργοποίηση 2FA"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr "Απόρριψη"
|
msgstr "Απόρριψη"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Εγχειρίδιο"
|
msgstr "Εγχειρίδιο"
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr "Εγχειρίδιο"
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr "Δεν έχετε λογαριασμό;"
|
msgstr "Δεν έχετε λογαριασμό;"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr "Δεν ξέρετε από πού να ξεκινήσετε; Δείτε τα έγγραφα!"
|
msgstr "Δεν ξέρετε από πού να ξεκινήσετε; Δείτε τα έγγραφα!"
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr "Δεν ξέρετε από πού να ξεκινήσετε; Δείτε
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr "Δεν βλέπετε τη γλώσσα σας; <0>Βοηθήστε στη μετάφραση της εφαρμογής.</0>"
|
msgstr "Δεν βλέπετε τη γλώσσα σας; <0>Βοηθήστε στη μετάφραση της εφαρμογής.</0>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr "Κάντε μία δωρεά στο Reactive Resume"
|
msgstr "Κάντε μία δωρεά στο Reactive Resume"
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr "Κάντε μία δωρεά στο Reactive Resume"
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr "Κατεβάστε ένα στιγμιότυπο JSON του βιογραφικού σας. Αυτό το αρχείο μπορεί να χρησιμοποιηθεί για να εισαγάγετε το βιογραφικό σας στο μέλλον ή μπορεί ακόμη και να το μοιραστείτε με άλλους για συνεργασία."
|
msgstr "Κατεβάστε ένα στιγμιότυπο JSON του βιογραφικού σας. Αυτό το αρχείο μπορεί να χρησιμοποιηθεί για να εισαγάγετε το βιογραφικό σας στο μέλλον ή μπορεί ακόμη και να το μοιραστείτε με άλλους για συνεργασία."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
msgstr "Κατεβάστε ένα PDF του βιογραφικού σας σημειώματος. Αυτό το αρχείο μπορεί να χρησιμοποιηθεί για να εκτυπώσετε το βιογραφικό σας, να το στείλετε σε εργοδότες ή να το ανεβάσετε σε πύλες εργασίας."
|
msgstr "Κατεβάστε ένα PDF του βιογραφικού σας σημειώματος. Αυτό το αρχείο μπορεί να χρησιμοποιηθεί για να εκτυπώσετε το βιογραφικό σας, να το στείλετε σε εργοδότες ή να το ανεβάσετε σε πύλες εργασίας."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr "Λήψη PDF"
|
msgstr "Λήψη PDF"
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr "Αντιγραφή ενός υπάρχοντος στοιχείου"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Αντιγραφή ενός υπάρχοντος βιογραφικού σημειώματος"
|
msgstr "Αντιγραφή ενός υπάρχοντος βιογραφικού σημειώματος"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Τροποποίηση"
|
msgstr "Τροποποίηση"
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr "Εφέ:"
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr "Ηλ.Ταχυδρομείο"
|
msgstr "Ηλ.Ταχυδρομείο"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||||
msgid "Enable 2FA"
|
msgid "Enable 2FA"
|
||||||
msgstr "Ενεργοποίηση 2FA"
|
msgstr "Ενεργοποίηση 2FA"
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr "Πληκτρολογήστε τον κωδικό πρόσβασης μι
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr "Εισάγετε τη διεύθυνση ηλεκτρονικού ταχυδρομείου σας και θα σας στείλουμε έναν σύνδεσμο για να επαναφέρετε τον κωδικό πρόσβασής σας, εάν ο λογαριασμός υπάρχει."
|
msgstr "Εισάγετε τη διεύθυνση ηλεκτρονικού ταχυδρομείου σας και θα σας στείλουμε έναν σύνδεσμο για να επαναφέρετε τον κωδικό πρόσβασής σας, εάν ο λογαριασμός υπάρχει."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr "Σφάλμα {statusCode}"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr "Σφάλματα"
|
msgstr "Σφάλματα"
|
||||||
@ -544,6 +576,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
|||||||
msgstr "Εξερευνήστε τα πρότυπα που είναι διαθέσιμα στο Reactive Resume και δείτε τα βιογραφικά που έχουν δημιουργηθεί με αυτά. Θα μπορούσαν επίσης να χρησιμεύσουν ως παραδείγματα που θα σας βοηθήσουν να καθοδηγήσετε τη δημιουργία του επόμενου βιογραφικού σας."
|
msgstr "Εξερευνήστε τα πρότυπα που είναι διαθέσιμα στο Reactive Resume και δείτε τα βιογραφικά που έχουν δημιουργηθεί με αυτά. Θα μπορούσαν επίσης να χρησιμεύσουν ως παραδείγματα που θα σας βοηθήσουν να καθοδηγήσετε τη δημιουργία του επόμενου βιογραφικού σας."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr "Εξαγωγή"
|
msgstr "Εξαγωγή"
|
||||||
@ -564,19 +597,19 @@ msgstr "Τέλος,"
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr "Ορθογραφία & γραμματική"
|
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"
|
msgid "Font Family"
|
||||||
msgstr "Οικογένεια γραμματοσειράς"
|
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"
|
msgid "Font Size"
|
||||||
msgstr "Μέγεθος γραμματοσειράς"
|
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"
|
msgid "Font Subset"
|
||||||
msgstr "Υποσύνολο γραμματοσειρών"
|
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"
|
msgid "Font Variants"
|
||||||
msgstr "Παραλλαγές γραμματοσειράς"
|
msgstr "Παραλλαγές γραμματοσειράς"
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr "Παραλλαγές γραμματοσειράς"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "Για παράδειγμα, πληροφορίες σχετικά με τις εταιρείες στις οποίες στείλατε το βιογραφικό σας ή τους συνδέσμους προς τις περιγραφές θέσεων εργασίας μπορούν να σημειωθούν εδώ."
|
msgstr "Για παράδειγμα, πληροφορίες σχετικά με τις εταιρείες στις οποίες στείλατε το βιογραφικό σας ή τους συνδέσμους προς τις περιγραφές θέσεων εργασίας μπορούν να σημειωθούν εδώ."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Ξεχάστε το"
|
msgstr "Ξεχάστε το"
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr "Ξεχάσατε τον κωδικό πρόσβασής σας;"
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr "Μορφή"
|
msgstr "Μορφή"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr "Βρήκατε ένα σφάλμα ή έχετε μια ιδέα για μια νέα λειτουργία;"
|
msgstr "Βρήκατε ένα σφάλμα ή έχετε μια ιδέα για μια νέα λειτουργία;"
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr "Βρήκατε ένα σφάλμα ή έχετε μια ιδέα για
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr "Δωρεάν Για Πάντα"
|
msgstr "Δωρεάν Για Πάντα"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr "Φιλικό"
|
msgstr "Φιλικό"
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr "Δώστε στο παλιό σας βιογραφικό ένα νέο
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr "Μετάβαση στον πίνακα εργαλείων (dashboard)"
|
msgstr "Μετάβαση στον πίνακα εργαλείων (dashboard)"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr "Μετάβαση στην αρχική"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr "Google"
|
msgstr "Google"
|
||||||
@ -651,7 +688,7 @@ msgstr "Google"
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr "Κλίμακα του Γκρι"
|
msgstr "Κλίμακα του Γκρι"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr "Πλέγμα"
|
msgstr "Πλέγμα"
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr "Εδώ, μπορείτε να ενημερώσετε το προφίλ σας για να προσαρμόσετε και να εξατομικεύσετε την εμπειρία σας."
|
msgstr "Εδώ, μπορείτε να ενημερώσετε το προφίλ σας για να προσαρμόσετε και να εξατομικεύσετε την εμπειρία σας."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Hidden"
|
msgstr "Hidden"
|
||||||
@ -677,7 +714,7 @@ msgstr "Hidden"
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr "Απόκρυψη"
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr "Απόκρυψη Εικονιδίων"
|
msgstr "Απόκρυψη Εικονιδίων"
|
||||||
|
|
||||||
@ -734,7 +771,7 @@ msgstr "Βελτίωση Εγγραφής"
|
|||||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||||
msgstr "Σε περίπτωση που δεν μπορείτε να σαρώσετε αυτόν τον κωδικό QR, μπορείτε επίσης να αντιγράψετε αυτόν τον σύνδεσμο στην εφαρμογή ελέγχου ταυτότητας."
|
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."
|
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||||
msgstr "Σε αυτή την ενότητα, μπορείτε να αλλάξετε τον κωδικό πρόσβασής σας και να ενεργοποιήσετε/απενεργοποιήσετε τον έλεγχο ταυτότητας δύο παραγόντων."
|
msgstr "Σε αυτή την ενότητα, μπορείτε να αλλάξετε τον κωδικό πρόσβασής σας και να ενεργοποιήσετε/απενεργοποιήσετε τον έλεγχο ταυτότητας δύο παραγόντων."
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ msgid "In this section, you can delete your account and all the data associated
|
|||||||
msgstr "Σε αυτή την ενότητα, μπορείτε να διαγράψετε το λογαριασμό σας και όλα τα δεδομένα που σχετίζονται με τον χρήστη σας, αλλά λάβετε υπόψη ότι <0>αυτή η ενέργεια είναι μη αναστρέψιμη</0>."
|
msgstr "Σε αυτή την ενότητα, μπορείτε να διαγράψετε το λογαριασμό σας και όλα τα δεδομένα που σχετίζονται με τον χρήστη σας, αλλά λάβετε υπόψη ότι <0>αυτή η ενέργεια είναι μη αναστρέψιμη</0>."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Πληροφορίες"
|
msgstr "Πληροφορίες"
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr "john.doe@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Λέξεις-κλειδιά"
|
msgstr "Λέξεις-κλειδιά"
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr "Τελευταία ενημέρωση {lastUpdated}"
|
msgstr "Τελευταία ενημέρωση {lastUpdated}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Διάταξη"
|
msgstr "Διάταξη"
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr "Γράμμα"
|
msgstr "Γράμμα"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr "Επίπεδο"
|
msgstr "Επίπεδο"
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr "Φωτεινό"
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr "Ανοιχτό ή σκοτεινό θέμα"
|
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"
|
msgid "Line Height"
|
||||||
msgstr "Ύψος Γραμμής"
|
msgstr "Ύψος Γραμμής"
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr "Ύψος Γραμμής"
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr "LinkedIn, JSON Βιογραφικό, κλπ."
|
msgstr "LinkedIn, JSON Βιογραφικό, κλπ."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr "Λίστα"
|
msgstr "Λίστα"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr "Αποσύνδεση"
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr "Χάσατε τη συσκευή σας;"
|
msgstr "Χάσατε τη συσκευή σας;"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr "Κύρια"
|
msgstr "Κύρια"
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr "Μάρτιος 2023"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr "Μάρτιος 2023 - Παρόν"
|
msgstr "Μάρτιος 2023 - Παρόν"
|
||||||
@ -923,7 +962,7 @@ msgstr "Μάρτιος 2023 - Παρόν"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Περιθώρια"
|
msgstr "Περιθώρια"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "Μέγιστα κουπόνια"
|
msgstr "Μέγιστα κουπόνια"
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr "Μέγιστα κουπόνια"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "MIT License"
|
msgstr "MIT License"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "Μοντέλο"
|
msgstr "Μοντέλο"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr "Ονομα"
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Τύπος δικτύου"
|
msgstr "Τύπος δικτύου"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||||
msgid "New Password"
|
msgid "New Password"
|
||||||
msgstr "Νέος κωδικός"
|
msgstr "Νέος κωδικός"
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr "Σημείωση: Αυτό θα καταστήσει το λογαριασμό σας λιγότερο ασφαλή."
|
msgstr "Σημείωση: Αυτό θα καταστήσει το λογαριασμό σας λιγότερο ασφαλή."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Σημειώσεις"
|
msgstr "Σημειώσεις"
|
||||||
@ -1009,16 +1049,16 @@ msgstr "Το OpenAI δεν επέστρεψε καμία επιλογή για
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "Ενσωμάτωση OpenAI"
|
msgstr "Ενσωμάτωση OpenAI"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
msgstr "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr "Κλειδί API OpenAI/Ollama"
|
msgstr "Κλειδί API OpenAI/Ollama"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
|
||||||
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/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"
|
msgid "Options"
|
||||||
msgstr "Ρυθμίσεις"
|
msgstr "Ρυθμίσεις"
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr "Οργανισμος"
|
msgstr "Οργανισμος"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "Σελίδα"
|
msgstr "Σελίδα"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr "Σελίδα {pageNumber}"
|
msgstr "Σελίδα {pageNumber}"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr "Κωδικός"
|
msgstr "Κωδικός"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr "PDF"
|
msgstr "PDF"
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr "Powered by <0>Simple Icons</0>"
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr "Βασικό χρώμα"
|
msgstr "Βασικό χρώμα"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr "Πολιτική Απορρήτου"
|
msgstr "Πολιτική Απορρήτου"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr "Επαγγελματικό"
|
msgstr "Επαγγελματικό"
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr "Δημόσια"
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "Εκδότες"
|
msgstr "Εκδότες"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr "Θέστε ένα θέμα"
|
msgstr "Θέστε ένα θέμα"
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr "Θέστε ένα θέμα"
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr "Το Reactive Resume ευδοκιμεί χάρη στη ζωντανή
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Επανάληψη"
|
msgstr "Επανάληψη"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Αφαιρεση"
|
msgstr "Αφαιρεση"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr "Αφαίρεση σελίδας"
|
msgstr "Αφαίρεση σελίδας"
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr "Επανάληψη αποστολής συνδέσμου επιβεβα
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr "Επαναφορά"
|
msgstr "Επαναφορά"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr "Επαναφορά Διάταξης"
|
msgstr "Επαναφορά Διάταξης"
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr "Επαναφορά μεγένθυνσης"
|
msgstr "Επαναφορά μεγένθυνσης"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr "Βιογραφικά σημειώματα"
|
msgstr "Βιογραφικά σημειώματα"
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr "Στρογγυλεμένο"
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Αποθήκευση Αλλαγών;"
|
msgstr "Αποθήκευση Αλλαγών;"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "Αποθηκεύστε τοπικά"
|
msgstr "Αποθηκεύστε τοπικά"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Αποθηκευμένο"
|
msgstr "Αποθηκευμένο"
|
||||||
|
|
||||||
@ -1262,15 +1300,15 @@ msgstr "Μετακινηθείτε στο Pan"
|
|||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr "Μετακινηθείτε στο Ζουμ"
|
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"
|
msgid "Search for a font family"
|
||||||
msgstr "Αναζήτηση οικογένειας γραμματοσειρών"
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr "Αναζήτηση οικογένειας γραμματοσειρών"
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr "Αναζήτηση οικογένειας γραμματοσειρών"
|
msgstr "Αναζήτηση οικογένειας γραμματοσειρών"
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr "Αναζήτηση γλώσσας"
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr "Ασφάλεια με έλεγχο ταυτότητας δύο παραγόντων"
|
msgstr "Ασφάλεια με έλεγχο ταυτότητας δύο παραγόντων"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "Ασφάλεια"
|
msgstr "Ασφάλεια"
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr "Self-host με Docker"
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr "Αποστολή Email"
|
msgstr "Αποστολή Email"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr "Αποστολή μηνύματος"
|
msgstr "Αποστολή μηνύματος"
|
||||||
|
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr "Ρυθμίστε τον έλεγχο ταυτότητας δύο παραγόντων στο λογαριασμό σας"
|
msgstr "Ρυθμίστε τον έλεγχο ταυτότητας δύο παραγόντων στο λογαριασμό σας"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr "Κοινοποίηση"
|
msgstr "Κοινοποίηση"
|
||||||
@ -1330,7 +1369,7 @@ msgstr "Εμφάνιση γραμμής διακοπής"
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr "Εμφάνιση αριθμών σελίδων"
|
msgstr "Εμφάνιση αριθμών σελίδων"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Πλαϊνή μπάρα"
|
msgstr "Πλαϊνή μπάρα"
|
||||||
|
|
||||||
@ -1408,6 +1447,7 @@ msgid "Start building your resume by giving it a name."
|
|||||||
msgstr "Ξεκινήστε να φτιάχνετε το βιογραφικό σας δίνοντάς του ένα όνομα."
|
msgstr "Ξεκινήστε να φτιάχνετε το βιογραφικό σας δίνοντάς του ένα όνομα."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr "Στατιστικά"
|
msgstr "Στατιστικά"
|
||||||
@ -1422,17 +1462,17 @@ msgstr "Αποθηκεύστε τους κωδικούς αντιγράφων α
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr "Σύνοψη"
|
msgstr "Σύνοψη"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr "Υποστηρίξτε την εφαρμογή δωρίζοντας ό,τι μπορείτε!"
|
msgstr "Υποστηρίξτε την εφαρμογή δωρίζοντας ό,τι μπορείτε!"
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr "Υποστήριξη Reactive Resume"
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr "Υποστηρίζει μορφές σελίδων A4/Letter"
|
msgstr "Υποστηρίζει μορφές σελίδων A4/Letter"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr "Εναλλαγή σε σκοτεινή λειτουργία"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr "Εναλλαγή σε λειτουργία φωτός"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr "Σύστημα"
|
msgstr "Σύστημα"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "Πρότυπο"
|
msgstr "Πρότυπο"
|
||||||
@ -1465,15 +1514,20 @@ msgstr "Αναφορές πελατών"
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr "Χρώματα κειμένου"
|
msgstr "Χρώματα κειμένου"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
msgstr "Οι κωδικοί πρόσβασης που εισάγατε δεν ταιριάζουν"
|
msgstr "Η σελίδα που ψάχνετε δεν υπάρχει."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
|
msgstr "Το αίτημα δεν ήταν έγκυρο."
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: 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."
|
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||||
msgstr "Το βιογραφικό σημείωμα που θέλετε να ενημερώσετε είναι κλειδωμένο, παρακαλούμε ξεκλειδώστε το αν θέλετε να κάνετε αλλαγές σε αυτό."
|
msgstr "Το βιογραφικό σημείωμα που θέλετε να ενημερώσετε είναι κλειδωμένο, παρακαλούμε ξεκλειδώστε το αν θέλετε να κάνετε αλλαγές σε αυτό."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
#: 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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,7 @@ msgstr "Παρακολούθηση προβολών και λήψεων"
|
|||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr "Ελεγχος ταυτότητας δυο σταδίων"
|
msgstr "Ελεγχος ταυτότητας δυο σταδίων"
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr "Τύπος μελέτης"
|
msgstr "Τύπος μελέτης"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr "Τυπογραφία"
|
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"
|
msgid "Underline Links"
|
||||||
msgstr "Υπογράμμιση συνδέσμων"
|
msgstr "Υπογράμμιση συνδέσμων"
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr "URL"
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr "Η διεύθυνση URL πρέπει να αρχίζει με https://"
|
msgstr "Η διεύθυνση URL πρέπει να αρχίζει με https://"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr "Χρήση Azure OpenAI"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr "Χρήση Θέματος Συστήματος"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,7 +1714,7 @@ msgstr "Έκδοση 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Προβολές"
|
msgstr "Προβολές"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Ορατό"
|
msgstr "Ορατό"
|
||||||
|
|
||||||
@ -1665,11 +1728,11 @@ msgstr "Επαληθεύουμε τη διεύθυνση email σας μόνο
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr "Ιστοσελίδα"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Τι νέο υπάρχει στην τελευταία έκδοση"
|
msgstr "Τι νέο υπάρχει στην τελευταία έκδοση"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr "Δεν είστε εξουσιοδοτημένοι να έχετε πρόσβαση σε αυτή τη σελίδα."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Μπορείτε να προσθέσετε πολλαπλές λέξεις-κλειδιά διαχωρίζοντάς τες με κόμμα ή πατώντας enter."
|
msgstr "Μπορείτε να προσθέσετε πολλαπλές λέξεις-κλειδιά διαχωρίζοντάς τες με κόμμα ή πατώντας enter."
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr "Μπορείτε να προσθέσετε πολλαπλές λέξει
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Μπορείτε επίσης να εισάγετε το όνομα χρήστη σας."
|
msgstr "Μπορείτε επίσης να εισάγετε το όνομα χρήστη σας."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr "Μπορείτε επίσης να ενσωματωθείτε με το Ollama απλά θέτοντας το κλειδί API σε `sk-1234567890abcdef` και τη διεύθυνση URL της βάσης στη διεύθυνση URL του Ollama, π.χ. `http://localhost:11434/v1`. Μπορείτε επίσης να διαλέξετε και να επιλέξετε μοντέλα και να ορίσετε τα μέγιστα tokens σύμφωνα με τις προτιμήσεις σας."
|
msgstr "Μπορείτε επίσης να ενσωματώσετε με το Azure OpenAI ενεργοποιώντας το πλαίσιο ελέγχου <0>Χρήση Azure OpenAI</0> και ορίζοντας τη διεύθυνση URL του πόρου στο Azure OpenAI πόρος: <1>https://your-resource. penai.azure.com</1>. Ορίστε το όνομα ανάπτυξης στο πεδίο Μοντέλο και καθορίστε την κατάλληλη έκδοση API για την ανάπτυξη του Azure."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
msgstr "Μπορείτε να χρησιμοποιήσετε το OpenAI API για να σας βοηθήσει να δημιουργήσετε περιεχόμενο, ή να βελτιώσετε το γράψιμό σας, ενώ συνθέτετε το βιογραφικό σας."
|
msgstr "Μπορείτε επίσης να ενσωματώσετε με την Ollama απλά με τη ρύθμιση του κλειδιού API στο<0>sk-1234567890abcdef</0> και το URL βάσης στο Ollama URL, i. .<1>http://localhost:11434/v1</1>. Μπορείτε επίσης να επιλέξετε μοντέλα και να ορίσετε τις μέγιστες μάρκες σύμφωνα με τις προτιμήσεις σας."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
|
msgstr "Μπορείτε να χρησιμοποιήσετε το OpenAI API, το Azure OpenAI, ή το Ollama για να σας βοηθήσει να δημιουργήσετε περιεχόμενο, ή να βελτιώσετε το γράψιμό σας ενώ συνθέτετε το βιογραφικό σας."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Μπορείτε να παρακολουθείτε τον αριθμό των προβολών που έχει λάβει το βιογραφικό σας, ή πόσοι άνθρωποι έχουν κατεβάσει το βιογραφικό ενεργοποιώντας την κοινή χρήση του κοινού."
|
msgstr "Μπορείτε να παρακολουθείτε τον αριθμό των προβολών που έχει λάβει το βιογραφικό σας, ή πόσοι άνθρωποι έχουν κατεβάσει το βιογραφικό ενεργοποιώντας την κοινή χρήση του κοινού."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr "Δεν έχετε δικαίωμα πρόσβασης σε αυτή τη σελίδα."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "Έχετε την επιλογή <0>αποκτήστε το δικό σας κλειδί OpenAI API</0>. Αυτό το κλειδί σας δίνει τη δυνατότητα να αξιοποιήσετε το API όπως σας φαίνεται κατάλληλο. Εναλλακτικά, αν θέλετε να απενεργοποιήσετε τις λειτουργίες τεχνητής νοημοσύνης στο Reume ενεργό συνολικά, μπορείτε απλά να αφαιρέσετε το κλειδί από τις ρυθμίσεις σας."
|
msgstr "Έχετε την επιλογή <0>αποκτήστε το δικό σας κλειδί OpenAI API</0>. Αυτό το κλειδί σας δίνει τη δυνατότητα να αξιοποιήσετε το API όπως σας φαίνεται κατάλληλο. Εναλλακτικά, αν θέλετε να απενεργοποιήσετε τις λειτουργίες τεχνητής νοημοσύνης στο Reume ενεργό συνολικά, μπορείτε απλά να αφαιρέσετε το κλειδί από τις ρυθμίσεις σας."
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr "Έχετε email!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Ο λογαριασμός σας και όλα τα δεδομένα σας έχουν διαγραφεί επιτυχώς. Goodbye!"
|
msgstr "Ο λογαριασμός σας και όλα τα δεδομένα σας έχουν διαγραφεί επιτυχώς. Goodbye!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "Το κλειδί API σας αποθηκεύεται με ασφάλεια στον τοπικό αποθηκευτικό χώρο του προγράμματος περιήγησης και χρησιμοποιείται μόνο όταν κάνει αιτήσεις στο OpenAI μέσω του επίσημου SDK. Να είστε βέβαιοι ότι το κλειδί σας δεν μεταδίδεται σε κανέναν εξωτερικό διακομιστή εκτός όταν αλληλεπιδρά με τις υπηρεσίες του OpenAI."
|
msgstr "Το κλειδί API σας αποθηκεύεται με ασφάλεια στον τοπικό αποθηκευτικό χώρο του προγράμματος περιήγησης και χρησιμοποιείται μόνο όταν κάνει αιτήσεις στο OpenAI μέσω του επίσημου SDK. Να είστε βέβαιοι ότι το κλειδί σας δεν μεταδίδεται σε κανέναν εξωτερικό διακομιστή εκτός όταν αλληλεπιδρά με τις υπηρεσίες του OpenAI."
|
||||||
|
|
||||||
@ -1733,7 +1808,7 @@ msgstr "Η διεύθυνση email σας έχει επαληθευτεί επ
|
|||||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||||
msgstr "Το OpenAI API κλειδί σας δεν έχει οριστεί ακόμα. Παρακαλώ πηγαίνετε στις ρυθμίσεις του λογαριασμού σας για να ενεργοποιήσετε την ενοποίηση OpenAI."
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr "Ο κωδικός πρόσβασής σας έχει ενημερωθεί με επιτυχία."
|
msgstr "Ο κωδικός πρόσβασής σας έχει ενημερωθεί με επιτυχία."
|
||||||
|
|
||||||
|
|||||||
@ -30,27 +30,27 @@ msgstr "{templatesCount} resume templates to choose from"
|
|||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr "{value, plural, one {Column} other {Columns}}"
|
msgstr "{value, plural, one {Column} other {Columns}}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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>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>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>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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>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>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>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 "<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 "<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."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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>"
|
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."
|
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."
|
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."
|
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."
|
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"
|
msgid "Add a custom field"
|
||||||
msgstr "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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Add a new item"
|
msgstr "Add a new item"
|
||||||
@ -117,7 +117,7 @@ msgstr "Add a new item"
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr "Add a new section"
|
msgstr "Add a new section"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr "Add New Page"
|
msgstr "Add New Page"
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr "Already have an account?"
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr "An error occurred while validating the file."
|
msgstr "An error occurred while validating the file."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr "An internal server error occurred."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr "An unexpected error occurred."
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr "and many more..."
|
msgstr "and many more..."
|
||||||
@ -191,6 +199,18 @@ msgstr "Available in {languagesCount} languages"
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr "Awarder"
|
msgstr "Awarder"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr "Azure API Version"
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr "Azure OpenAI Resource URL"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,7 +229,7 @@ msgstr "Backup Code"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgstr "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "Base URL"
|
msgstr "Base URL"
|
||||||
|
|
||||||
@ -246,8 +266,8 @@ msgstr "By the community, for the community."
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Cancel"
|
msgstr "Cancel"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr "Casual"
|
msgstr "Casual"
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr "Casual"
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr "Center Artboard"
|
msgstr "Center Artboard"
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr "Change Language"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr "Change Password"
|
msgstr "Change Password"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr "Change Tone"
|
msgstr "Change Tone"
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr "Columns"
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr "Company"
|
msgstr "Company"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr "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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Continue"
|
msgstr "Continue"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Copy"
|
msgstr "Copy"
|
||||||
|
|
||||||
@ -351,7 +371,12 @@ msgstr "Create one now"
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr "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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr "Custom CSS"
|
msgstr "Custom CSS"
|
||||||
@ -386,10 +411,10 @@ msgstr "Dark"
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Date"
|
msgstr "Date"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Date or Date Range"
|
msgstr "Date or Date Range"
|
||||||
@ -407,11 +432,15 @@ msgstr "Delete"
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr "Delete Account"
|
msgstr "Delete Account"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr "Deployment Name"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Description"
|
msgstr "Description"
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr "Design single/multi page resumes"
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr "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"
|
msgid "Disable 2FA"
|
||||||
msgstr "Disable 2FA"
|
msgstr "Disable 2FA"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr "Discard"
|
msgstr "Discard"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Documentation"
|
msgstr "Documentation"
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr "Documentation"
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr "Don't have an account?"
|
msgstr "Don't have an account?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr "Don't know where to begin? Hit the docs!"
|
msgstr "Don't know where to begin? Hit the docs!"
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr "Don't know where to begin? Hit the docs!"
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr "Don't see your language? <0>Help translate the app.</0>"
|
msgstr "Don't see your language? <0>Help translate the app.</0>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr "Donate to Reactive Resume"
|
msgstr "Donate to Reactive Resume"
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr "Donate to Reactive Resume"
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgstr "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
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."
|
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/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr "Download PDF"
|
msgstr "Download PDF"
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr "Duplicate an existing item"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Duplicate an existing resume"
|
msgstr "Duplicate an existing resume"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Edit"
|
msgstr "Edit"
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr "Effects"
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr "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"
|
msgid "Enable 2FA"
|
||||||
msgstr "Enable 2FA"
|
msgstr "Enable 2FA"
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr "Enter the one-time password provided by your authenticator app below."
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgstr "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr "Error {statusCode}"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr "Errors"
|
msgstr "Errors"
|
||||||
@ -544,6 +576,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."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr "Export"
|
msgstr "Export"
|
||||||
@ -564,19 +597,19 @@ msgstr "Finally,"
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr "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"
|
msgid "Font Family"
|
||||||
msgstr "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"
|
msgid "Font Size"
|
||||||
msgstr "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"
|
msgid "Font Subset"
|
||||||
msgstr "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"
|
msgid "Font Variants"
|
||||||
msgstr "Font Variants"
|
msgstr "Font Variants"
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr "Font Variants"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgstr "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Forget"
|
msgstr "Forget"
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr "Forgot your password?"
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr "Format"
|
msgstr "Format"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr "Found a bug, or have an idea for a new feature?"
|
msgstr "Found a bug, or have an idea for a new feature?"
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr "Found a bug, or have an idea for a new feature?"
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr "Free, forever"
|
msgstr "Free, forever"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr "Friendly"
|
msgstr "Friendly"
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr "Give your old resume a new name."
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr "Go to Dashboard"
|
msgstr "Go to Dashboard"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr "Go to home"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr "Google"
|
msgstr "Google"
|
||||||
@ -651,7 +688,7 @@ msgstr "Google"
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr "Grayscale"
|
msgstr "Grayscale"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr "Grid"
|
msgstr "Grid"
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr "Here, you can update your profile to customize and personalize your experience."
|
msgstr "Here, you can update your profile to customize and personalize your experience."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Hidden"
|
msgstr "Hidden"
|
||||||
@ -677,7 +714,7 @@ msgstr "Hidden"
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr "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"
|
msgid "Hide Icons"
|
||||||
msgstr "Hide Icons"
|
msgstr "Hide Icons"
|
||||||
|
|
||||||
@ -734,7 +771,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."
|
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."
|
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."
|
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."
|
msgstr "In this section, you can change your password and enable/disable two-factor authentication."
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ 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>."
|
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/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Information"
|
msgstr "Information"
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr "john.doe@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Keywords"
|
msgstr "Keywords"
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr "Last updated {lastUpdated}"
|
msgstr "Last updated {lastUpdated}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Layout"
|
msgstr "Layout"
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr "Letter"
|
msgstr "Letter"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr "Level"
|
msgstr "Level"
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr "Light"
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr "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"
|
msgid "Line Height"
|
||||||
msgstr "Line Height"
|
msgstr "Line Height"
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr "Line Height"
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr "LinkedIn, JSON Resume, etc."
|
msgstr "LinkedIn, JSON Resume, etc."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr "List"
|
msgstr "List"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr "Logout"
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr "Lost your device?"
|
msgstr "Lost your device?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr "Main"
|
msgstr "Main"
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr "March 2023"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr "March 2023 - Present"
|
msgstr "March 2023 - Present"
|
||||||
@ -923,7 +962,7 @@ msgstr "March 2023 - Present"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Margin"
|
msgstr "Margin"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "Max Tokens"
|
msgstr "Max Tokens"
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr "Max Tokens"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "MIT License"
|
msgstr "MIT License"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "Model"
|
msgstr "Model"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr "Name"
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "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"
|
msgid "New Password"
|
||||||
msgstr "New Password"
|
msgstr "New Password"
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr "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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Notes"
|
msgstr "Notes"
|
||||||
@ -1009,16 +1049,16 @@ msgstr "OpenAI did not return any choices for your text."
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "OpenAI Integration"
|
msgstr "OpenAI Integration"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
msgstr "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr "OpenAI/Ollama API Key"
|
msgstr "OpenAI/Ollama API Key"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
|
||||||
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/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"
|
msgid "Options"
|
||||||
msgstr "Options"
|
msgstr "Options"
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr "Organization"
|
msgstr "Organization"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "Page"
|
msgstr "Page"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr "Page {pageNumber}"
|
msgstr "Page {pageNumber}"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr "Password"
|
msgstr "Password"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr "PDF"
|
msgstr "PDF"
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr "Powered by <0>Simple Icons</0>"
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr "Primary Color"
|
msgstr "Primary Color"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr "Privacy Policy"
|
msgstr "Privacy Policy"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr "Professional"
|
msgstr "Professional"
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr "Public"
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "Publisher"
|
msgstr "Publisher"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr "Raise an issue"
|
msgstr "Raise an issue"
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr "Raise an issue"
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr "Reactive Resume thrives thanks to its vibrant community. This project ow
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Redo"
|
msgstr "Redo"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Remove"
|
msgstr "Remove"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr "Remove Page"
|
msgstr "Remove Page"
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr "Resend email confirmation link"
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr "Reset"
|
msgstr "Reset"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr "Reset Layout"
|
msgstr "Reset Layout"
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr "Reset Zoom"
|
msgstr "Reset Zoom"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr "Resumes"
|
msgstr "Resumes"
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr "Rounded"
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Save Changes"
|
msgstr "Save Changes"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "Save Locally"
|
msgstr "Save Locally"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Saved"
|
msgstr "Saved"
|
||||||
|
|
||||||
@ -1262,15 +1300,15 @@ msgstr "Scroll to Pan"
|
|||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr "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"
|
msgid "Search for a font family"
|
||||||
msgstr "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"
|
msgid "Search for a font subset"
|
||||||
msgstr "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"
|
msgid "Search for a font variant"
|
||||||
msgstr "Search for a font variant"
|
msgstr "Search for a font variant"
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr "Search for a language"
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr "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"
|
msgid "Security"
|
||||||
msgstr "Security"
|
msgstr "Security"
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr "Self-host with Docker"
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr "Send Email"
|
msgstr "Send Email"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr "Send me a message"
|
msgstr "Send me a message"
|
||||||
|
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr "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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr "Sharing"
|
msgstr "Sharing"
|
||||||
@ -1330,7 +1369,7 @@ msgstr "Show Break Line"
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr "Show Page Numbers"
|
msgstr "Show Page Numbers"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Sidebar"
|
msgstr "Sidebar"
|
||||||
|
|
||||||
@ -1408,6 +1447,7 @@ msgid "Start building your resume by giving it a name."
|
|||||||
msgstr "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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr "Statistics"
|
msgstr "Statistics"
|
||||||
@ -1422,17 +1462,17 @@ msgstr "Store your backup codes securely"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr "Summary"
|
msgstr "Summary"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr "Support the app by donating what you can!"
|
msgstr "Support the app by donating what you can!"
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr "Supporting Reactive Resume"
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr "Supports A4/Letter page formats"
|
msgstr "Supports A4/Letter page formats"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr "Switch to Dark Mode"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr "Switch to Light Mode"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr "System"
|
msgstr "System"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "Template"
|
msgstr "Template"
|
||||||
@ -1465,15 +1514,20 @@ msgstr "Testimonials"
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr "Text Color"
|
msgstr "Text Color"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
msgstr "The passwords you entered do not match."
|
msgstr "The page you're looking for doesn't exist."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
|
msgstr "The request was invalid."
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: 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."
|
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."
|
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/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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,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:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr "Two-Factor Authentication"
|
msgstr "Two-Factor Authentication"
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr "Type of Study"
|
msgstr "Type of Study"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr "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"
|
msgid "Underline Links"
|
||||||
msgstr "Underline Links"
|
msgstr "Underline Links"
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr "URL"
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr "URL must start with https://"
|
msgstr "URL must start with https://"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr "Use Azure OpenAI"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr "Use System Theme"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,7 +1714,7 @@ msgstr "Version 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Views"
|
msgstr "Views"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Visible"
|
msgstr "Visible"
|
||||||
|
|
||||||
@ -1665,11 +1728,11 @@ msgstr "We verify your email address only to ensure that we can send you a passw
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr "Website"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "What's new in the latest version"
|
msgstr "What's new in the latest version"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgstr "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr "You can add multiple keywords by separating them with a comma or pressin
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "You can also enter your username."
|
msgstr "You can also enter your username."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgstr "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
msgstr "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgstr "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
|
msgstr "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgstr "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr "You don't have permission to access this page."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgstr "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr "You've got mail!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Your account and all your data has been deleted successfully. Goodbye!"
|
msgstr "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgstr "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
|
|
||||||
@ -1733,7 +1808,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."
|
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."
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr "Your password has been updated successfully."
|
msgstr "Your password has been updated successfully."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: es\n"
|
"Language: es\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:40\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Spanish\n"
|
"Language-Team: Spanish\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -30,27 +30,27 @@ msgstr "{templatesCount} plantillas de currículum para elegir"
|
|||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr "{value, plural, one {Columna} other {Columnas}}"
|
msgstr "{value, plural, one {Columna} other {Columnas}}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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>Construí Reactive Resume principalmente en mi tiempo libre, junto a otros colaboradores de Open Source, cuya ayuda ha hecho posible este proyecto.</0><1>Si te gusta la app y deseas que continúe siendo gratuita para siempre, cualquier donación que puedas permitirte nos será de gran ayuda.</1>"
|
msgstr "<0>Construí Reactive Resume principalmente en mi tiempo libre, junto a otros colaboradores de Open Source, cuya ayuda ha hecho posible este proyecto.</0><1>Si te gusta la app y deseas que continúe siendo gratuita para siempre, cualquier donación que puedas permitirte nos será de gran ayuda.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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>Estoy seguro de que la app no es perfecta, pero me gustaría lograrlo.</0><1>Si has encontrado algún problema creando un currículum o tienes alguna idea que mejore cualquier parte del producto, abre una incidencia en el repositorio o envíame un email.</1>"
|
msgstr "<0>Estoy seguro de que la app no es perfecta, pero me gustaría lograrlo.</0><1>Si has encontrado algún problema creando un currículum o tienes alguna idea que mejore cualquier parte del producto, abre una incidencia en el repositorio o envíame un email.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 "<0>Nota:</0> Al utilizar la API de OpenAI, reconoces y aceptas los <1>términos de uso</1> y la <2>política de privacidad</2> descritos por OpenAI. Ten en cuenta que Reactive Resume no asume ninguna responsabilidad por cualquier uso inadecuado o no autorizado del servicio, y cualquier repercusión o responsabilidad resultante recae únicamente en el usuario."
|
msgstr "<0>Nota:</0> Al utilizar la API de OpenAI, reconoces y aceptas los <1>términos de uso</1> y la <2>política de privacidad</2> descritos por OpenAI. Ten en cuenta que Reactive Resume no asume ninguna responsabilidad por cualquier uso inadecuado o no autorizado del servicio, y cualquier repercusión o responsabilidad resultante recae únicamente en el usuario."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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>"
|
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."
|
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."
|
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."
|
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."
|
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"
|
msgid "Add a custom field"
|
||||||
msgstr "Añadir campo personalizado"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Añadir un nuevo elemento"
|
msgstr "Añadir un nuevo elemento"
|
||||||
@ -117,7 +117,7 @@ msgstr "Añadir un nuevo elemento"
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr "Añadir nueva sección"
|
msgstr "Añadir nueva sección"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr "Añadir nueva página"
|
msgstr "Añadir nueva página"
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr "¿Ya tienes una cuenta?"
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr "Se ha producido un error al cargar el archivo."
|
msgstr "Se ha producido un error al cargar el archivo."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr "Se ha producido un error interno en el servidor."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr "Se ha producido un error inesperado."
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr "y mucho más..."
|
msgstr "y mucho más..."
|
||||||
@ -191,6 +199,18 @@ msgstr "Disponible en {languagesCount} idiomas"
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr "Otorgado"
|
msgstr "Otorgado"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr "Versión de la API de Azure"
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr "La URL de Azure OpenAI Base, el nombre de implementación (modelo) y la versión API son necesarios cuando se utiliza Azure OpenAI."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr "URL del recurso Azure OpenAI"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,7 +229,7 @@ msgstr "Código de respaldo"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Los códigos de respaldo solo pueden contener letras minúsculas o números y deben tener exactamente 10 caracteres."
|
msgstr "Los códigos de respaldo solo pueden contener letras minúsculas o números y deben tener exactamente 10 caracteres."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "URL base"
|
msgstr "URL base"
|
||||||
|
|
||||||
@ -246,8 +266,8 @@ msgstr "Por la comunidad, para la comunidad."
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Cancelar"
|
msgstr "Cancelar"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr "Informal"
|
msgstr "Informal"
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr "Informal"
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr "Mesa de trabajo central"
|
msgstr "Mesa de trabajo central"
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr "Cambiar idioma"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr "Cambiar contraseña"
|
msgstr "Cambiar contraseña"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr "Cambiar tono"
|
msgstr "Cambiar tono"
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr "Columnas"
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr "Empresa"
|
msgstr "Empresa"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr "Confiado"
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Continuar"
|
msgstr "Continuar"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Copiar"
|
msgstr "Copiar"
|
||||||
|
|
||||||
@ -351,7 +371,12 @@ msgstr "Crear uno ahora"
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr "Crear un currículum de ejemplo"
|
msgstr "Crear un currículum de ejemplo"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||||
|
msgid "Current Password"
|
||||||
|
msgstr "Contraseña actual"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr "CSS personalizado"
|
msgstr "CSS personalizado"
|
||||||
@ -386,10 +411,10 @@ msgstr "Oscuro"
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Fecha"
|
msgstr "Fecha"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Fecha o rango de fechas"
|
msgstr "Fecha o rango de fechas"
|
||||||
@ -407,11 +432,15 @@ msgstr "Eliminar"
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr "Eliminar cuenta"
|
msgstr "Eliminar cuenta"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr "Nombre de despliegue"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Descripción"
|
msgstr "Descripción"
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr "Diseñar currículums de una o varias páginas"
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr "Deshabilitar"
|
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"
|
msgid "Disable 2FA"
|
||||||
msgstr "Deshabilitar 2FA"
|
msgstr "Deshabilitar 2FA"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr "Descartar"
|
msgstr "Descartar"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Documentación"
|
msgstr "Documentación"
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr "Documentación"
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr "¿No tienes una cuenta?"
|
msgstr "¿No tienes una cuenta?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr "¿No sabes por dónde empezar? ¡Revisa la documentación!"
|
msgstr "¿No sabes por dónde empezar? ¡Revisa la documentación!"
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr "¿No sabes por dónde empezar? ¡Revisa la documentación!"
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr "¿No ves tu idioma? <0>Ayuda a traducir la aplicación.</0>"
|
msgstr "¿No ves tu idioma? <0>Ayuda a traducir la aplicación.</0>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr "Donar a Reactive Resume"
|
msgstr "Donar a Reactive Resume"
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr "Donar a Reactive Resume"
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr "Descarga una instantánea JSON de tu currículum. Este archivo se puede utilizar para importar tu currículum en el futuro o incluso se puede compartir con otras personas para colaborar."
|
msgstr "Descarga una instantánea JSON de tu currículum. Este archivo se puede utilizar para importar tu currículum en el futuro o incluso se puede compartir con otras personas para colaborar."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
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."
|
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/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr "Descargar PDF"
|
msgstr "Descargar PDF"
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr "Duplicar un elemento existente"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Duplicar un currículum existente"
|
msgstr "Duplicar un currículum existente"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Editar"
|
msgstr "Editar"
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr "Efectos"
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr "Correo electrónico"
|
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"
|
msgid "Enable 2FA"
|
||||||
msgstr "Habilitar 2FA"
|
msgstr "Habilitar 2FA"
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr "Ingresa la contraseña de un solo uso proporcionada por tu aplicación d
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr "Ingresa tu dirección de correo electrónico y te enviaremos un enlace para restablecer tu contraseña si la cuenta existe."
|
msgstr "Ingresa tu dirección de correo electrónico y te enviaremos un enlace para restablecer tu contraseña si la cuenta existe."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr "Error {statusCode}"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr "Errores"
|
msgstr "Errores"
|
||||||
@ -544,6 +576,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."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr "Exportar"
|
msgstr "Exportar"
|
||||||
@ -564,19 +597,19 @@ msgstr "Por último,"
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr "Corregir la ortografía y la gramática"
|
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"
|
msgid "Font Family"
|
||||||
msgstr "Familia tipográfica"
|
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"
|
msgid "Font Size"
|
||||||
msgstr "Tamaño de fuente"
|
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"
|
msgid "Font Subset"
|
||||||
msgstr "Subconjunto de fuentes"
|
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"
|
msgid "Font Variants"
|
||||||
msgstr "Variante de fuente"
|
msgstr "Variante de fuente"
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr "Variante de fuente"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "Por ejemplo, aquí puedes anotar información sobre a qué empresas enviaste este currículum o los enlaces a las descripciones de puestos."
|
msgstr "Por ejemplo, aquí puedes anotar información sobre a qué empresas enviaste este currículum o los enlaces a las descripciones de puestos."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Olvidar"
|
msgstr "Olvidar"
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr "¿Olvidaste tu contraseña?"
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr "Formato"
|
msgstr "Formato"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr "¿Encontraste un error o tienes una idea para una nueva característica?"
|
msgstr "¿Encontraste un error o tienes una idea para una nueva característica?"
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr "¿Encontraste un error o tienes una idea para una nueva característica?
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr "Gratuito para siempre"
|
msgstr "Gratuito para siempre"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr "Amigable"
|
msgstr "Amigable"
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr "Da un nuevo nombre a tu antiguo currículum."
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr "Ir al Tablero"
|
msgstr "Ir al Tablero"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr "Ir al inicio"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr "Google"
|
msgstr "Google"
|
||||||
@ -651,7 +688,7 @@ msgstr "Google"
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr "Escala de grises"
|
msgstr "Escala de grises"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr "Cuadrícula"
|
msgstr "Cuadrícula"
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr "Aquí puedes actualizar tu perfil para modificar y personalizar tu experiencia."
|
msgstr "Aquí puedes actualizar tu perfil para modificar y personalizar tu experiencia."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Oculto"
|
msgstr "Oculto"
|
||||||
@ -677,7 +714,7 @@ msgstr "Oculto"
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr "Ocultar"
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr "Ocultar iconos"
|
msgstr "Ocultar iconos"
|
||||||
|
|
||||||
@ -734,7 +771,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."
|
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."
|
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."
|
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."
|
msgstr "En esta sección, puedes cambiar tu contraseña y habilitar o deshabilitar la autenticación de doble factor."
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ 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>."
|
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/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Información"
|
msgstr "Información"
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr "juan.nadie@ejemplo.es"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Palabras clave"
|
msgstr "Palabras clave"
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr "Última actualización: {lastUpdated}"
|
msgstr "Última actualización: {lastUpdated}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Diseño"
|
msgstr "Diseño"
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr "Carta"
|
msgstr "Carta"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr "Nivel"
|
msgstr "Nivel"
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr "Claro"
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr "Tema claro u oscuro"
|
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"
|
msgid "Line Height"
|
||||||
msgstr "Altura de la línea"
|
msgstr "Altura de la línea"
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr "Altura de la línea"
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr "LinkedIn, currículum JSON, etc."
|
msgstr "LinkedIn, currículum JSON, etc."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr "Lista"
|
msgstr "Lista"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr "Cerrar sesión"
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr "¿Has perdido tu dispositivo?"
|
msgstr "¿Has perdido tu dispositivo?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr "Principal"
|
msgstr "Principal"
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr "Marzo de 2023"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr "Marzo 2023 - Presente"
|
msgstr "Marzo 2023 - Presente"
|
||||||
@ -923,7 +962,7 @@ msgstr "Marzo 2023 - Presente"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Margen"
|
msgstr "Margen"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "Máximo de tokens"
|
msgstr "Máximo de tokens"
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr "Máximo de tokens"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "Licencia MIT"
|
msgstr "Licencia MIT"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "Modelo"
|
msgstr "Modelo"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr "Nombre"
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Red"
|
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"
|
msgid "New Password"
|
||||||
msgstr "Nueva contraseña"
|
msgstr "Nueva contraseña"
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr "Nota: Esto hará que tu cuenta sea menos segura."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Notas"
|
msgstr "Notas"
|
||||||
@ -1009,16 +1049,16 @@ msgstr "OpenAI no devolvió ninguna opción para tu texto."
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "Integración con OpenAI"
|
msgstr "Integración con OpenAI"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
msgstr "Integración OpenAI/Azure OpenAI/Ollama"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr "Clave API de OpenAI/Ollama"
|
msgstr "Clave API de OpenAI/Ollama"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
|
||||||
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/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"
|
msgid "Options"
|
||||||
msgstr "Opciones"
|
msgstr "Opciones"
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr "Organización"
|
msgstr "Organización"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "Página"
|
msgstr "Página"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr "Página {pageNumber}"
|
msgstr "Página {pageNumber}"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr "Contraseña"
|
msgstr "Contraseña"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr "PDF"
|
msgstr "PDF"
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr "Impulsado por <0>Simple Icons</0>"
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr "Color primario"
|
msgstr "Color primario"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr "Política de privacidad"
|
msgstr "Política de privacidad"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr "Profesional"
|
msgstr "Profesional"
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr "Público"
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "Editor"
|
msgstr "Editor"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr "Reportar problema"
|
msgstr "Reportar problema"
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr "Reportar problema"
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr "Reactive Resume prospera gracias a su vibrante comunidad. Este proyecto
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Rehacer"
|
msgstr "Rehacer"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Eliminar"
|
msgstr "Eliminar"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr "Eliminar página"
|
msgstr "Eliminar página"
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr "Reenviar enlace de confirmación por correo electrónico"
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr "Restablecer"
|
msgstr "Restablecer"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr "Restablecer diseño"
|
msgstr "Restablecer diseño"
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr "Restablecer zoom"
|
msgstr "Restablecer zoom"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr "Currículums"
|
msgstr "Currículums"
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr "Redondeado"
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Guardar cambios"
|
msgstr "Guardar cambios"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "Guardar localmente"
|
msgstr "Guardar localmente"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Guardado"
|
msgstr "Guardado"
|
||||||
|
|
||||||
@ -1262,15 +1300,15 @@ msgstr "Desplácese hasta Pan"
|
|||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr "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"
|
msgid "Search for a font family"
|
||||||
msgstr "Buscar una familia tipográfica"
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr "Buscar un subconjunto de fuentes"
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr "Buscar una variante de fuente"
|
msgstr "Buscar una variante de fuente"
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr "Buscar un idioma"
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr "Seguridad con autenticación de doble factor"
|
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"
|
msgid "Security"
|
||||||
msgstr "Seguridad"
|
msgstr "Seguridad"
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr "Auto alojamiento con Docker"
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr "Enviar email"
|
msgstr "Enviar email"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr "Enviarme un mensaje"
|
msgstr "Enviarme un mensaje"
|
||||||
|
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr "Configura la autenticación de doble factor en tu cuenta"
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr "Compartir"
|
msgstr "Compartir"
|
||||||
@ -1330,7 +1369,7 @@ msgstr "Mostrar línea de ruptura"
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr "Mostrar números de página"
|
msgstr "Mostrar números de página"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Barra lateral"
|
msgstr "Barra lateral"
|
||||||
|
|
||||||
@ -1408,6 +1447,7 @@ msgid "Start building your resume by giving it a name."
|
|||||||
msgstr "Comienza a crear tu currículum dándole un nombre."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr "Estadísticas"
|
msgstr "Estadísticas"
|
||||||
@ -1422,17 +1462,17 @@ msgstr "Almacena tus códigos de respaldo de forma segura"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr "Resumen"
|
msgstr "Resumen"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr "¡Apoya la aplicación donando lo que puedas!"
|
msgstr "¡Apoya la aplicación donando lo que puedas!"
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr "Apoyar Reactive Resume"
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr "Admite formatos de página A4/Carta"
|
msgstr "Admite formatos de página A4/Carta"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr "Cambiar a Modo Oscuro"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr "Cambiar a Modo Luz"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr "Sistema"
|
msgstr "Sistema"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "Plantilla"
|
msgstr "Plantilla"
|
||||||
@ -1465,15 +1514,20 @@ msgstr "Testimonios"
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr "Color del texto"
|
msgstr "Color del texto"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
msgstr "Las contraseñas ingresadas no coinciden."
|
msgstr "La página que estás buscando no existe."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
|
msgstr "La solicitud no era válida."
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: 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."
|
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."
|
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/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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,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:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr "Autenticación de doble factor"
|
msgstr "Autenticación de doble factor"
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr "Tipo de estudio"
|
msgstr "Tipo de estudio"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr "Tipografía"
|
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"
|
msgid "Underline Links"
|
||||||
msgstr "Subrayar enlaces"
|
msgstr "Subrayar enlaces"
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr "URL"
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr "La URL debe empezar por https://"
|
msgstr "La URL debe empezar por https://"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr "Usar Azure OpenAI"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr "Usar tema del sistema"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,7 +1714,7 @@ msgstr "Versión 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Visualizaciones"
|
msgstr "Visualizaciones"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Visible"
|
msgstr "Visible"
|
||||||
|
|
||||||
@ -1665,11 +1728,11 @@ msgstr "Verificamos tu dirección de correo electrónico sólo para asegurarnos
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr "Sitio Web"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Novedades en la última versión"
|
msgstr "Novedades en la última versión"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr "No está autorizado a acceder a esta página."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Puedes agregar varias palabras clave separándolas con una coma o presionando Enter."
|
msgstr "Puedes agregar varias palabras clave separándolas con una coma o presionando Enter."
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr "Puedes agregar varias palabras clave separándolas con una coma o presio
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "También puedes ingresar tu nombre de usuario."
|
msgstr "También puedes ingresar tu nombre de usuario."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr "También puede integrarse con Ollama simplemente estableciendo la clave API en `sk-1234567890abcdef` y la URL base en su URL de Ollama, es decir, `http://localhost:11434/v1`. También puede elegir los modelos y establecer los tokens máximos según sus preferencias."
|
msgstr "También puedes integrar con Azure OpenAI activando la casilla <0>Usar Azure OpenAI</0> y configurar la URL del recurso en tu recurso Azure OpenAI: <1>https://your-resource. penai.azure.com</1>. Establezca el nombre del despliegue en el campo Modelo y especifique la versión API apropiada para su despliegue Azure."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
msgstr "Puedes utilizar la API de OpenAI para ayudarte a generar contenido o mejorar tu escritura mientras redactas tu currículum."
|
msgstr "También puede integrarse con Ollama simplemente configurando la clave API a<0>sk-1234567890abcdef</0> y la URL Base a su URL Olla, i. .<1>http://localhost:11434/v1</1>. También puedes elegir modelos y establecer los tokens máximos según tu preferencia."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
|
msgstr "Puede utilizar OpenAI API, Azure OpenAI u Ollama para ayudarle a generar contenido, o mejorar su escritura mientras compone su currículum."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Puedes hacer un seguimiento del número de visitas que ha recibido tu currículum o de cuántas personas han descargado el currículum habilitando el uso compartido público."
|
msgstr "Puedes hacer un seguimiento del número de visitas que ha recibido tu currículum o de cuántas personas han descargado el currículum habilitando el uso compartido público."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr "No tiene permisos para acceder a esta página."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "Tiene la opción de <0>obtener su propia clave API de OpenAI</0>. Esta clave le permite aprovechar la API como mejor le convenga. Alternativamente, si desea desactivar por completo las funciones de IA en Reactive Resume, puede simplemente eliminar la clave de su configuración."
|
msgstr "Tiene la opción de <0>obtener su propia clave API de OpenAI</0>. Esta clave le permite aprovechar la API como mejor le convenga. Alternativamente, si desea desactivar por completo las funciones de IA en Reactive Resume, puede simplemente eliminar la clave de su configuración."
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr "¡Tienes mensajes!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Tu cuenta y todos tus datos han sido eliminados con éxito. ¡Adiós!"
|
msgstr "Tu cuenta y todos tus datos han sido eliminados con éxito. ¡Adiós!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "Su clave API se almacena de manera segura en el almacenamiento local del navegador y solo se utiliza al realizar peticiones a OpenAI a través de su SDK oficial. Tenga la seguridad de que su clave no se transmite a ningún servidor externo a excepción de los servicios de OpenAI."
|
msgstr "Su clave API se almacena de manera segura en el almacenamiento local del navegador y solo se utiliza al realizar peticiones a OpenAI a través de su SDK oficial. Tenga la seguridad de que su clave no se transmite a ningún servidor externo a excepción de los servicios de OpenAI."
|
||||||
|
|
||||||
@ -1733,7 +1808,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."
|
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."
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr "Tu contraseña se ha actualizado con éxito."
|
msgstr "Tu contraseña se ha actualizado con éxito."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: fa\n"
|
"Language: fa\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:32\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Persian\n"
|
"Language-Team: Persian\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -30,27 +30,27 @@ msgstr "{templatesCount} قالب رزومه برای انتخاب"
|
|||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr "{value, plural, one {ستون} other {ستون}}"
|
msgstr "{value, plural, one {ستون} other {ستون}}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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 را بیشتر در اوقات فراغت خودم و با کمک جامعه اوپنسورس ساختم.</0> <1>اگر این اپلیکیشن را دوست دارید و میخواهید از رایگان نگه داشتن آن برای همیشه حمایت کنید، لطفاً هر چقدر در توان شماست دونیت کنید.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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>اگر موقع ایجاد رزومه خودتان با مشکلی مواجه شدید یا ایدهای دارید که به شما و سایر کاربران در ساختن راحتتر رزومه کمک میکند، در گیتهاب پروژه یک issue ایجاد کنید یا به من ایمیل بفرستید.</1>"
|
msgstr "<0>مطمئنم که برنامه بینقص نیست، اما دوست دارم که باشد.</0> <1>اگر موقع ایجاد رزومه خودتان با مشکلی مواجه شدید یا ایدهای دارید که به شما و سایر کاربران در ساختن راحتتر رزومه کمک میکند، در گیتهاب پروژه یک issue ایجاد کنید یا به من ایمیل بفرستید.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 "<0>توجه:</0> با استفاده از امکانات OpenAI API، <1>شرایط استفاده را تایید میکنید و میپذیرید</1> و <2>خط مشی رازداری</2> را که توسط OpenAI مشخص شده است. لطفاً توجه داشته باشید که Reactive Resume هیچ مسئولیتی در قبال هرگونه استفاده نادرست یا غیرمجاز از سرویس ندارد و هرگونه عواقب یا تعهدات ناشی از آن صرفاً بر عهده کاربر است."
|
msgstr "<0>توجه:</0> با استفاده از امکانات OpenAI API، <1>شرایط استفاده را تایید میکنید و میپذیرید</1> و <2>خط مشی رازداری</2> را که توسط OpenAI مشخص شده است. لطفاً توجه داشته باشید که Reactive Resume هیچ مسئولیتی در قبال هرگونه استفاده نادرست یا غیرمجاز از سرویس ندارد و هرگونه عواقب یا تعهدات ناشی از آن صرفاً بر عهده کاربر است."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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>"
|
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."
|
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) و افزودن آن به حساب خود، ورود دو مرحلهای را فعال کنید."
|
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."
|
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||||
msgstr "<0>احراز هویت دو عاملی فعال است.</0> در هر بار ورود، از شما خواسته میشود که یک کد وارد کنید."
|
msgstr "<0>احراز هویت دو عاملی فعال است.</0> در هر بار ورود، از شما خواسته میشود که یک کد وارد کنید."
|
||||||
|
|
||||||
@ -102,8 +102,8 @@ msgstr "حساب"
|
|||||||
msgid "Add a custom field"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "افزودن مورد جدید"
|
msgstr "افزودن مورد جدید"
|
||||||
@ -117,7 +117,7 @@ msgstr "افزودن مورد جدید"
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr "یک بخش جدید اضافه کنید"
|
msgstr "یک بخش جدید اضافه کنید"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr "افزودن برگهٔ تازه"
|
msgstr "افزودن برگهٔ تازه"
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr "درحال حاضر حساب کاربری دارید"
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr "هنگام بارگیری فایل خطایی رخ داد."
|
msgstr "هنگام بارگیری فایل خطایی رخ داد."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr "خطای سرور رخ داده است."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr "یک خطای غیرمنتظره رخ داد."
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr "- و خیلی چیزهای دیگر..."
|
msgstr "- و خیلی چیزهای دیگر..."
|
||||||
@ -191,6 +199,18 @@ msgstr "در {languagesCount} زبان موجود است"
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr "جایزه دهنده"
|
msgstr "جایزه دهنده"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,9 +229,9 @@ msgstr "کد پشتیبان"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "کدهای پشتیبان فقط باید شامل حروف کوچک یا اعداد و دقیقاً 10 کاراکتر باشند."
|
msgstr "کدهای پشتیبان فقط باید شامل حروف کوچک یا اعداد و دقیقاً 10 کاراکتر باشند."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr "آدرس پایه"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
#: 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."
|
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||||
@ -246,8 +266,8 @@ msgstr "توسط جامعه، برای جامعه."
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "انصراف"
|
msgstr "انصراف"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr "غیررسمی"
|
msgstr "غیررسمی"
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr "غیررسمی"
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr "Center Artboard"
|
msgstr "Center Artboard"
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr "تغییر رمز عبور"
|
msgstr "تغییر رمز عبور"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr "تغییر لحن"
|
msgstr "تغییر لحن"
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr "ستونها"
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr "شرکت"
|
msgstr "شرکت"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr "مطمئن"
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "ادامه"
|
msgstr "ادامه"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "کپی"
|
msgstr "کپی"
|
||||||
|
|
||||||
@ -351,10 +371,15 @@ msgstr "اکنون یکی ایجاد کنید"
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr "ایجاد نمونه رزومه"
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr ""
|
msgstr "CSS سفارشی"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:62
|
#: apps/client/src/pages/home/sections/features/index.tsx:62
|
||||||
msgid "Custom resume sections"
|
msgid "Custom resume sections"
|
||||||
@ -386,10 +411,10 @@ msgstr "تاریک"
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "تاریخ"
|
msgstr "تاریخ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "تاریخ دقیق یا محدوده تاریخ"
|
msgstr "تاریخ دقیق یا محدوده تاریخ"
|
||||||
@ -407,11 +432,15 @@ msgstr "حذف"
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr "حذف حساب کاربری"
|
msgstr "حذف حساب کاربری"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "توضیحات"
|
msgstr "توضیحات"
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr "طراحی رزومه تک / چند صفحهای"
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr "غیرفعال"
|
msgstr "غیرفعال"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||||
msgid "Disable 2FA"
|
msgid "Disable 2FA"
|
||||||
msgstr "غیرفعالسازی ورود دو مرحلهای"
|
msgstr "غیرفعالسازی ورود دو مرحلهای"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr "صرفنظر"
|
msgstr "صرفنظر"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "مستندات"
|
msgstr "مستندات"
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr "مستندات"
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr "حساب کاربری ندارید؟"
|
msgstr "حساب کاربری ندارید؟"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr "نمی دانید از کجا شروع کنید؟ از مستندات!"
|
msgstr "نمی دانید از کجا شروع کنید؟ از مستندات!"
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr "نمی دانید از کجا شروع کنید؟ از مستندات!"
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr "زبان خود را نمی بینید؟ <0>به ترجمه برنامه کمک کنید.</0>"
|
msgstr "زبان خود را نمی بینید؟ <0>به ترجمه برنامه کمک کنید.</0>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr "به Reactive Resume دونیت کنید"
|
msgstr "به Reactive Resume دونیت کنید"
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr "به Reactive Resume دونیت کنید"
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr "دریافت یک کپی به صورت JSON از رزومه خود. این فایل می تواند برای وارد کردن رزومه خود در آینده استفاده شود، یا حتی با دیگران به اشتراک گذاشته شود تا همکاری کنند."
|
msgstr "دریافت یک کپی به صورت JSON از رزومه خود. این فایل می تواند برای وارد کردن رزومه خود در آینده استفاده شود، یا حتی با دیگران به اشتراک گذاشته شود تا همکاری کنند."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
msgstr "دریافت یک پیدیاف از رزومهی خود. این فایل میتواند برای چاپ رزومهی شما، ارسال آن به کارفرمایان، یا آپلود آن در پورتالهای کاریابی استفاده شود."
|
msgstr "دریافت یک پیدیاف از رزومهی خود. این فایل میتواند برای چاپ رزومهی شما، ارسال آن به کارفرمایان، یا آپلود آن در پورتالهای کاریابی استفاده شود."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr "دربافت پیدیاف"
|
msgstr "دربافت پیدیاف"
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr "کپی یک مورد موجود"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "کپی یک رزومه موجود"
|
msgstr "کپی یک رزومه موجود"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "ویرایش"
|
msgstr "ویرایش"
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr "جلوهها"
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr "ایمیل"
|
msgstr "ایمیل"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||||
msgid "Enable 2FA"
|
msgid "Enable 2FA"
|
||||||
msgstr "فعالسازی ورود دو مرحلهای"
|
msgstr "فعالسازی ورود دو مرحلهای"
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr "رمز عبور یکبار مصرف ارائه شده توسط برنا
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr "ایمیل خود را وارد کنید و ما یک لینک برای بازنشانی رمز عبور به شما ارسال خواهیم کرد اگر حساب وجود داشته باشد."
|
msgstr "ایمیل خود را وارد کنید و ما یک لینک برای بازنشانی رمز عبور به شما ارسال خواهیم کرد اگر حساب وجود داشته باشد."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr "خطاها"
|
msgstr "خطاها"
|
||||||
@ -544,6 +576,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
|||||||
msgstr "قالبهای موجود در Reactive Resume را بررسی کرده و رزومههای تولید شده با آنها را مشاهده کنید. آنها همچنین میتوانند به عنوان نمونهها برای کمک در هدایت ایجاد رزومه بعدی شما خدمت کنند."
|
msgstr "قالبهای موجود در Reactive Resume را بررسی کرده و رزومههای تولید شده با آنها را مشاهده کنید. آنها همچنین میتوانند به عنوان نمونهها برای کمک در هدایت ایجاد رزومه بعدی شما خدمت کنند."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr "خروجی گرفتن"
|
msgstr "خروجی گرفتن"
|
||||||
@ -564,19 +597,19 @@ msgstr "سرانجام،"
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr "تصحیح املا و گرامر"
|
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"
|
msgid "Font Family"
|
||||||
msgstr "خانواده فونت"
|
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"
|
msgid "Font Size"
|
||||||
msgstr "اندازه فونت"
|
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"
|
msgid "Font Subset"
|
||||||
msgstr "زیر مجموعه فونت"
|
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"
|
msgid "Font Variants"
|
||||||
msgstr "انواع فونت"
|
msgstr "انواع فونت"
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr "انواع فونت"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "برای مثال، اطلاعات مربوط به شرکتهایی که این رزومه را به آنها ارسال کردهاید یا لینکهایی به توضیحات شغلی میتوانند در اینجا یادداشت شوند."
|
msgstr "برای مثال، اطلاعات مربوط به شرکتهایی که این رزومه را به آنها ارسال کردهاید یا لینکهایی به توضیحات شغلی میتوانند در اینجا یادداشت شوند."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "فراموش کردن"
|
msgstr "فراموش کردن"
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr "گذرواژه خود را فراموش کردهاید؟"
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr "قالب"
|
msgstr "قالب"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr "یک اشکال پیدا کردید، یا ایده ای برای یک ویژگی جدید دارید؟"
|
msgstr "یک اشکال پیدا کردید، یا ایده ای برای یک ویژگی جدید دارید؟"
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr "یک اشکال پیدا کردید، یا ایده ای برای یک
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr "رایگان برای همیشه"
|
msgstr "رایگان برای همیشه"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr "دوستانه"
|
msgstr "دوستانه"
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr "به رزومه قدیمی خود یک نام جدید بدهید."
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr "رفتن به داشبورد"
|
msgstr "رفتن به داشبورد"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr "رفتن به صفحه اصلی"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr "گوگل"
|
msgstr "گوگل"
|
||||||
@ -651,7 +688,7 @@ msgstr "گوگل"
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr "سیاهوسفید"
|
msgstr "سیاهوسفید"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr "جدول"
|
msgstr "جدول"
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr "در اینجا میتوانید پروفایل خود را بهروزرسانی کنید تا تجربهی خود را شخصیسازی کنید."
|
msgstr "در اینجا میتوانید پروفایل خود را بهروزرسانی کنید تا تجربهی خود را شخصیسازی کنید."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "پنهان"
|
msgstr "پنهان"
|
||||||
@ -677,7 +714,7 @@ msgstr "پنهان"
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr "پنهان کردن"
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr "آیکونها را پنهان کن"
|
msgstr "آیکونها را پنهان کن"
|
||||||
|
|
||||||
@ -734,7 +771,7 @@ msgstr "بهبود بخشیدن نگارش"
|
|||||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
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 خود کپی و پیست کنید."
|
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."
|
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||||
msgstr "در این بخش، شما میتوانید رمز عبور خود را تغییر دهید و احراز هویت دو عاملی را فعال یا غیرفعال کنید."
|
msgstr "در این بخش، شما میتوانید رمز عبور خود را تغییر دهید و احراز هویت دو عاملی را فعال یا غیرفعال کنید."
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ msgid "In this section, you can delete your account and all the data associated
|
|||||||
msgstr "در این بحث، شما میتوانید حساب کاربری خود را و تمام دادههای مرتبط با کاربر خود حذف کنید، اما لطفاً به خاطر داشته باشید که <0>این عملیات غیرقابل بازگشت</0> است."
|
msgstr "در این بحث، شما میتوانید حساب کاربری خود را و تمام دادههای مرتبط با کاربر خود حذف کنید، اما لطفاً به خاطر داشته باشید که <0>این عملیات غیرقابل بازگشت</0> است."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "اطلاعات"
|
msgstr "اطلاعات"
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr "john.doe@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "کلید واژهها"
|
msgstr "کلید واژهها"
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr "آخرین بروزرسانی {lastUpdated}"
|
msgstr "آخرین بروزرسانی {lastUpdated}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "چیدمان"
|
msgstr "چیدمان"
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr "نامه"
|
msgstr "نامه"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr "سطح"
|
msgstr "سطح"
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr "روشن"
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr "تم روشن یا تاریک"
|
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"
|
msgid "Line Height"
|
||||||
msgstr "فاصلهی بین خطوط"
|
msgstr "فاصلهی بین خطوط"
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr "فاصلهی بین خطوط"
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr "لینکدین، JSON رزومه و غیره."
|
msgstr "لینکدین، JSON رزومه و غیره."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr "لیست"
|
msgstr "لیست"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr "خروج"
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr "دستگاه خود را گم کرده اید؟"
|
msgstr "دستگاه خود را گم کرده اید؟"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr "اصلی"
|
msgstr "اصلی"
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr "مارچ 2023"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr "مارس 2023 - حال حاضر"
|
msgstr "مارس 2023 - حال حاضر"
|
||||||
@ -923,7 +962,7 @@ msgstr "مارس 2023 - حال حاضر"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "حاشیه"
|
msgstr "حاشیه"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "مجور MIT"
|
msgstr "مجور MIT"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr "مدل"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr "نام"
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "شبکه"
|
msgstr "شبکه"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||||
msgid "New Password"
|
msgid "New Password"
|
||||||
msgstr "رمز عبور جدید"
|
msgstr "رمز عبور جدید"
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr "توجه: این باعث کاهش امنیت حساب کاربری شما می شود."
|
msgstr "توجه: این باعث کاهش امنیت حساب کاربری شما می شود."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "یادداشتها"
|
msgstr "یادداشتها"
|
||||||
@ -1009,16 +1049,16 @@ msgstr "OpenAI نتوانست هیچ پیشنهادی برای متن شما ا
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "ادغام با OpenAI"
|
msgstr "ادغام با OpenAI"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
|
||||||
msgid "OpenAI/Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: 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"
|
msgid "Options"
|
||||||
msgstr "گزینهها"
|
msgstr "گزینهها"
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr "سازمان"
|
msgstr "سازمان"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "صفحه"
|
msgstr "صفحه"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr "رمز عبور"
|
msgstr "رمز عبور"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr "پیدیاف"
|
msgstr "پیدیاف"
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr "ساخته شده توسط <0>Simple Icons</0>"
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr "رنگ اصلی"
|
msgstr "رنگ اصلی"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr "سیاست حفظ حریم شخصی"
|
msgstr "سیاست حفظ حریم شخصی"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr "حرفه ای"
|
msgstr "حرفه ای"
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr "عمومی"
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "منتشر کننده"
|
msgstr "منتشر کننده"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr "ایجاد یک گزارش"
|
msgstr "ایجاد یک گزارش"
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr "ایجاد یک گزارش"
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr "Reactive Resume به دست جامعه پرانرژی خود زنده م
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Redo"
|
msgstr "Redo"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "حذف"
|
msgstr "حذف"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr "حذف صفحه"
|
msgstr "حذف صفحه"
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr "ارسال مجدد لینک تأیید ایمیل"
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr "ریست"
|
msgstr "ریست"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr "ریست طرح"
|
msgstr "ریست طرح"
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr "ریست بزرگنمایی"
|
msgstr "ریست بزرگنمایی"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr "رزومه ها"
|
msgstr "رزومه ها"
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr "گردشده"
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "ذخیرهٔ تغییرات"
|
msgstr "ذخیرهٔ تغییرات"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1262,15 +1300,15 @@ msgstr ""
|
|||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr ""
|
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"
|
msgid "Search for a font family"
|
||||||
msgstr "جستجو برای فونت"
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr "جستجو برای زیرمجموعه فونت"
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr "جستجو برای فونت"
|
msgstr "جستجو برای فونت"
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr "جستجو برای زبان"
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr "امن با احراز هویت دو عاملی"
|
msgstr "امن با احراز هویت دو عاملی"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "امنیت"
|
msgstr "امنیت"
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr "هاست شده توسط Docker"
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr "ارسال ایمیل"
|
msgstr "ارسال ایمیل"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr "ارسال پیام"
|
msgstr "ارسال پیام"
|
||||||
|
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr "راهاندازی تأیید هویت دو مرحلهای بر روی حساب کاربری خود"
|
msgstr "راهاندازی تأیید هویت دو مرحلهای بر روی حساب کاربری خود"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr "اشتراکگذاری"
|
msgstr "اشتراکگذاری"
|
||||||
@ -1330,7 +1369,7 @@ msgstr "نمایش خط بین صفحه"
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr "نمایش شماره صفحه"
|
msgstr "نمایش شماره صفحه"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "نوار کناری"
|
msgstr "نوار کناری"
|
||||||
|
|
||||||
@ -1408,6 +1447,7 @@ msgid "Start building your resume by giving it a name."
|
|||||||
msgstr "شروع به ساخت رزومه خود با دادن یک نام به آن کنید."
|
msgstr "شروع به ساخت رزومه خود با دادن یک نام به آن کنید."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr "آمارها"
|
msgstr "آمارها"
|
||||||
@ -1422,17 +1462,17 @@ msgstr "کدهای پشتیبان خود را به صورت امن ذخیره ک
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr "چکیده"
|
msgstr "چکیده"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr "با حمایت از برنامه آنچه را میتوانید اهدا کنید!"
|
msgstr "با حمایت از برنامه آنچه را میتوانید اهدا کنید!"
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr "حمایت از Reactive Resume"
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr "پشتیبانی از فرمتهای صفحه A4/Letter"
|
msgstr "پشتیبانی از فرمتهای صفحه A4/Letter"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr "سامانه"
|
msgstr "سامانه"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "قالب"
|
msgstr "قالب"
|
||||||
@ -1465,15 +1514,20 @@ msgstr "رضایت ها"
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr "رنگ متن"
|
msgstr "رنگ متن"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
msgstr "رمز عبورهایی که وارد کردهاید مطابقت ندارند."
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: 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."
|
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||||
msgstr "رزومهای که میخواهید بهروزرسانی کنید قفل شده است، لطفاً اگر میخواهید تغییری در آن انجام دهید آن را باز کنید."
|
msgstr "رزومهای که میخواهید بهروزرسانی کنید قفل شده است، لطفاً اگر میخواهید تغییری در آن انجام دهید آن را باز کنید."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
#: 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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,7 @@ msgstr "بررسی تعداد بازدیدها و دانلودها"
|
|||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr "احراز هویت دو مرحلهای"
|
msgstr "احراز هویت دو مرحلهای"
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr "نوع تحصیلات"
|
msgstr "نوع تحصیلات"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr "تایپوگرافی"
|
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"
|
msgid "Underline Links"
|
||||||
msgstr "زیر پیوندها خط بکش"
|
msgstr "زیر پیوندها خط بکش"
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr "آدرس وبسایت"
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr "آدرس وب باید با https:// شروع شود"
|
msgstr "آدرس وب باید با https:// شروع شود"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,7 +1714,7 @@ msgstr "نسخه ۴"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "تعداد بازدید ها"
|
msgstr "تعداد بازدید ها"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "قابل مشاهده"
|
msgstr "قابل مشاهده"
|
||||||
|
|
||||||
@ -1665,11 +1728,11 @@ msgstr "ما آدرس ایمیل شما را تأیید می کنیم تا فق
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr "وبسایت"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "چه خبر در آخرین نسخه"
|
msgstr "چه خبر در آخرین نسخه"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr ""
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "شما میتوانید کلمات متعددی را با جداکردن آنها با یک کاما یا فشردن کلید اینتر اضافه کنید."
|
msgstr "شما میتوانید کلمات متعددی را با جداکردن آنها با یک کاما یا فشردن کلید اینتر اضافه کنید."
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr "شما میتوانید کلمات متعددی را با جداکر
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "شما همچنین میتوانید نام کاربری خود را وارد کنید."
|
msgstr "شما همچنین میتوانید نام کاربری خود را وارد کنید."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
msgstr "شما می توانید از API OpenAI استفاده کنید تا به شما در تولید محتوا کمک کند یا نوشتن شما را بهتر کند در حالی که رزومه خود را تنظیم می کنید."
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "شما میتوانید تعداد بازدیدهای رزومه خود را یا تعداد افرادی که رزومه را با فعال کردن اشتراک عمومی دانلود کردهاند، بررسی کنید."
|
msgstr "شما میتوانید تعداد بازدیدهای رزومه خود را یا تعداد افرادی که رزومه را با فعال کردن اشتراک عمومی دانلود کردهاند، بررسی کنید."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "شما قادر به <0>دریافت کلید API اختصاصی OpenAI خودتان هستید</0>. این کلید به شما این امکان را می دهد که از API به دلخواه خود استفاده کنید. به عنوان یک گزینه دیگر، اگر می خواهید قابلیت های هوش مصنوعی در Reactive Resume را کاملاً غیرفعال کنید، می توانید به سادگی این کلید را از تنظیمات خود حذف کنید."
|
msgstr "شما قادر به <0>دریافت کلید API اختصاصی OpenAI خودتان هستید</0>. این کلید به شما این امکان را می دهد که از API به دلخواه خود استفاده کنید. به عنوان یک گزینه دیگر، اگر می خواهید قابلیت های هوش مصنوعی در Reactive Resume را کاملاً غیرفعال کنید، می توانید به سادگی این کلید را از تنظیمات خود حذف کنید."
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr "شما ایمیل دریافت کردید"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "حساب شما و تمام دادههای شما با موفقیت حذف شد. خدانگهدار!"
|
msgstr "حساب شما و تمام دادههای شما با موفقیت حذف شد. خدانگهدار!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "کلید API شما به صورت ایمن در حافظه مرورگر دستگاه ذخیره می شود و تنها هنگام ارسال درخواست به OpenAI از طریق SDK رسمی آنها استفاده می شود. اطمینان حاصل کنید که کلید شما به هیچ سرور خارجی انتقال داده نمی شود مگر اینکه برای تعامل با خدمات OpenAI استفاده شود."
|
msgstr "کلید API شما به صورت ایمن در حافظه مرورگر دستگاه ذخیره می شود و تنها هنگام ارسال درخواست به OpenAI از طریق SDK رسمی آنها استفاده می شود. اطمینان حاصل کنید که کلید شما به هیچ سرور خارجی انتقال داده نمی شود مگر اینکه برای تعامل با خدمات OpenAI استفاده شود."
|
||||||
|
|
||||||
@ -1733,7 +1808,7 @@ msgstr "آدرس ایمیل شما با موفقیت تأیید شد."
|
|||||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||||
msgstr "کلید API OpenAI شما هنوز تنظیم نشده است. لطفاً به تنظیمات حساب کاربری خود بروید تا امکان ادغام OpenAI را فعال کنید."
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr "رمز عبور شما با موفقیت به روز شد."
|
msgstr "رمز عبور شما با موفقیت به روز شد."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: fi\n"
|
"Language: fi\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:40\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Finnish\n"
|
"Language-Team: Finnish\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -30,27 +30,27 @@ msgstr "Valittavana on {templatesCount} ansioluettelomallipohjaa"
|
|||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr "{value, plural, one {Sarake} other {Sarakkeet}}"
|
msgstr "{value, plural, one {Sarake} other {Sarakkeet}}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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>Rakensin Reaktiivisen ansioluettelon pääasiassa itse vapaa-ajallani, saaden paljon apua muilta upeilta avoimen lähdekoodin avustajilta.</0><1>Jos pidät sovelluksesta ja haluat tukea sen pysymistä ikuisesti ilmaisena, lahjoita mitä voit varaa antaa.</1>"
|
msgstr "<0>Rakensin Reaktiivisen ansioluettelon pääasiassa itse vapaa-ajallani, saaden paljon apua muilta upeilta avoimen lähdekoodin avustajilta.</0><1>Jos pidät sovelluksesta ja haluat tukea sen pysymistä ikuisesti ilmaisena, lahjoita mitä voit varaa antaa.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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>Olen varma, että sovellus ei ole täydellinen, mutta haluaisin sen olevan.</0><1>Jos kohtaat ongelmia luodessasi ansioluetteloasi tai sinulla on idea, joka auttaisi sinua ja muita käyttäjiä luomaan ansioluetteloasi helpommin, ilmoita ongelmasta repositoriossa tai lähetä minulle sähköpostia asiasta.</1>"
|
msgstr "<0>Olen varma, että sovellus ei ole täydellinen, mutta haluaisin sen olevan.</0><1>Jos kohtaat ongelmia luodessasi ansioluetteloasi tai sinulla on idea, joka auttaisi sinua ja muita käyttäjiä luomaan ansioluetteloasi helpommin, ilmoita ongelmasta repositoriossa tai lähetä minulle sähköpostia asiasta.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 "<0>Huom:</0> Hyödyntämällä OpenAI API:a, tunnustat ja hyväksyt OpenAI:n määrittelemät <1>käyttöehdot</1> ja <2>tietosuojakäytännöt</2>. Huomaa, että Reaktiivinen ansioluettelo ei ota vastuuta palvelun epäasianmukaisesta tai luvattomasta käytöstä aiheutuvista seurauksista tai vastuista, jotka lankeavat yksinomaan käyttäjälle."
|
msgstr "<0>Huom:</0> Hyödyntämällä OpenAI API:a, tunnustat ja hyväksyt OpenAI:n määrittelemät <1>käyttöehdot</1> ja <2>tietosuojakäytännöt</2>. Huomaa, että Reaktiivinen ansioluettelo ei ota vastuuta palvelun epäasianmukaisesta tai luvattomasta käytöstä aiheutuvista seurauksista tai vastuista, jotka lankeavat yksinomaan käyttäjälle."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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>"
|
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."
|
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."
|
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."
|
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."
|
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"
|
msgid "Add a custom field"
|
||||||
msgstr "Lisää mukautettu kenttä"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Lisää uusi kohde"
|
msgstr "Lisää uusi kohde"
|
||||||
@ -117,7 +117,7 @@ msgstr "Lisää uusi kohde"
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr "Lisää uusi osio"
|
msgstr "Lisää uusi osio"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr "Lisää uusi sivu"
|
msgstr "Lisää uusi sivu"
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr "Onko sinulla jo tili?"
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr "Virhe tapahtui tiedoston validoinnissa."
|
msgstr "Virhe tapahtui tiedoston validoinnissa."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr "Tapahtui sisäinen palvelinvirhe."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr "Odottamaton virhe tapahtui."
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr "ja monia muita..."
|
msgstr "ja monia muita..."
|
||||||
@ -191,6 +199,18 @@ msgstr "Saatavilla {languagesCount} kielillä"
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr "Palkinnon myöntäjä"
|
msgstr "Palkinnon myöntäjä"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr "Azure API Versio"
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr "Azure OpenAI Base URL, käyttöönotto nimi (malli) ja API versio vaaditaan käytettäessä Azure OpenAI."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr "Azure OpenAI Resurssin Url"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,7 +229,7 @@ msgstr "Varmuuskoodi"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Varmuuskoodit voivat sisältää vain pieniä kirjaimia tai numeroita, ja niiden on oltava tarkalleen 10 merkkiä."
|
msgstr "Varmuuskoodit voivat sisältää vain pieniä kirjaimia tai numeroita, ja niiden on oltava tarkalleen 10 merkkiä."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "Perus URL-osoite"
|
msgstr "Perus URL-osoite"
|
||||||
|
|
||||||
@ -246,8 +266,8 @@ msgstr "Yhteisön tekemä, yhteisölle."
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Peruuta"
|
msgstr "Peruuta"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr "Rentoutunut"
|
msgstr "Rentoutunut"
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr "Rentoutunut"
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr "Keskitä taidetaulu"
|
msgstr "Keskitä taidetaulu"
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr "Vaihda Kieli"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr "Vaihda salasana"
|
msgstr "Vaihda salasana"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr "Vaihda sävyä"
|
msgstr "Vaihda sävyä"
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr "Sarakkeet"
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr "Yritys"
|
msgstr "Yritys"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr "Itsevarma"
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Jatka"
|
msgstr "Jatka"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Kopioi"
|
msgstr "Kopioi"
|
||||||
|
|
||||||
@ -351,7 +371,12 @@ msgstr "Luo yksi nyt"
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr "Luo esimerkki ansioluettelosta"
|
msgstr "Luo esimerkki ansioluettelosta"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||||
|
msgid "Current Password"
|
||||||
|
msgstr "Nykyinen Salasana"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr "Mukautettu CSS"
|
msgstr "Mukautettu CSS"
|
||||||
@ -386,10 +411,10 @@ msgstr "Tumma"
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Päivämäärä"
|
msgstr "Päivämäärä"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Päivämäärä tai Päivämääräväli"
|
msgstr "Päivämäärä tai Päivämääräväli"
|
||||||
@ -407,11 +432,15 @@ msgstr "Poista"
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr "Poista tili"
|
msgstr "Poista tili"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr "Käyttöönoton Nimi"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Kuvaus"
|
msgstr "Kuvaus"
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr "Suunnittele yksittäisiä/multi-sivuisia ansioluetteloita"
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr "Poista käytöstä"
|
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"
|
msgid "Disable 2FA"
|
||||||
msgstr "Poista kaksivaiheinen todennus"
|
msgstr "Poista kaksivaiheinen todennus"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr "Hylkää"
|
msgstr "Hylkää"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Dokumentointi"
|
msgstr "Dokumentointi"
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr "Dokumentointi"
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr "Ei tiliä?"
|
msgstr "Ei tiliä?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr "Älä tiedä mistä aloittaa? Aloita dokumenteista!"
|
msgstr "Älä tiedä mistä aloittaa? Aloita dokumenteista!"
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr "Älä tiedä mistä aloittaa? Aloita dokumenteista!"
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr "Et näe omaa kieltäsi? <0>Auta kääntämään sovellusta.</0>"
|
msgstr "Et näe omaa kieltäsi? <0>Auta kääntämään sovellusta.</0>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr " Lahjoita reaktiiviselle CV:lle"
|
msgstr " Lahjoita reaktiiviselle CV:lle"
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr " Lahjoita reaktiiviselle CV:lle"
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr "Lataa JSON-tiedosto ansioluettelostasi. Tätä tiedostoa voidaan käyttää ansioluettelon tuomiseen tulevaisuudessa tai se voidaan jopa jakaa muiden kanssa yhteistyöhön."
|
msgstr "Lataa JSON-tiedosto ansioluettelostasi. Tätä tiedostoa voidaan käyttää ansioluettelon tuomiseen tulevaisuudessa tai se voidaan jopa jakaa muiden kanssa yhteistyöhön."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
msgstr "Lataa PDF-ansioluettelosi. Tätä tiedostoa voidaan käyttää ansioluettelon tulostamiseen, lähettämiseen rekrytoijille tai lataamiseen työportaaleihin."
|
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/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr "Lataa PDF"
|
msgstr "Lataa PDF"
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr "Tee kaksoiskappale olemassa olevasta kohteesta"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Tee kaksoiskappale olemassa olevasta ansioluettelosta"
|
msgstr "Tee kaksoiskappale olemassa olevasta ansioluettelosta"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Muokkaa"
|
msgstr "Muokkaa"
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr "Efektit"
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr "Sähköposti"
|
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"
|
msgid "Enable 2FA"
|
||||||
msgstr "Ota käyttöön 2FA"
|
msgstr "Ota käyttöön 2FA"
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr "Syötä kertakäyttöinen salasana, jonka todentaja-sovelluksesi tarjoaa
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr "Syötä sähköpostiosoitteesi, niin lähetämme sinulle linkin salasanan nollaamiseksi, jos tili on olemassa."
|
msgstr "Syötä sähköpostiosoitteesi, niin lähetämme sinulle linkin salasanan nollaamiseksi, jos tili on olemassa."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr "Virhe {statusCode}"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr "Virheet"
|
msgstr "Virheet"
|
||||||
@ -544,6 +576,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."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr "Vie"
|
msgstr "Vie"
|
||||||
@ -564,19 +597,19 @@ msgstr "Lopuksi,"
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr "Korjaa oikeinkirjoitus ja kielioppi"
|
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"
|
msgid "Font Family"
|
||||||
msgstr "Fontin perhe"
|
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"
|
msgid "Font Size"
|
||||||
msgstr "Fontin koko"
|
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"
|
msgid "Font Subset"
|
||||||
msgstr "Fontin alajoukko"
|
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"
|
msgid "Font Variants"
|
||||||
msgstr "Fonttivariantit"
|
msgstr "Fonttivariantit"
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr "Fonttivariantit"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "Esimerkiksi tietoja siitä, mihin yrityksiin lähetit tämän ansioluettelon tai linkit työpaikkailmoituksiin, voidaan kirjata tänne."
|
msgstr "Esimerkiksi tietoja siitä, mihin yrityksiin lähetit tämän ansioluettelon tai linkit työpaikkailmoituksiin, voidaan kirjata tänne."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Unohda"
|
msgstr "Unohda"
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr "Unohditko salasanasi?"
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr "Muoto"
|
msgstr "Muoto"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr "Löysitkö virheen tai onko sinulla idea uudesta ominaisuudesta?"
|
msgstr "Löysitkö virheen tai onko sinulla idea uudesta ominaisuudesta?"
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr "Löysitkö virheen tai onko sinulla idea uudesta ominaisuudesta?"
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr "Ilmainen, ikuisesti"
|
msgstr "Ilmainen, ikuisesti"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr "Ystävällinen"
|
msgstr "Ystävällinen"
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr "Anna vanhalle ansioluettelollesi uusi nimi."
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr "Siirry hallintapaneeliin"
|
msgstr "Siirry hallintapaneeliin"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr "Siirry kotiin"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr "Google"
|
msgstr "Google"
|
||||||
@ -651,7 +688,7 @@ msgstr "Google"
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr "Harmaasävy"
|
msgstr "Harmaasävy"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr "Ruudukko"
|
msgstr "Ruudukko"
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr "Täällä voit päivittää profiilisi mukauttaaksesi ja personoidaksesi kokemustasi."
|
msgstr "Täällä voit päivittää profiilisi mukauttaaksesi ja personoidaksesi kokemustasi."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Piilotettu"
|
msgstr "Piilotettu"
|
||||||
@ -677,7 +714,7 @@ msgstr "Piilotettu"
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr "Piilota"
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr "Piilota kuvakkeet"
|
msgstr "Piilota kuvakkeet"
|
||||||
|
|
||||||
@ -734,7 +771,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."
|
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."
|
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."
|
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."
|
msgstr "Tässä osiossa voit vaihtaa salasanasi ja ottaa käyttöön/poistaa kaksivaiheisen tunnistuksen."
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ 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>."
|
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/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Tiedot"
|
msgstr "Tiedot"
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr "matti.meikäläinen@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Avainsanat"
|
msgstr "Avainsanat"
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr "Päivitetty viimeksi {lastUpdated}"
|
msgstr "Päivitetty viimeksi {lastUpdated}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Asettelu"
|
msgstr "Asettelu"
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr "Kirje"
|
msgstr "Kirje"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr "Taso"
|
msgstr "Taso"
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr "Vaalea"
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr "Vaalea tai tumma teema"
|
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"
|
msgid "Line Height"
|
||||||
msgstr "Riviväli"
|
msgstr "Riviväli"
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr "Riviväli"
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr "LinkedIn, JSON Resume, jne."
|
msgstr "LinkedIn, JSON Resume, jne."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr "Lista"
|
msgstr "Lista"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr "Kirjaudu ulos"
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr "Oletko kadottanut laitteesi?"
|
msgstr "Oletko kadottanut laitteesi?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr "Pää"
|
msgstr "Pää"
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr "Maaliskuu 2023"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr "Maaliskuu 2023 - Tähän asti"
|
msgstr "Maaliskuu 2023 - Tähän asti"
|
||||||
@ -923,7 +962,7 @@ msgstr "Maaliskuu 2023 - Tähän asti"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Marginaali"
|
msgstr "Marginaali"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "Max merkit"
|
msgstr "Max merkit"
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr "Max merkit"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "MIT-lisenssi"
|
msgstr "MIT-lisenssi"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "Malli"
|
msgstr "Malli"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr "Nimi"
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Verkko"
|
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"
|
msgid "New Password"
|
||||||
msgstr "Uusi salasana"
|
msgstr "Uusi salasana"
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr "Huom: Tämä tekee tilisi vähemmän turvalliseksi."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Muistiinpanot"
|
msgstr "Muistiinpanot"
|
||||||
@ -1009,16 +1049,16 @@ msgstr "OpenAI ei palauttanut mitään valintoja tekstillesi."
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "OpenAI-integrointi"
|
msgstr "OpenAI-integrointi"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
msgstr "OpenAI/Azure OpenAI/Ollama Integraatio"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr "OpenAI/Ollama API-avain"
|
msgstr "OpenAI/Ollama API-avain"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
|
||||||
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/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"
|
msgid "Options"
|
||||||
msgstr "Asetukset"
|
msgstr "Asetukset"
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr "Organisaatio"
|
msgstr "Organisaatio"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "Sivu"
|
msgstr "Sivu"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr "Sivu {pageNumber}"
|
msgstr "Sivu {pageNumber}"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr "Salasana"
|
msgstr "Salasana"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr "PDF"
|
msgstr "PDF"
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr "Powered by <0>Simple Icons</0>"
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr "Primary Color"
|
msgstr "Primary Color"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr "Tietosuojakäytäntö"
|
msgstr "Tietosuojakäytäntö"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr "Professional"
|
msgstr "Professional"
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr "Julkinen"
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "Julkaistut"
|
msgstr "Julkaistut"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr "Luo ongelma"
|
msgstr "Luo ongelma"
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr "Luo ongelma"
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr "Reaktiivinen ansioluettelo kukoistaa sen elinvoimaisen yhteisön ansiost
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Tee uudelleen"
|
msgstr "Tee uudelleen"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Poista"
|
msgstr "Poista"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr "Poista sivu"
|
msgstr "Poista sivu"
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr "Lähetä sähköpostin vahvistuslinkki uudelleen"
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr "Nollaa"
|
msgstr "Nollaa"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr "Nollaa asettelu"
|
msgstr "Nollaa asettelu"
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr "Nollaa zoomaus"
|
msgstr "Nollaa zoomaus"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr "Ansioluettelot"
|
msgstr "Ansioluettelot"
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr "Pyöristetty"
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Tallenna muutokset"
|
msgstr "Tallenna muutokset"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "Tallenna paikallisesti"
|
msgstr "Tallenna paikallisesti"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Tallennettu"
|
msgstr "Tallennettu"
|
||||||
|
|
||||||
@ -1262,15 +1300,15 @@ msgstr "Vieritä kohtaan Pan"
|
|||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr "Vieritä zoomaukseen"
|
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"
|
msgid "Search for a font family"
|
||||||
msgstr "Etsi fonttiperhettä"
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr "Etsi fonttialueetta"
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr "Etsi fonttivarianttia"
|
msgstr "Etsi fonttivarianttia"
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr "Etsi kieltä"
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr "Turvaa kaksivaiheisella todennuksella"
|
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"
|
msgid "Security"
|
||||||
msgstr "Turvallisuus"
|
msgstr "Turvallisuus"
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr "Itse-isännöidy Dockerilla"
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr "Lähetä sähköposti"
|
msgstr "Lähetä sähköposti"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr "Lähetä minulle viesti"
|
msgstr "Lähetä minulle viesti"
|
||||||
|
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr "Aseta kaksivaiheinen todennus tilillesi"
|
msgstr "Aseta kaksivaiheinen todennus tilillesi"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr "Jakaminen"
|
msgstr "Jakaminen"
|
||||||
@ -1330,7 +1369,7 @@ msgstr "Näytä rivinvaihto"
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr "Näytä Sivunumerot"
|
msgstr "Näytä Sivunumerot"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Sivupalkki"
|
msgstr "Sivupalkki"
|
||||||
|
|
||||||
@ -1408,6 +1447,7 @@ msgid "Start building your resume by giving it a name."
|
|||||||
msgstr "Aloita ansioluettelosi rakentaminen antamalla sille nimi."
|
msgstr "Aloita ansioluettelosi rakentaminen antamalla sille nimi."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr "Tilastot"
|
msgstr "Tilastot"
|
||||||
@ -1422,17 +1462,17 @@ msgstr "Säilytä varakoodisi turvallisesti"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr "Yhteenveto"
|
msgstr "Yhteenveto"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr "Tue sovellusta lahjoittamalla mitä voit!"
|
msgstr "Tue sovellusta lahjoittamalla mitä voit!"
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr "Reaktiivisen ansioluettelon tukeminen"
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr "Tukee A4/Kirje-sivuformaatteja"
|
msgstr "Tukee A4/Kirje-sivuformaatteja"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr "Vaihda tummaan tilaan"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr "Vaihda valotilaan"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr "Järjestelmä"
|
msgstr "Järjestelmä"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "Pohja"
|
msgstr "Pohja"
|
||||||
@ -1465,15 +1514,20 @@ msgstr "Asiakaspalautteet"
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr "Tekstin väri"
|
msgstr "Tekstin väri"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
msgstr "Syöttämäsi salasanat eivät täsmää."
|
msgstr "Sivua, jota etsit ei ole olemassa."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
|
msgstr "Pyyntö oli virheellinen."
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: 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."
|
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."
|
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/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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,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:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr "Kaksivaiheinen tunnistautuminen"
|
msgstr "Kaksivaiheinen tunnistautuminen"
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr "Opiskelumuoto"
|
msgstr "Opiskelumuoto"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr "Typografia"
|
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"
|
msgid "Underline Links"
|
||||||
msgstr "Alleviivaa Linkit"
|
msgstr "Alleviivaa Linkit"
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr "URL"
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr "URL:n on käynnistyttävä https://-merkillä"
|
msgstr "URL:n on käynnistyttävä https://-merkillä"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr "Käytä Azure OpenAI"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr "Käytä Järjestelmäteemaa"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,7 +1714,7 @@ msgstr "Versio 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Näkymät"
|
msgstr "Näkymät"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Näkyvä"
|
msgstr "Näkyvä"
|
||||||
|
|
||||||
@ -1665,11 +1728,11 @@ msgstr "Me varmistamme sähköpostiosoitteesi vain varmistaaksemme, että voimme
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr "Verkkosivusto"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Mitä uutta viimeisimmässä versiossa"
|
msgstr "Mitä uutta viimeisimmässä versiossa"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr "Sinulla ei ole oikeutta käyttää tätä sivua."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Voit lisätä useita avainsanoja erottelemalla ne pilkulla tai painamalla enter."
|
msgstr "Voit lisätä useita avainsanoja erottelemalla ne pilkulla tai painamalla enter."
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr "Voit lisätä useita avainsanoja erottelemalla ne pilkulla tai painamall
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Voit myös syöttää käyttäjänimesi."
|
msgstr "Voit myös syöttää käyttäjänimesi."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr "Voit myös integroitua Ollamaan yksinkertaisesti asettamalla API-avaimeksi `sk-1234567890abcdef` ja Base-URL:ksi Ollama-URL:n, eli `http://localhost:11434/v1`. Voit myös valita malleja ja asettaa maksimitunnukset haluamallasi tavalla."
|
msgstr "Voit myös integroida Azure OpenAI:in ottamalla käyttöön <0>Käytä Azure OpenAI</0> -valintaruutua ja asettamalla Resurssin URL-osoitteen Azure OpenAI -resurssille: <1>https://your resource. penai.azure.com</1>. Aseta käyttöönoton nimi Mallikenttään ja määritä sopiva API-versio Azuren käyttöönottoa varten."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
msgstr "Voit käyttää OpenAI API:a auttamaan sinua sisällön luomisessa tai parantamaan kirjoittamistasi laatimalla ansioluettelosi."
|
msgstr "Voit myös integroida Ollama yksinkertaisesti asettamalla API-avaimen<0>sk-1234567890abcdef</0> ja Base URL Ollama URL, i. .<1>http://localhost:11434/v1</1>. Voit myös valita ja valita malleja ja asettaa maksimipoletteja valinnan mukaan."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
|
msgstr "Voit käyttää OpenAI API, Azure OpenAI tai Ollama auttaa sinua luomaan sisältöä tai parantamaan kirjoittamistasi säveltäessäsi uudelleen."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Voit seurata, kuinka monta katselukertaa ansioluettelosi on saanut tai kuinka monta henkilöä on ladannut ansioluettelosi mahdollistamalla julkisen jakamisen."
|
msgstr "Voit seurata, kuinka monta katselukertaa ansioluettelosi on saanut tai kuinka monta henkilöä on ladannut ansioluettelosi mahdollistamalla julkisen jakamisen."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr "Sinulla ei ole oikeuksia käyttää tätä sivua."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "Sinulla on mahdollisuus <0>hankkia oma OpenAI API-avain</0>. Tämä avain antaa sinulle mahdollisuuden hyödyntää API:a haluamallasi tavalla. Vaihtoehtoisesti, jos haluat poistaa tekoälyominaisuudet kokonaan Reactive Resumesta, voit yksinkertaisesti poistaa avaimen asetuksistasi."
|
msgstr "Sinulla on mahdollisuus <0>hankkia oma OpenAI API-avain</0>. Tämä avain antaa sinulle mahdollisuuden hyödyntää API:a haluamallasi tavalla. Vaihtoehtoisesti, jos haluat poistaa tekoälyominaisuudet kokonaan Reactive Resumesta, voit yksinkertaisesti poistaa avaimen asetuksistasi."
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr "Sinulle on tullut postia!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Tilisi ja kaikki tietosi on poistettu onnistuneesti. Hyvästi!"
|
msgstr "Tilisi ja kaikki tietosi on poistettu onnistuneesti. Hyvästi!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "API-avaimesi säilytetään turvallisesti selaimen paikallisessa tallennustilassa ja sitä käytetään vain tehdessäsi pyyntöjä OpenAI:lle heidän virallisen SDK:n kautta. Ole huoleti, että avaintasi ei lähetetä ulkoiselle palvelimelle, paitsi kun vuorovaikutuksessa OpenAI-palveluiden kanssa."
|
msgstr "API-avaimesi säilytetään turvallisesti selaimen paikallisessa tallennustilassa ja sitä käytetään vain tehdessäsi pyyntöjä OpenAI:lle heidän virallisen SDK:n kautta. Ole huoleti, että avaintasi ei lähetetä ulkoiselle palvelimelle, paitsi kun vuorovaikutuksessa OpenAI-palveluiden kanssa."
|
||||||
|
|
||||||
@ -1733,7 +1808,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."
|
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."
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr "Salasanasi on päivitetty onnistuneesti."
|
msgstr "Salasanasi on päivitetty onnistuneesti."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: fr\n"
|
"Language: fr\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:40\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: French\n"
|
"Language-Team: French\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||||
@ -30,27 +30,27 @@ msgstr "{templatesCount} choix de modèles de CV"
|
|||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr "{value, plural, one {Colonne} other {Colonnes}}"
|
msgstr "{value, plural, one {Colonne} other {Colonnes}}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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>J'ai construit Reactive Resume principalement par moi-même pendant mon temps libre, avec beaucoup d'aide de la part d'autres grands contributeurs open-source.</0><1>Si vous aimez l'application et que vous voulez contribuer à ce qu'elle reste gratuite pour toujours, donnez ce que vous pouvez vous permettre de donner.</1>"
|
msgstr "<0>J'ai construit Reactive Resume principalement seul pendant mon temps libre, avec beaucoup d'aide de la part d'autres grands contributeurs open-source.</0><1>Si vous aimez l'application et que vous voulez contribuer à ce qu'elle reste gratuite pour toujours, donnez ce que vous pouvez vous permettre de donner.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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>Je suis sûre que l'application n'est pas parfaite, mais j'aimerais qu'elle le soit.</0><1>Si vous avez rencontré n'importe quel problème en créant votre CV, ou si vous avez une idée qui pourrait aider, vous ou les autres, à créer leurs Cv plus facilement, faite remonter l'idée sur le repository, ou envoyez moi un email.</1>"
|
msgstr "<0>Je suis sûre que l'application n'est pas parfaite, mais j'aimerais qu'elle le soit.</0><1>Si vous avez rencontré n'importe quel problème en créant votre CV, ou si vous avez une idée qui pourrait aider, vous ou les autres, à créer leurs CV plus facilement, faite remonter l'idée sur le repository ou envoyez moi un email.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 "<0>Remarque :</0> En utilisant l'API OpenAI, vous reconnaissez et acceptez les <1>conditions d'utilisation</1> et <2>politique de confidentialité</2> décrit par OpenAI. Veuillez noter que Reactive Resume n'assume aucune responsabilité pour toute utilisation inappropriée ou non autorisée du service, et toutes les répercussions ou responsabilités qui en résultent incombent uniquement à l'utilisateur."
|
msgstr "<0>Remarque :</0> En utilisant l'API OpenAI, vous reconnaissez et acceptez les <1>conditions d'utilisation</1> et <2>politique de confidentialité</2> décrit par OpenAI. Veuillez noter que Reactive Resume n'assume aucune responsabilité pour toute utilisation inappropriée ou non autorisée du service, et toutes les répercussions ou responsabilités qui en résultent incombent uniquement à l'utilisateur."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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>"
|
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."
|
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."
|
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."
|
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."
|
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"
|
msgid "Add a custom field"
|
||||||
msgstr "Ajouter un champ personnalisé"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Ajouter un nouvel élément"
|
msgstr "Ajouter un nouvel élément"
|
||||||
@ -117,7 +117,7 @@ msgstr "Ajouter un nouvel élément"
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr "Ajouter une nouvelle section"
|
msgstr "Ajouter une nouvelle section"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr "Ajouter une Nouvelle Page"
|
msgstr "Ajouter une Nouvelle Page"
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr "Vous avez déjà un compte ?"
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr "Une erreur s'est produite lors du chargement du fichier."
|
msgstr "Une erreur s'est produite lors du chargement du fichier."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr "Une erreur interne du serveur s'est produite."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr "Une erreur imprévue s'est produite."
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr "et bien d'autres..."
|
msgstr "et bien d'autres..."
|
||||||
@ -191,6 +199,18 @@ msgstr "Disponible en {languagesCount} langues"
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr "Entreprise"
|
msgstr "Entreprise"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr "Version de l'API Azure"
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr "Azure OpenAI Base URL, nom de déploiement (modèle) et version de l'API sont requis lors de l'utilisation d'Azure OpenAI."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr "URL de ressource OpenAI Azure"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,7 +229,7 @@ msgstr "Code de récupération"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Les codes de sauvegarde ne peuvent contenir que des lettres minuscules ou des chiffres et doivent comporter exactement 10 caractères."
|
msgstr "Les codes de sauvegarde ne peuvent contenir que des lettres minuscules ou des chiffres et doivent comporter exactement 10 caractères."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "URL de base"
|
msgstr "URL de base"
|
||||||
|
|
||||||
@ -246,8 +266,8 @@ msgstr "Par la communauté, pour la communauté."
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Annuler"
|
msgstr "Annuler"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr "Décontracté"
|
msgstr "Décontracté"
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr "Décontracté"
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr "Plan de travail central"
|
msgstr "Plan de travail central"
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr "Changer de langue"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr "Changer le mot de passe"
|
msgstr "Changer le mot de passe"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr "Changer de ton"
|
msgstr "Changer de ton"
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr "Colonnes"
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr "Société"
|
msgstr "Société"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr "Confiant"
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Continuer"
|
msgstr "Continuer"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Copier"
|
msgstr "Copier"
|
||||||
|
|
||||||
@ -351,7 +371,12 @@ msgstr "Créez-en un maintenant"
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr "Créer un exemple de CV"
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr "CSS personnalisé"
|
msgstr "CSS personnalisé"
|
||||||
@ -386,10 +411,10 @@ msgstr "Sombre"
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Date"
|
msgstr "Date"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Période ou date"
|
msgstr "Période ou date"
|
||||||
@ -407,11 +432,15 @@ msgstr "Supprimer"
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr "Supprimer le compte"
|
msgstr "Supprimer le compte"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr "Nom du déploiement"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Description"
|
msgstr "Description"
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr "Concevoir des CV d'une ou plusieurs pages"
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr "Désactiver"
|
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"
|
msgid "Disable 2FA"
|
||||||
msgstr "Désactiver la 2FA"
|
msgstr "Désactiver la 2FA"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr "Abandonner"
|
msgstr "Abandonner"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Documentation"
|
msgstr "Documentation"
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr "Documentation"
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr "Pas encore de compte ?"
|
msgstr "Pas encore de compte ?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr "Vous ne savez pas par où commencer ? La doc !"
|
msgstr "Vous ne savez pas par où commencer ? La doc !"
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr "Vous ne savez pas par où commencer ? La doc !"
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr "Vous ne voyez pas votre langue ? <0>Aidez à traduire l'application.</0>"
|
msgstr "Vous ne voyez pas votre langue ? <0>Aidez à traduire l'application.</0>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr "Faire un don à Reactive Resume"
|
msgstr "Faire un don à Reactive Resume"
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr "Faire un don à Reactive Resume"
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr "Téléchargez un instantané JSON de votre CV. Ce fichier peut être utilisé pour importer votre CV à l'avenir, ou peut même être partagé avec d'autres pour collaborer."
|
msgstr "Téléchargez un instantané JSON de votre CV. Ce fichier peut être utilisé pour importer votre CV à l'avenir, ou peut même être partagé avec d'autres pour collaborer."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
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."
|
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/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr "Télécharger au format PDF"
|
msgstr "Télécharger au format PDF"
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr "Dupliquer un élément existant"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Dupliquer un CV existant"
|
msgstr "Dupliquer un CV existant"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Editer"
|
msgstr "Editer"
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr "Effets"
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr "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"
|
msgid "Enable 2FA"
|
||||||
msgstr "Activer l'A2F"
|
msgstr "Activer l'A2F"
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr "Saisissez ci-dessous le mot de passe à usage unique fourni par votre ap
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr "Entrez votre adresse e-mail pour recevoir un lien afin de réinitialiser votre mot de passe si le compte existe."
|
msgstr "Entrez votre adresse e-mail pour recevoir un lien afin de réinitialiser votre mot de passe si le compte existe."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr "Erreur {statusCode}"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr "Erreurs"
|
msgstr "Erreurs"
|
||||||
@ -544,6 +576,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."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr "Exporter"
|
msgstr "Exporter"
|
||||||
@ -564,19 +597,19 @@ msgstr "Enfin,"
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr "Correcteur orthographique"
|
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"
|
msgid "Font Family"
|
||||||
msgstr "Famille de police"
|
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"
|
msgid "Font Size"
|
||||||
msgstr "Taille de la police"
|
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"
|
msgid "Font Subset"
|
||||||
msgstr "Sous-ensemble de polices"
|
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"
|
msgid "Font Variants"
|
||||||
msgstr "Variantes de polices"
|
msgstr "Variantes de polices"
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr "Variantes de polices"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "Par exemple, des informations sur les entreprises auxquelles vous avez envoyé ce CV ou les liens vers les descriptions de poste peuvent être notées ici."
|
msgstr "Par exemple, des informations sur les entreprises auxquelles vous avez envoyé ce CV ou les liens vers les descriptions de poste peuvent être notées ici."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Oublier"
|
msgstr "Oublier"
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr "Vous avez oublié votre mot de passe ?"
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr "Format"
|
msgstr "Format"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr "Vous avez trouvé un bug, ou avez une idée pour une nouvelle fonctionnalité?"
|
msgstr "Vous avez trouvé un bug, ou avez une idée pour une nouvelle fonctionnalité?"
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr "Vous avez trouvé un bug, ou avez une idée pour une nouvelle fonctionna
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr "Gratuit, pour toujours"
|
msgstr "Gratuit, pour toujours"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr "Amical"
|
msgstr "Amical"
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr "Donnez un nouveau nom à votre ancien CV."
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr "Accéder au tableau de bord"
|
msgstr "Accéder au tableau de bord"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr "Aller à l'accueil"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr "Google"
|
msgstr "Google"
|
||||||
@ -651,7 +688,7 @@ msgstr "Google"
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr "Niveaux de gris"
|
msgstr "Niveaux de gris"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr "Grille"
|
msgstr "Grille"
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr "Ici, vous pouvez mettre à jour votre profil pour personnaliser et personnaliser votre expérience."
|
msgstr "Ici, vous pouvez mettre à jour votre profil pour personnaliser et personnaliser votre expérience."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Masqué"
|
msgstr "Masqué"
|
||||||
@ -677,7 +714,7 @@ msgstr "Masqué"
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr "Masquer"
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr "Masquer les icônes"
|
msgstr "Masquer les icônes"
|
||||||
|
|
||||||
@ -734,7 +771,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."
|
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."
|
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."
|
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."
|
msgstr "Dans cette section, vous pouvez modifier votre mot de passe et activer/désactiver l'authentification à deux facteurs."
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ 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>."
|
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/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Information"
|
msgstr "Information"
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr "john.doe@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Mots-clés"
|
msgstr "Mots-clés"
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr "Dernière mise à jour {lastUpdated}"
|
msgstr "Dernière mise à jour {lastUpdated}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Mise en page"
|
msgstr "Mise en page"
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr "Lettre"
|
msgstr "Lettre"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr "Niveau"
|
msgstr "Niveau"
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr "Clair"
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr "Thème clair ou sombre"
|
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"
|
msgid "Line Height"
|
||||||
msgstr "Interligne"
|
msgstr "Interligne"
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr "Interligne"
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr "LinkedIn, CV JSON, etc."
|
msgstr "LinkedIn, CV JSON, etc."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr "Liste"
|
msgstr "Liste"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr "Déconnexion"
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr "Vous avez perdu votre appareil ?"
|
msgstr "Vous avez perdu votre appareil ?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr "Principal"
|
msgstr "Principal"
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr "Mars 2023"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr "Mars 2023 - Aujourd'hui"
|
msgstr "Mars 2023 - Aujourd'hui"
|
||||||
@ -923,7 +962,7 @@ msgstr "Mars 2023 - Aujourd'hui"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Marge"
|
msgstr "Marge"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "Token maximum"
|
msgstr "Token maximum"
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr "Token maximum"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "Licence MIT"
|
msgstr "Licence MIT"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "Modèle"
|
msgstr "Modèle"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr "Nom"
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Réseau"
|
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"
|
msgid "New Password"
|
||||||
msgstr "Nouveau mot de passe"
|
msgstr "Nouveau mot de passe"
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr "Remarque : Cela rendra votre compte moins sécurisé."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Notes"
|
msgstr "Notes"
|
||||||
@ -1009,16 +1049,16 @@ msgstr "OpenAI n'a renvoyé aucun choix pour votre texte."
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "Intégration OpenAI"
|
msgstr "Intégration OpenAI"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
msgstr "Intégration OpenAI/Azure OpenAI/Ollama"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr "Clé API OpenAI/Ollama"
|
msgstr "Clé API OpenAI/Ollama"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
|
||||||
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/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"
|
msgid "Options"
|
||||||
msgstr "Options"
|
msgstr "Options"
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr "Organisation"
|
msgstr "Organisation"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "Page"
|
msgstr "Page"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr "Page {pageNumber}"
|
msgstr "Page {pageNumber}"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr "Mot de passe"
|
msgstr "Mot de passe"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr "PDF"
|
msgstr "PDF"
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr "Réalisé par <0>Simple Icons</0>"
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr "Couleur Primaire"
|
msgstr "Couleur Primaire"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr "Politique de confidentialité"
|
msgstr "Politique de confidentialité"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr "Professionnel"
|
msgstr "Professionnel"
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr "Public"
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "Editeur"
|
msgstr "Editeur"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr "Signaler un problème"
|
msgstr "Signaler un problème"
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr "Signaler un problème"
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr "Reactive Resume prospère grâce à sa communauté dynamique. Ce projet
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Rétablir"
|
msgstr "Rétablir"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Supprimer"
|
msgstr "Supprimer"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr "Supprimer la Page"
|
msgstr "Supprimer la Page"
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr "Renvoyer l'e-mail de confirmation"
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr "Réinitialiser"
|
msgstr "Réinitialiser"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr "Réinitialiser la mise en page"
|
msgstr "Réinitialiser la mise en page"
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr "Réinitialiser le zoom"
|
msgstr "Réinitialiser le zoom"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr "CVs"
|
msgstr "CVs"
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr "Arrondi"
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Enregistrer les modifications"
|
msgstr "Enregistrer les modifications"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "Enregistrer Localement"
|
msgstr "Enregistrer Localement"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Enregistré"
|
msgstr "Enregistré"
|
||||||
|
|
||||||
@ -1262,15 +1300,15 @@ msgstr "Défilement vers Pan"
|
|||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr "Défilement vers le 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"
|
msgid "Search for a font family"
|
||||||
msgstr "Rechercher une famille de polices"
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr "Rechercher un sous-ensemble de polices"
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr "Rechercher une variante de police"
|
msgstr "Rechercher une variante de police"
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr "Rechercher une langue"
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr "Sécurisé avec l'authentification à deux facteurs"
|
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"
|
msgid "Security"
|
||||||
msgstr "Sécurité"
|
msgstr "Sécurité"
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr "Auto-hébergement avec Docker"
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr "Envoyer l'e-mail"
|
msgstr "Envoyer l'e-mail"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr "M'envoyer un message"
|
msgstr "M'envoyer un message"
|
||||||
|
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr "Configurer l'authentification à deux facteurs sur votre compte"
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr "Partager"
|
msgstr "Partager"
|
||||||
@ -1330,7 +1369,7 @@ msgstr "Afficher la ligne de saut"
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr "Afficher le numéro de page"
|
msgstr "Afficher le numéro de page"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Panneau latéral"
|
msgstr "Panneau latéral"
|
||||||
|
|
||||||
@ -1408,6 +1447,7 @@ msgid "Start building your resume by giving it a name."
|
|||||||
msgstr "Commencez à créer votre CV en lui donnant un nom."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr "Statistiques"
|
msgstr "Statistiques"
|
||||||
@ -1422,17 +1462,17 @@ msgstr "Stockez vos codes de sauvegarde en toute sécurité"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr "Sommaire"
|
msgstr "Sommaire"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr "Soutenez l'application en donnant ce que vous pouvez !"
|
msgstr "Soutenez l'application en donnant ce que vous pouvez !"
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr "Soutenir le Reactive Resume"
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr "Supporte les formats de page A4/Letter"
|
msgstr "Supporte les formats de page A4/Letter"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr "Passer en mode sombre"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr "Basculer en Mode Lumière"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr "Système"
|
msgstr "Système"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "Modèle"
|
msgstr "Modèle"
|
||||||
@ -1465,15 +1514,20 @@ msgstr "Témoignages"
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr "Couleur du texte"
|
msgstr "Couleur du texte"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
msgstr "Les mots de passe saisis ne correspondent pas."
|
msgstr "La page que vous recherchez n'existe pas."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
|
msgstr "La requête est invalide."
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: 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."
|
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."
|
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/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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,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:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr "Authentification à deux facteurs"
|
msgstr "Authentification à deux facteurs"
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr "Type d'étude"
|
msgstr "Type d'étude"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr "Typographie"
|
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"
|
msgid "Underline Links"
|
||||||
msgstr "Souligner les liens"
|
msgstr "Souligner les liens"
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr "URL"
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr "L'URL doit commencer par https://"
|
msgstr "L'URL doit commencer par https://"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr "Utiliser Azure OpenAI"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr "Utiliser le thème système"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,7 +1714,7 @@ msgstr "Version 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Vues"
|
msgstr "Vues"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Visible"
|
msgstr "Visible"
|
||||||
|
|
||||||
@ -1665,11 +1728,11 @@ msgstr "Nous vérifions votre adresse électronique uniquement pour nous assurer
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr "Site Web"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Quoi de neuf dans la dernière version"
|
msgstr "Quoi de neuf dans la dernière version"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr "Vous n'êtes pas autorisé à accéder à cette page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Vous pouvez ajouter plusieurs mots-clés en les séparant par une virgule ou en appuyant sur la touche Entrée."
|
msgstr "Vous pouvez ajouter plusieurs mots-clés en les séparant par une virgule ou en appuyant sur la touche Entrée."
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr "Vous pouvez ajouter plusieurs mots-clés en les séparant par une virgul
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Vous pouvez également saisir votre nom d'utilisateur."
|
msgstr "Vous pouvez également saisir votre nom d'utilisateur."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr "Vous pouvez également intégrer Ollama simplement en définissant la clé API à `sk-1234567890abcdef` et l'URL de base à votre URL Ollama, c'est-à-dire `http://localhost:11434/v1`. Vous pouvez également choisir des modèles et définir le nombre maximum de jetons selon vos préférences."
|
msgstr "Vous pouvez également intégrer avec Azure OpenAI en activant la case <0>Utiliser Azure OpenAI</0> et en définissant l'URL de la ressource Azure OpenAI : <1>https://votre-ressource. penai.azure.com</1>. Définissez le nom de déploiement dans le champ Modèle et spécifiez la version d'API appropriée pour votre déploiement Azure."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
msgstr "Vous pouvez utiliser l'API OpenAI pour vous aider à générer du contenu, ou améliorer votre écriture lors de la rédaction de votre CV."
|
msgstr "Vous pouvez également vous intégrer à Ollama simplement en définissant la clé API à<0>sk-1234567890abcdef</0> et l'URL de base de votre URL Ollama, i. .<1>http://localhost:11434/v1</1>. Vous pouvez également choisir et choisir des modèles et définir les jetons maximaux selon vos préférences."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
|
msgstr "Vous pouvez utiliser l'API OpenAI, Azure OpenAI, ou Ollama pour vous aider à générer du contenu, ou améliorer votre écriture en composant votre curriculum vitae."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Vous pouvez suivre le nombre de vues que votre CV a reçues ou le nombre de personnes qui ont téléchargé le CV en activant le partage public."
|
msgstr "Vous pouvez suivre le nombre de vues que votre CV a reçues ou le nombre de personnes qui ont téléchargé le CV en activant le partage public."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr "Vous n'avez pas l'autorisation d'accéder à cette page."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "Vous avez la possibilité d'<0>obtenir votre propre clé API OpenAI</0> . Cette clé vous permet d’exploiter l’API comme bon vous semble. Alternativement, si vous souhaitez désactiver complètement les fonctionnalités d'IA dans Reactive Resume, vous pouvez simplement supprimer la clé de vos paramètres."
|
msgstr "Vous avez la possibilité d'<0>obtenir votre propre clé API OpenAI</0> . Cette clé vous permet d’exploiter l’API comme bon vous semble. Alternativement, si vous souhaitez désactiver complètement les fonctionnalités d'IA dans Reactive Resume, vous pouvez simplement supprimer la clé de vos paramètres."
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr "Vous avez un message !"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Votre compte et toutes vos données ont été supprimés avec succès. Au revoir!"
|
msgstr "Votre compte et toutes vos données ont été supprimés avec succès. Au revoir!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "Votre clé API est stockée en toute sécurité dans le stockage local du navigateur et n'est utilisée que lors des demandes adressées à OpenAI via leur SDK officiel. Soyez assuré que votre clé n'est transmise à aucun serveur externe sauf lors de l'interaction avec les services d'OpenAI."
|
msgstr "Votre clé API est stockée en toute sécurité dans le stockage local du navigateur et n'est utilisée que lors des demandes adressées à OpenAI via leur SDK officiel. Soyez assuré que votre clé n'est transmise à aucun serveur externe sauf lors de l'interaction avec les services d'OpenAI."
|
||||||
|
|
||||||
@ -1733,7 +1808,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."
|
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."
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr "Votre mot de passe a été mis à jour."
|
msgstr "Votre mot de passe a été mis à jour."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: he\n"
|
"Language: he\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:40\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Hebrew\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"
|
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n"
|
||||||
@ -30,27 +30,27 @@ msgstr "{templatesCount} תבניות קורות חיים לבחירתך"
|
|||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr "{value, plural, one {עמודה} two {עמודות} many {עמודות} other {עמודות}}"
|
msgstr "{value, plural, one {עמודה} two {עמודות} many {עמודות} other {עמודות}}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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 בעיקר בעצמי בזמן הפנוי שלי, עם המון עזרה ממתנדבי קוד פתוח מקסימים.</0><1>אם היישום נושא חן בעיניך ומעניין אותך לתרום כדי לדאוג שיישאר חופשי לעד, נא לתרום איך שמסתייע לך.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 "<0>לתשומת ליבך: </0>עצם השימוש ב־API של OpenAI מהווה הכרה והסכמה ל<1>תנאי השימוש</1> ול<2>מדיניות הפרטיות</2> שנקבעו על ידי OpenAI. נא לשים לב ש־Reactive Resume אינו אחראי במקרים של שימוש לא הולם או לא מורשה בשירות, לרבות השלכות נגזרות או התחייבויות שחלות באופן בלעדי על המשתמש."
|
msgstr "<0>לתשומת ליבך: </0>עצם השימוש ב־API של OpenAI מהווה הכרה והסכמה ל<1>תנאי השימוש</1> ול<2>מדיניות הפרטיות</2> שנקבעו על ידי OpenAI. נא לשים לב ש־Reactive Resume אינו אחראי במקרים של שימוש לא הולם או לא מורשה בשירות, לרבות השלכות נגזרות או התחייבויות שחלות באופן בלעדי על המשתמש."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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>"
|
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."
|
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||||
msgstr "<0>אימות דו־שלבי מושבת כרגע.</0> אפשר להפעיל אותו על ידי הוספת יישומון מאמת לחשבון שלך."
|
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."
|
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||||
msgstr "<0>אימות דו־שלבי פעיל.</0> תופיע בקשה למלא את הקוד שלך עם כל כניסה למערכת."
|
msgstr "<0>אימות דו־שלבי פעיל.</0> תופיע בקשה למלא את הקוד שלך עם כל כניסה למערכת."
|
||||||
|
|
||||||
@ -102,8 +102,8 @@ msgstr "חשבון"
|
|||||||
msgid "Add a custom field"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "הוספת פריט חדש"
|
msgstr "הוספת פריט חדש"
|
||||||
@ -117,7 +117,7 @@ msgstr "הוספת פריט חדש"
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr "הוספת סעיף חדש"
|
msgstr "הוספת סעיף חדש"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr "הוספת עמוד חדש"
|
msgstr "הוספת עמוד חדש"
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr "כבר יש לך חשבון?"
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr "אירעה שגיאה בתיקוף הקובץ."
|
msgstr "אירעה שגיאה בתיקוף הקובץ."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr "אירעה שגיאה פנימית בשרת."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr "אירעה שגיאה בלתי צפויה."
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr "ועוד שלל יכולות…"
|
msgstr "ועוד שלל יכולות…"
|
||||||
@ -148,7 +156,7 @@ msgstr "כל מי שמחזיק בקישור הזה יכול לצפות ולהו
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:41
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:41
|
||||||
msgid "Apply Custom CSS"
|
msgid "Apply Custom CSS"
|
||||||
msgstr ""
|
msgstr "החל CSS מותאם אישית"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
@ -191,6 +199,18 @@ msgstr "זמין ב־{languagesCount} שפות"
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr "גוף מעניק"
|
msgstr "גוף מעניק"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr "גרסת ממשק ה-API של Azure"
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr "כתובת URL בסיסית של Azure OpenAI, שם הפריסה (מודל) וגרסת ה-API נדרשים בעת שימוש ב-Azure OpenAI."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr "כתובת URL של משאב Azure OpenAI"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,9 +229,9 @@ msgstr "קוד גיבוי"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "קודים למטרות גיבוי יכולים להכיל רק אותיות לטיניות קטנות או מספרים והם חייבים להיות באורך של 10 תווים בדיוק."
|
msgstr "קודים למטרות גיבוי יכולים להכיל רק אותיות לטיניות קטנות או מספרים והם חייבים להיות באורך של 10 תווים בדיוק."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr "כתובת URL בסיסית"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
#: 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."
|
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||||
@ -246,8 +266,8 @@ msgstr "על ידי הקהילה ועבורה."
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "ביטול"
|
msgstr "ביטול"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr "יומיומי"
|
msgstr "יומיומי"
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr "יומיומי"
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr "מירכוז לוח היצירה"
|
msgstr "מירכוז לוח היצירה"
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr "שנה שפה"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr "החלפת סיסמה"
|
msgstr "החלפת סיסמה"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr "שינוי אופן התנסחות"
|
msgstr "שינוי אופן התנסחות"
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr "עמודות"
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr "חברה"
|
msgstr "חברה"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr "מלא בטחון עצמי"
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "המשך"
|
msgstr "המשך"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "העתקה"
|
msgstr "העתקה"
|
||||||
|
|
||||||
@ -351,10 +371,15 @@ msgstr "יצירת אחד כזה עכשיו"
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr "יצירת קורות חיים לדוגמה"
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr ""
|
msgstr "CSS מותאם אישית"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:62
|
#: apps/client/src/pages/home/sections/features/index.tsx:62
|
||||||
msgid "Custom resume sections"
|
msgid "Custom resume sections"
|
||||||
@ -386,10 +411,10 @@ msgstr "כהה"
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "תאריך"
|
msgstr "תאריך"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "תאריך או טווח תאריכים"
|
msgstr "תאריך או טווח תאריכים"
|
||||||
@ -407,11 +432,15 @@ msgstr "מחיקה"
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr "מחיקת חשבון"
|
msgstr "מחיקת חשבון"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr "שם הפריסה"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "תיאור"
|
msgstr "תיאור"
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr "תכנון קורות חיים עם עמוד אחד/יותר"
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr "השבתה"
|
msgstr "השבתה"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||||
msgid "Disable 2FA"
|
msgid "Disable 2FA"
|
||||||
msgstr "השבתת האימות הדו־שלבי"
|
msgstr "השבתת האימות הדו־שלבי"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr "התעלמות"
|
msgstr "התעלמות"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "תיעוד"
|
msgstr "תיעוד"
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr "תיעוד"
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr "אין לך חשבון?"
|
msgstr "אין לך חשבון?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr "לא ברור לך מאיפה מתחילים? כדאי לבקר בתיעוד!"
|
msgstr "לא ברור לך מאיפה מתחילים? כדאי לבקר בתיעוד!"
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr "לא ברור לך מאיפה מתחילים? כדאי לבקר בתיע
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr "השפה שלך לא מופיעה? <0>אפשר לסייע בתרגום היישום.</0>"
|
msgstr "השפה שלך לא מופיעה? <0>אפשר לסייע בתרגום היישום.</0>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr "תרומה ל־Reactive Resume"
|
msgstr "תרומה ל־Reactive Resume"
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr "תרומה ל־Reactive Resume"
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr "הורדת תמונת מצב ב־JSON של קורות החיים שלך. אפשר להשתמש בקובץ הזה כדי לייבא את קורות החיים שלך בעתיד או שאפשר אפילו לשתף אותם עם אחרים לעריכה משותפת."
|
msgstr "הורדת תמונת מצב ב־JSON של קורות החיים שלך. אפשר להשתמש בקובץ הזה כדי לייבא את קורות החיים שלך בעתיד או שאפשר אפילו לשתף אותם עם אחרים לעריכה משותפת."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
msgstr "הורדת PDF של קורות החיים שלך. אפשר להשתמש בקובץ הזה כדי להדפיס את קורות החיים שלך, לשלוח אותו למגייסים או להעלות אותו לפורטלים של מעסיקים."
|
msgstr "הורדת PDF של קורות החיים שלך. אפשר להשתמש בקובץ הזה כדי להדפיס את קורות החיים שלך, לשלוח אותו למגייסים או להעלות אותו לפורטלים של מעסיקים."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr "הורדת PDF"
|
msgstr "הורדת PDF"
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr "שכפול פריט קיים"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "שכפול קורות חיים קיימים"
|
msgstr "שכפול קורות חיים קיימים"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "עריכה"
|
msgstr "עריכה"
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr "אפקטים"
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr "דוא״ל"
|
msgstr "דוא״ל"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||||
msgid "Enable 2FA"
|
msgid "Enable 2FA"
|
||||||
msgstr "הפעלת אימות דו־שלבי"
|
msgstr "הפעלת אימות דו־שלבי"
|
||||||
|
|
||||||
@ -517,7 +545,7 @@ msgstr "נא להקליד אחת מבין 10 הקודים למטרות גיבו
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:63
|
||||||
msgid "Enter Phosphor Icon"
|
msgid "Enter Phosphor Icon"
|
||||||
msgstr ""
|
msgstr "הזן את סמל הזרחן"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:170
|
||||||
msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly."
|
msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly."
|
||||||
@ -531,6 +559,10 @@ msgstr "נא למלא את הסיסמה החד־פעמית שסופקה על י
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr "נא למלא את כתובת הדוא״ל שלך ואנו נשלח לך קישור לאיפוס הסיסמה שלך אם החשבון קיים."
|
msgstr "נא למלא את כתובת הדוא״ל שלך ואנו נשלח לך קישור לאיפוס הסיסמה שלך אם החשבון קיים."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr "שגיאה {statusCode}"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr "שגיאות"
|
msgstr "שגיאות"
|
||||||
@ -544,6 +576,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
|||||||
msgstr "אפשר לעיין בתבניות שזמינות ב־Reactive Resume ולצפות בקורות החיים מעוצבים בהן. הן גם יכולות לשמש דוגמאות כדי לסייע בהכוונת יצירת קורות החיים הבאים שלך."
|
msgstr "אפשר לעיין בתבניות שזמינות ב־Reactive Resume ולצפות בקורות החיים מעוצבים בהן. הן גם יכולות לשמש דוגמאות כדי לסייע בהכוונת יצירת קורות החיים הבאים שלך."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr "ייצוא"
|
msgstr "ייצוא"
|
||||||
@ -564,19 +597,19 @@ msgstr "ואחרונים חביבים,"
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr "תיקון איות ודקדוק"
|
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"
|
msgid "Font Family"
|
||||||
msgstr "משפחת גופנים"
|
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"
|
msgid "Font Size"
|
||||||
msgstr "גודל כתב"
|
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"
|
msgid "Font Subset"
|
||||||
msgstr "קבוצת משנה של גופנים"
|
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"
|
msgid "Font Variants"
|
||||||
msgstr "הגווני גופן"
|
msgstr "הגווני גופן"
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr "הגווני גופן"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "למשל, מידע לגבי לאילו חברות שלחת את קורות החיים האלה או את תיאורי התפקיד אפשר לתעד כאן."
|
msgstr "למשל, מידע לגבי לאילו חברות שלחת את קורות החיים האלה או את תיאורי התפקיד אפשר לתעד כאן."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "לשכוח"
|
msgstr "לשכוח"
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr "שכחת את הסיסמה שלך?"
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr "תבנית"
|
msgstr "תבנית"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr "מצאת תקלה או שיש לך רעיון ליכולת חדשה?"
|
msgstr "מצאת תקלה או שיש לך רעיון ליכולת חדשה?"
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr "מצאת תקלה או שיש לך רעיון ליכולת חדשה?"
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr "חינם, לעד"
|
msgstr "חינם, לעד"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr "ידידותי"
|
msgstr "ידידותי"
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr "נא להעניק לקורות החיים הישנים שלך שם חד
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr "מעבר ללוח בקרה"
|
msgstr "מעבר ללוח בקרה"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr "לעמוד הבית"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr "Google"
|
msgstr "Google"
|
||||||
@ -651,7 +688,7 @@ msgstr "Google"
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr "גווני אפור"
|
msgstr "גווני אפור"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr "רשת"
|
msgstr "רשת"
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr "כאן אפשר לעדכן את הפרופיל שלך כדי להתאים ולהפוך את החוויה שלך לאישית יותר."
|
msgstr "כאן אפשר לעדכן את הפרופיל שלך כדי להתאים ולהפוך את החוויה שלך לאישית יותר."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "מוסתר"
|
msgstr "מוסתר"
|
||||||
@ -677,7 +714,7 @@ msgstr "מוסתר"
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr "הסתרה"
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr "הסתרת סמלים"
|
msgstr "הסתרת סמלים"
|
||||||
|
|
||||||
@ -734,7 +771,7 @@ msgstr "שיפור הכתיבה"
|
|||||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||||
msgstr "אם לא הצלחת לסרוק את קוד ה־QR הזה, תמיד אפשר להעתיק ולהדביק את הקישור הזה לתוך יישומון המאמת שלך."
|
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."
|
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||||
msgstr "בסעיף הזה, אפשר לשנות את הסיסמה שלך ולהפעיל/להשבית אימות דו־שלבי."
|
msgstr "בסעיף הזה, אפשר לשנות את הסיסמה שלך ולהפעיל/להשבית אימות דו־שלבי."
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ msgid "In this section, you can delete your account and all the data associated
|
|||||||
msgstr "בסעיף הזה, אפשר למחוק את החשבון שלך ואת כל הנתונים שמשויכים למשתמש שלך, אך נא לשים לב ש<0>זאת פעולה בלתי הפיכה</0>."
|
msgstr "בסעיף הזה, אפשר למחוק את החשבון שלך ואת כל הנתונים שמשויכים למשתמש שלך, אך נא לשים לב ש<0>זאת פעולה בלתי הפיכה</0>."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "מידע"
|
msgstr "מידע"
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr "israel.israeli@israel.gov.il"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "מילות מפתח"
|
msgstr "מילות מפתח"
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr "העדכון האחרון היה ב־{lastUpdated}"
|
msgstr "העדכון האחרון היה ב־{lastUpdated}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "פריסה"
|
msgstr "פריסה"
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr "מכתב"
|
msgstr "מכתב"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr "רמה"
|
msgstr "רמה"
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr "בהירה"
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr "ערכת עיצוב בהירה או כהה"
|
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"
|
msgid "Line Height"
|
||||||
msgstr "גובה שורה"
|
msgstr "גובה שורה"
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr "גובה שורה"
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr "LinkedIn, JSON Resume וכו׳."
|
msgstr "LinkedIn, JSON Resume וכו׳."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr "רשימה"
|
msgstr "רשימה"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr "יציאה"
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr "איבדת את המכשיר שלך?"
|
msgstr "איבדת את המכשיר שלך?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr "ראשי"
|
msgstr "ראשי"
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr "מרץ 2023"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr "מרץ 2023 - כרגע"
|
msgstr "מרץ 2023 - כרגע"
|
||||||
@ -923,26 +962,26 @@ msgstr "מרץ 2023 - כרגע"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "מרווח"
|
msgstr "מרווח"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr "אסימונים מקסימליים"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:48
|
#: apps/client/src/pages/home/sections/features/index.tsx:48
|
||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "רישיון MIT"
|
msgstr "רישיון MIT"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr "מודל"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr "שם"
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "רשת"
|
msgstr "רשת"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||||
msgid "New Password"
|
msgid "New Password"
|
||||||
msgstr "סיסמה חדשה"
|
msgstr "סיסמה חדשה"
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr "לתשומת ליבך: זה ישפר את ההגנה על החשבון שלך."
|
msgstr "לתשומת ליבך: זה ישפר את ההגנה על החשבון שלך."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "הערות"
|
msgstr "הערות"
|
||||||
@ -1009,16 +1049,16 @@ msgstr "OpenAI לא החזיר אפשרויות לטקסט שלך."
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "שילוב מול OpenAI"
|
msgstr "שילוב מול OpenAI"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
msgstr ""
|
msgstr "OpenAI/Azure OpenAI/Ollama אינטגרציה"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama Integration"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr ""
|
msgstr "מפתח API של OpenAI/Ollama"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: 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"
|
msgid "Options"
|
||||||
msgstr "אפשרויות"
|
msgstr "אפשרויות"
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr "ארגון"
|
msgstr "ארגון"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "עמוד"
|
msgstr "עמוד"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr ""
|
msgstr "דף {pageNumber}"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr "סיסמה"
|
msgstr "סיסמה"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr "PDF"
|
msgstr "PDF"
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr "נעזר ב־<0>Simple Icons</0>"
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr "צבע עיקרי"
|
msgstr "צבע עיקרי"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr ""
|
msgstr "מדיניות פרטיות"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr "מקצועי"
|
msgstr "מקצועי"
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr "ציבורי"
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "מוציא לאור"
|
msgstr "מוציא לאור"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr "דיווח על בעיה"
|
msgstr "דיווח על בעיה"
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr "דיווח על בעיה"
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr "מיזם Reactive Resume משגשג בזכות הקהילה התוססת
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "ביצוע מחדש"
|
msgstr "ביצוע מחדש"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "הסרה"
|
msgstr "הסרה"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr "הסרת עמוד"
|
msgstr "הסרת עמוד"
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr "שליחת קישור לאימות בדוא״ל מחדש"
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr "איפוס"
|
msgstr "איפוס"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr "איפוס פריסה"
|
msgstr "איפוס פריסה"
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr "איפוס תקריב"
|
msgstr "איפוס תקריב"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr "מסמכי קורות חיים"
|
msgstr "מסמכי קורות חיים"
|
||||||
|
|
||||||
@ -1237,13 +1275,13 @@ msgstr "מעוגל"
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "שמירת שינויים"
|
msgstr "שמירת שינויים"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr "שמור באופן מקומי"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr "נשמר"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:168
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:168
|
||||||
msgid "Scan the QR code below with your authenticator app to setup 2FA on your account."
|
msgid "Scan the QR code below with your authenticator app to setup 2FA on your account."
|
||||||
@ -1256,21 +1294,21 @@ msgstr "ציון"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:104
|
#: apps/client/src/pages/builder/_components/toolbar.tsx:104
|
||||||
msgid "Scroll to Pan"
|
msgid "Scroll to Pan"
|
||||||
msgstr ""
|
msgstr "גלול כדי להזיז"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:104
|
#: apps/client/src/pages/builder/_components/toolbar.tsx:104
|
||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr ""
|
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"
|
msgid "Search for a font family"
|
||||||
msgstr "חיפוש משפחת גופנים"
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr "חיפוש תת־קבוצת גופנים"
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr "חיפוש הגוון גופן"
|
msgstr "חיפוש הגוון גופן"
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr "חיפוש שפה"
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr "הגנה עם אימות דו־שלבי"
|
msgstr "הגנה עם אימות דו־שלבי"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "אבטחה"
|
msgstr "אבטחה"
|
||||||
|
|
||||||
@ -1294,13 +1332,13 @@ msgstr "אירוח עצמי עם Docker"
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr "שליחת דוא״ל"
|
msgstr "שליחת דוא״ל"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr "שליחה הודעה אליי"
|
msgstr "שליחה הודעה אליי"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:97
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:97
|
||||||
msgid "Separate Links"
|
msgid "Separate Links"
|
||||||
msgstr ""
|
msgstr "קישורים נפרדים"
|
||||||
|
|
||||||
#: apps/client/src/components/user-options.tsx:32
|
#: apps/client/src/components/user-options.tsx:32
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:92
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:92
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr "הקמת אימות דו־שלבי לחשבון שלך"
|
msgstr "הקמת אימות דו־שלבי לחשבון שלך"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr "שיתוף"
|
msgstr "שיתוף"
|
||||||
@ -1330,7 +1369,7 @@ msgstr "הצגת שורת מעבר"
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr "הצגת מספרי שורות"
|
msgstr "הצגת מספרי שורות"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "סרגל צד"
|
msgstr "סרגל צד"
|
||||||
|
|
||||||
@ -1367,7 +1406,7 @@ msgstr "הרשמה"
|
|||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:74
|
#: apps/client/src/pages/auth/login/page.tsx:74
|
||||||
msgid "Signing in via email is currently disabled by the administrator."
|
msgid "Signing in via email is currently disabled by the administrator."
|
||||||
msgstr ""
|
msgstr "הכניסה באמצעות דוא\"ל מושבתת כרגע על ידי המנהל."
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:82
|
#: apps/client/src/pages/auth/register/page.tsx:82
|
||||||
msgid "Signups are currently disabled by the administrator."
|
msgid "Signups are currently disabled by the administrator."
|
||||||
@ -1408,6 +1447,7 @@ msgid "Start building your resume by giving it a name."
|
|||||||
msgstr "אפשר להתחיל לבנות את קורות החיים שלך על ידי ציון שם."
|
msgstr "אפשר להתחיל לבנות את קורות החיים שלך על ידי ציון שם."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr "סטטיסטיקה"
|
msgstr "סטטיסטיקה"
|
||||||
@ -1422,17 +1462,17 @@ msgstr "יש לאחסן את הקודים למטרות גיבוי בצורה מ
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr "תקציר"
|
msgstr "תקציר"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr "אפשר לתמוך ביישום על ידי תרומה בכל דרך שאפשרית לך!"
|
msgstr "אפשר לתמוך ביישום על ידי תרומה בכל דרך שאפשרית לך!"
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr "תמיכה ב־Reactive Resume"
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr "תמיכה בגודלי הדפים A4/מכתב"
|
msgstr "תמיכה בגודלי הדפים A4/מכתב"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr "עבור למצב כהה"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr "עבור למצב בהיר"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr "מערכת"
|
msgstr "מערכת"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "תבנית"
|
msgstr "תבנית"
|
||||||
@ -1465,15 +1514,20 @@ msgstr "המלצות"
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr "צבע כתב"
|
msgstr "צבע כתב"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
msgstr "הסיסמאות שמילאת לא זהות."
|
msgstr "הדף שאתה מחפש אינו קיים."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
|
msgstr "הבקשה אינה חוקית."
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: 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."
|
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||||
msgstr "קורות החיים שברצונך לעדכן נעולים, נא לשחרר אותם כדי לבצע שינויים."
|
msgstr "קורות החיים שברצונך לעדכן נעולים, נא לשחרר אותם כדי לבצע שינויים."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
#: 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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,7 @@ msgstr "מעקב אחר צפיות והורדות"
|
|||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr "אימות דו־שלבי"
|
msgstr "אימות דו־שלבי"
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr "סוג הלימודים"
|
msgstr "סוג הלימודים"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr "טיפוגרפיה"
|
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"
|
msgid "Underline Links"
|
||||||
msgstr "הוספת קווים מתחת לקישורים"
|
msgstr "הוספת קווים מתחת לקישורים"
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr "כתובת"
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr "כתובת חייבת להיפתח ב־https://"
|
msgstr "כתובת חייבת להיפתח ב־https://"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr "השתמש ב-Azure OpenAI"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr "השתמש בערכת הנושא של המערכת"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,13 +1714,13 @@ msgstr "גרסה 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "צפיות"
|
msgstr "צפיות"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "גלוי"
|
msgstr "גלוי"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70
|
||||||
msgid "Visit <0>Phosphor Icons</0> for a list of available icons"
|
msgid "Visit <0>Phosphor Icons</0> for a list of available icons"
|
||||||
msgstr ""
|
msgstr "בקרו <0>ב-Phosphor Icons</0> לקבלת רשימת הסמלים הזמינים."
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
@ -1665,11 +1728,11 @@ msgstr "אנו מאמתים את כתובת הדוא״ל שלך רק כדי לו
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr "אתר אינטרנט"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "מה חדש בגרסה העדכנית"
|
msgstr "מה חדש בגרסה העדכנית"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr "אין לך הרשאה לגשת לדף זה."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "אפשר להוסיף מספר מילות מפתח על ידי הפרדתן בפסיק או בלחיצה על Enter."
|
msgstr "אפשר להוסיף מספר מילות מפתח על ידי הפרדתן בפסיק או בלחיצה על Enter."
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr "אפשר להוסיף מספר מילות מפתח על ידי הפרד
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "אפשר גם למלא את שם המשתמש שלך."
|
msgstr "אפשר גם למלא את שם המשתמש שלך."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr ""
|
msgstr "ניתן גם לבצע אינטגרציה עם Azure OpenAI על-ידי הפעלת תיבת <0>הסימון 'השתמש ב-Azure OpenAI'</0> והגדרת כתובת ה-URL של המשאב למשאב Azure OpenAI שלך: <1>https://your-resource.openai.azure.com</1>. הגדר את שם הפריסה בשדה 'מודל' וציין את גרסת ה-API המתאימה לפריסת Azure שלך."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
msgstr "אפשר להשתמש ב־API של OpenAI כדי לסייע לך לייצא תוכן, או לשפר את הכתיבה שלך בעת כתיבת קורות החיים שלך."
|
msgstr "ניתן גם לבצע אינטגרציה עם Ollama פשוט על ידי הגדרת מפתח ה-API<0>tosk-1234567890abcdef</0> וכתובת ה-URL הבסיסית לכתובת ה-URL של Ollama,<1>כלומרhttp://localhost:11434/v1</1>. ניתן גם לבחור מודלים ולהגדיר את מספר האסימונים המרבי בהתאם להעדפותיך."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
|
msgstr "אתה יכול להשתמש ב-OpenAI API, Azure OpenAI או Ollama כדי לעזור לך ליצור תוכן או לשפר את הכתיבה שלך בזמן שאתה כותב את קורות החיים שלך."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "אפשר לעקוב אחר מספר הצפיות או אחר ההורדות של קורות החיים על ידי הפעלת שיתוף ציבורי."
|
msgstr "אפשר לעקוב אחר מספר הצפיות או אחר ההורדות של קורות החיים על ידי הפעלת שיתוף ציבורי."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr "אין לך הרשאה לגשת לדף זה."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "יש לך אפשרות <0>לקבל מפתח API משלך ל־OpenAI</0>. המפתח הזה מאפשר לך למנף את ה־API כפי שנראה לך לנכון. לחלופין, כדי להשבית את אפשרויות הבינה המלאכותית לחלוטין ב־Reactive Resume, אפשר פשוט להסיר את המפתח מההגדרות שלך."
|
msgstr "יש לך אפשרות <0>לקבל מפתח API משלך ל־OpenAI</0>. המפתח הזה מאפשר לך למנף את ה־API כפי שנראה לך לנכון. לחלופין, כדי להשבית את אפשרויות הבינה המלאכותית לחלוטין ב־Reactive Resume, אפשר פשוט להסיר את המפתח מההגדרות שלך."
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr "קיבלת הודעה!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "החשבון וכל הנתונים שלך נמחקו בהצלחה. להתראות ובהצלחה!"
|
msgstr "החשבון וכל הנתונים שלך נמחקו בהצלחה. להתראות ובהצלחה!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "מפתח ה־API שלך מאוחסן בדפדפן מקומית ונעשה בו שימוש רק בעת שליחת בקשות ל־OpenAI דרך ה־SDK הרשמי שלהם. אנו מתחייבים שהמפתח שלך לא מועבר לשרת חיצוני מלבד למטרות תפעול השירותים של OpenAI."
|
msgstr "מפתח ה־API שלך מאוחסן בדפדפן מקומית ונעשה בו שימוש רק בעת שליחת בקשות ל־OpenAI דרך ה־SDK הרשמי שלהם. אנו מתחייבים שהמפתח שלך לא מועבר לשרת חיצוני מלבד למטרות תפעול השירותים של OpenAI."
|
||||||
|
|
||||||
@ -1733,7 +1808,7 @@ msgstr "כתובת הדוא״ל שלך עברה אימות בהצלחה."
|
|||||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||||
msgstr "מפתח ה־API של OpenAI טרם הוגדר. נא לגשת להגדרות החשבון שלך ולהפעיל את השילוב מול OpenAI."
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr "הסיסמה שלך עודכנה בהצלחה."
|
msgstr "הסיסמה שלך עודכנה בהצלחה."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: hi\n"
|
"Language: hi\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-08 00:10\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Hindi\n"
|
"Language-Team: Hindi\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -30,27 +30,27 @@ msgstr "चुनने के लिए {templatesCount} बायोडाट
|
|||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr "{value, plural, one {स्तंभ} other {स्तम्भ}}"
|
msgstr "{value, plural, one {स्तंभ} other {स्तम्भ}}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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>मैंने अपने खाली समय के दौरान, अन्य महान ओपन-सोर्स योगदानकर्ताओं की भरपूर मदद से, ज्यादातर अकेले ही रिएक्टिव रेज़्यूमे बनाया।</0> <1>यदि आपको ऐप पसंद है और आप इसे हमेशा के लिए मुफ़्त रखने में सहायता करना चाहते हैं, तो कृपया जो कुछ भी आप दे सकते हैं उसे दान करें।</1>"
|
msgstr "<0>मैंने अपने खाली समय के दौरान, अन्य महान ओपन-सोर्स योगदानकर्ताओं की भरपूर मदद से, ज्यादातर अकेले ही रिएक्टिव रेज़्यूमे बनाया।</0> <1>यदि आपको ऐप पसंद है और आप इसे हमेशा के लिए मुफ़्त रखने में सहायता करना चाहते हैं, तो कृपया जो कुछ भी आप दे सकते हैं उसे दान करें।</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 "<0>ध्यान दें:</0> OpenAI API का उपयोग करके, आप <1>उपयोग की शर्तों को स्वीकार करते हैं</1> और <2>गोपनीयता नीति</2> OpenAI द्वारा उल्लिखित। कृपया ध्यान दें कि रिएक्टिव रेज़्यूमे सेवा के किसी भी अनुचित या अनधिकृत उपयोग के लिए कोई ज़िम्मेदारी नहीं लेता है, और इसके परिणामस्वरूप होने वाले किसी भी परिणाम या देनदारियां पूरी तरह से उपयोगकर्ता पर निर्भर करती हैं।"
|
msgstr "<0>ध्यान दें:</0> OpenAI API का उपयोग करके, आप <1>उपयोग की शर्तों को स्वीकार करते हैं</1> और <2>गोपनीयता नीति</2> OpenAI द्वारा उल्लिखित। कृपया ध्यान दें कि रिएक्टिव रेज़्यूमे सेवा के किसी भी अनुचित या अनधिकृत उपयोग के लिए कोई ज़िम्मेदारी नहीं लेता है, और इसके परिणामस्वरूप होने वाले किसी भी परिणाम या देनदारियां पूरी तरह से उपयोगकर्ता पर निर्भर करती हैं।"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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>"
|
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."
|
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||||
msgstr "<0>दो-कारक प्रमाणीकरण वर्तमान में अक्षम है।</0> आप अपने खाते में एक प्रमाणक ऐप जोड़कर इसे सक्षम कर सकते हैं।"
|
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."
|
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||||
msgstr "<0>दो-कारक प्रमाणीकरण सक्षम है।</0> हर बार साइन इन करने पर आपसे एक कोड दर्ज करने के लिए कहा जाएगा।"
|
msgstr "<0>दो-कारक प्रमाणीकरण सक्षम है।</0> हर बार साइन इन करने पर आपसे एक कोड दर्ज करने के लिए कहा जाएगा।"
|
||||||
|
|
||||||
@ -102,8 +102,8 @@ msgstr "खाता"
|
|||||||
msgid "Add a custom field"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "एक नया आइटम जोड़ें"
|
msgstr "एक नया आइटम जोड़ें"
|
||||||
@ -117,7 +117,7 @@ msgstr "एक नया आइटम जोड़ें"
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr "एक नया अनुभाग जोड़ें"
|
msgstr "एक नया अनुभाग जोड़ें"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr "नया पेज जोड़ें"
|
msgstr "नया पेज जोड़ें"
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr "क्या आपके पास पहले से एक खात
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr "फ़ाइल बनाते समय कोई त्रुटि आई"
|
msgstr "फ़ाइल बनाते समय कोई त्रुटि आई"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr "एक आंतरिक सर्वर त्रुटि हुई है।"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr "एक अप्रत्याशित त्रुटि हुई है |"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr "और भी कई..."
|
msgstr "और भी कई..."
|
||||||
@ -191,6 +199,18 @@ msgstr "{languagesCount} भाषाओं में उपलब्ध है"
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr "पुरस्कार देने वाला"
|
msgstr "पुरस्कार देने वाला"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,9 +229,9 @@ msgstr "बैकअप कोड"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "बैकअप कोड में केवल छोटे अक्षर या संख्याएँ हो सकती हैं, और बिल्कुल 10 अक्षर होने चाहिए।"
|
msgstr "बैकअप कोड में केवल छोटे अक्षर या संख्याएँ हो सकती हैं, और बिल्कुल 10 अक्षर होने चाहिए।"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr "बेस URL"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
#: 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."
|
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||||
@ -246,8 +266,8 @@ msgstr "समुदाय द्वारा, समुदाय के लि
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "रद्द करें"
|
msgstr "रद्द करें"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr "साधारण"
|
msgstr "साधारण"
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr "साधारण"
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr "केंद्र आर्टबोर्ड"
|
msgstr "केंद्र आर्टबोर्ड"
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr "पासवर्ड बदलिए"
|
msgstr "पासवर्ड बदलिए"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr "तान बदलें"
|
msgstr "तान बदलें"
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr "कॉलम"
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr "कंपनी"
|
msgstr "कंपनी"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr "आत्मविश्वासी"
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "जारी रखें"
|
msgstr "जारी रखें"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "कॉपी करें"
|
msgstr "कॉपी करें"
|
||||||
|
|
||||||
@ -351,10 +371,15 @@ msgstr "अभी एक बनाएं"
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr "नमूना बायोडाटा बनाएं"
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr ""
|
msgstr "कस्टम सीएसएस"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:62
|
#: apps/client/src/pages/home/sections/features/index.tsx:62
|
||||||
msgid "Custom resume sections"
|
msgid "Custom resume sections"
|
||||||
@ -386,10 +411,10 @@ msgstr "गहरी"
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "दिनांक"
|
msgstr "दिनांक"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "तारीख या तारीख सीमा"
|
msgstr "तारीख या तारीख सीमा"
|
||||||
@ -407,11 +432,15 @@ msgstr "हटाएं"
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr "खाता हटाएँ|"
|
msgstr "खाता हटाएँ|"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "विवरण"
|
msgstr "विवरण"
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr "सिंगल/मल्टी पेज बायोडाटा ड
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr "अक्षम करें"
|
msgstr "अक्षम करें"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||||
msgid "Disable 2FA"
|
msgid "Disable 2FA"
|
||||||
msgstr "2FA निलम्बित करें"
|
msgstr "2FA निलम्बित करें"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr "रद्द करें"
|
msgstr "रद्द करें"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "आलेख"
|
msgstr "आलेख"
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr "आलेख"
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr "आपका खाता नहीं है?"
|
msgstr "आपका खाता नहीं है?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr "पता नहीं कहाँ से शुरू करें? दस्तावेज़ पढ़ें"
|
msgstr "पता नहीं कहाँ से शुरू करें? दस्तावेज़ पढ़ें"
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr "पता नहीं कहाँ से शुरू करें?
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr "अपनी भाषा नहीं देखते? <0>ऐप का अनुवाद करने में सहायता करें।</0>"
|
msgstr "अपनी भाषा नहीं देखते? <0>ऐप का अनुवाद करने में सहायता करें।</0>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr "रिएक्टिव रेज़्यूमे के लिए दान करें"
|
msgstr "रिएक्टिव रेज़्यूमे के लिए दान करें"
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr "रिएक्टिव रेज़्यूमे के लिए
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr "अपने बायोडाटा का JSON स्नैपशॉट डाउनलोड करें। इस फ़ाइल का उपयोग भविष्य में आपका बायोडाटा आयात करने के लिए किया जा सकता है, या सहयोग करने के लिए इसे दूसरों के साथ साझा भी किया जा सकता है।"
|
msgstr "अपने बायोडाटा का JSON स्नैपशॉट डाउनलोड करें। इस फ़ाइल का उपयोग भविष्य में आपका बायोडाटा आयात करने के लिए किया जा सकता है, या सहयोग करने के लिए इसे दूसरों के साथ साझा भी किया जा सकता है।"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
msgstr "अपने बायोडाटा का एक पीडीएफ डाउनलोड करें। इस फ़ाइल का उपयोग आपके बायोडाटा को प्रिंट करने, भर्तीकर्ताओं को भेजने या नौकरी पोर्टल पर अपलोड करने के लिए किया जा सकता है।"
|
msgstr "अपने बायोडाटा का एक पीडीएफ डाउनलोड करें। इस फ़ाइल का उपयोग आपके बायोडाटा को प्रिंट करने, भर्तीकर्ताओं को भेजने या नौकरी पोर्टल पर अपलोड करने के लिए किया जा सकता है।"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr "डाउनलोड PDF"
|
msgstr "डाउनलोड PDF"
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr "किसी मौजूदा आइटम का नक़ल बन
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "किसी मौजूदा आइटम का नक़ल बनाएं"
|
msgstr "किसी मौजूदा आइटम का नक़ल बनाएं"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "एडिट करें"
|
msgstr "एडिट करें"
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr "प्रभाव"
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr "ई-मेल"
|
msgstr "ई-मेल"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||||
msgid "Enable 2FA"
|
msgid "Enable 2FA"
|
||||||
msgstr "2FA चालू करें"
|
msgstr "2FA चालू करें"
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr "नीचे आपके प्रमाणक ऐप द्वार
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr "अपना ईमेल पता दर्ज करें और यदि खाता मौजूद है तो हम आपको अपना पासवर्ड रीसेट करने के लिए एक लिंक भेजेंगे।"
|
msgstr "अपना ईमेल पता दर्ज करें और यदि खाता मौजूद है तो हम आपको अपना पासवर्ड रीसेट करने के लिए एक लिंक भेजेंगे।"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr "त्रुटि"
|
msgstr "त्रुटि"
|
||||||
@ -544,6 +576,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
|||||||
msgstr "रिएक्टिव रेज़्यूमे में उपलब्ध टेम्पलेट्स का अन्वेषण करें और उनके साथ तैयार किए गए रेज़्यूमे देखें। वे आपके अगले बायोडाटा के निर्माण में मार्गदर्शन के लिए उदाहरण के रूप में भी काम कर सकते हैं।"
|
msgstr "रिएक्टिव रेज़्यूमे में उपलब्ध टेम्पलेट्स का अन्वेषण करें और उनके साथ तैयार किए गए रेज़्यूमे देखें। वे आपके अगले बायोडाटा के निर्माण में मार्गदर्शन के लिए उदाहरण के रूप में भी काम कर सकते हैं।"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr "निर्यात"
|
msgstr "निर्यात"
|
||||||
@ -564,19 +597,19 @@ msgstr "अंत में,"
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr "वर्तनी और व्याकरण ठीक करें"
|
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"
|
msgid "Font Family"
|
||||||
msgstr "फ़ॉन्ट फ़ैमिली"
|
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"
|
msgid "Font Size"
|
||||||
msgstr "फ़ॉन्ट आकार"
|
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"
|
msgid "Font Subset"
|
||||||
msgstr "फ़ॉन्ट उपसमुच्चय"
|
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"
|
msgid "Font Variants"
|
||||||
msgstr "फ़ॉन्ट प्रकार"
|
msgstr "फ़ॉन्ट प्रकार"
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr "फ़ॉन्ट प्रकार"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "उदाहरण के लिए, आपने किन कंपनियों को यह बायोडाटा भेजा है, इसकी जानकारी या नौकरी विवरण के लिंक यहां नोट किए जा सकते हैं।"
|
msgstr "उदाहरण के लिए, आपने किन कंपनियों को यह बायोडाटा भेजा है, इसकी जानकारी या नौकरी विवरण के लिंक यहां नोट किए जा सकते हैं।"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "हटाएं"
|
msgstr "हटाएं"
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr "पासवर्ड भूल गए हैं?"
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr "फॉर्मेट"
|
msgstr "फॉर्मेट"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr "कोई बग मिला, या किसी नई सुविधा के बारे में कोई विचार है?"
|
msgstr "कोई बग मिला, या किसी नई सुविधा के बारे में कोई विचार है?"
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr "कोई बग मिला, या किसी नई सुवि
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr "हमेशा के लिए मुफ़्त"
|
msgstr "हमेशा के लिए मुफ़्त"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr "मित्रतापूर्ण"
|
msgstr "मित्रतापूर्ण"
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr "अपने पुराने बायोडाटा को नय
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr "डैशबोर्ड पर जाएँ"
|
msgstr "डैशबोर्ड पर जाएँ"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr "मुखपृष्ठ पर जाएं"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr "गूगल"
|
msgstr "गूगल"
|
||||||
@ -651,7 +688,7 @@ msgstr "गूगल"
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr "ग्रेस्केल"
|
msgstr "ग्रेस्केल"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr "ग्रिड"
|
msgstr "ग्रिड"
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr "यहां, आप अपने अनुभव को अनुकूलित और वैयक्तिकृत करने के लिए अपनी प्रोफ़ाइल को अपडेट कर सकते हैं।"
|
msgstr "यहां, आप अपने अनुभव को अनुकूलित और वैयक्तिकृत करने के लिए अपनी प्रोफ़ाइल को अपडेट कर सकते हैं।"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "छुपा हुआ"
|
msgstr "छुपा हुआ"
|
||||||
@ -677,7 +714,7 @@ msgstr "छुपा हुआ"
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr "छुपायें"
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr "ऑइकन छुपायें"
|
msgstr "ऑइकन छुपायें"
|
||||||
|
|
||||||
@ -734,7 +771,7 @@ msgstr "लेखन में सुधार करें"
|
|||||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||||
msgstr "यदि आप इस क्यूआर कोड को स्कैन करने में असमर्थ हैं, तो आप इस लिंक को अपने प्रमाणक ऐप में कॉपी-पेस्ट भी कर सकते हैं।"
|
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."
|
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||||
msgstr "इस अनुभाग में, आप अपना पासवर्ड बदल सकते हैं और दो-कारक प्रमाणीकरण को सक्षम/अक्षम कर सकते हैं।"
|
msgstr "इस अनुभाग में, आप अपना पासवर्ड बदल सकते हैं और दो-कारक प्रमाणीकरण को सक्षम/अक्षम कर सकते हैं।"
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ msgid "In this section, you can delete your account and all the data associated
|
|||||||
msgstr "इस अनुभाग में, आप अपना खाता और अपने उपयोगकर्ता से जुड़े सभी डेटा को हटा सकते हैं, लेकिन कृपया ध्यान रखें कि <0>यह कार्रवाई अपरिवर्तनीय है</0>."
|
msgstr "इस अनुभाग में, आप अपना खाता और अपने उपयोगकर्ता से जुड़े सभी डेटा को हटा सकते हैं, लेकिन कृपया ध्यान रखें कि <0>यह कार्रवाई अपरिवर्तनीय है</0>."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "जानकारी"
|
msgstr "जानकारी"
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr "john.doe@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "जेसन"
|
msgstr "जेसन"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "खोजशब्द:"
|
msgstr "खोजशब्द:"
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr "अंतिम अद्यतन {lastUpdated}"
|
msgstr "अंतिम अद्यतन {lastUpdated}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "लेआउट"
|
msgstr "लेआउट"
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr "अक्षर"
|
msgstr "अक्षर"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr "स्तर"
|
msgstr "स्तर"
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr "हल्का रंग"
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr "प्रकाश या अंधेरा थीम"
|
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"
|
msgid "Line Height"
|
||||||
msgstr "पंक्ति ऊँचाई"
|
msgstr "पंक्ति ऊँचाई"
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr "पंक्ति ऊँचाई"
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr "लिंक्डइन, JSON बायोडाटा, आदि।"
|
msgstr "लिंक्डइन, JSON बायोडाटा, आदि।"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr "सूची"
|
msgstr "सूची"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr "लॉगआउट"
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr "क्या आपका उपकरण खो गया?"
|
msgstr "क्या आपका उपकरण खो गया?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr "मुख्य"
|
msgstr "मुख्य"
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr "मार्च 2023"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr "मार्च 2023 - वर्तमान"
|
msgstr "मार्च 2023 - वर्तमान"
|
||||||
@ -923,7 +962,7 @@ msgstr "मार्च 2023 - वर्तमान"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "अंतर"
|
msgstr "अंतर"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "मआईटी लाईसन्स"
|
msgstr "मआईटी लाईसन्स"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr "मॉडल"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr "नाम"
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "नेटवर्क"
|
msgstr "नेटवर्क"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||||
msgid "New Password"
|
msgid "New Password"
|
||||||
msgstr "नया पासवर्ड"
|
msgstr "नया पासवर्ड"
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr "नोट: इससे आपका खाता कम सुरक्षित हो जाएगा."
|
msgstr "नोट: इससे आपका खाता कम सुरक्षित हो जाएगा."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "टिप्पणियाँ"
|
msgstr "टिप्पणियाँ"
|
||||||
@ -1009,16 +1049,16 @@ msgstr "OpenAI ने आपके टेक्स्ट के लिए को
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "OpenAI एकीकरण"
|
msgstr "OpenAI एकीकरण"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
|
||||||
msgid "OpenAI/Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: 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"
|
msgid "Options"
|
||||||
msgstr "विकल्प"
|
msgstr "विकल्प"
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr "संगठन"
|
msgstr "संगठन"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "पृष्ठ"
|
msgstr "पृष्ठ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr "पासवर्ड"
|
msgstr "पासवर्ड"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr "पीडीएफ"
|
msgstr "पीडीएफ"
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr "<0>सिंपल आइकॉन</0> द्वारा संचा
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr "प्राथमिक रंग"
|
msgstr "प्राथमिक रंग"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr "गोपनीयता नीति"
|
msgstr "गोपनीयता नीति"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr "प्रोफेशनल"
|
msgstr "प्रोफेशनल"
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr "सार्वजनिक"
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "प्रकाशक"
|
msgstr "प्रकाशक"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr "एक मुद्दा उठाओ"
|
msgstr "एक मुद्दा उठाओ"
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr "एक मुद्दा उठाओ"
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr "रिएक्टिव रेज़्यूमे अपने जी
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "पुनः करें"
|
msgstr "पुनः करें"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "हटाएं"
|
msgstr "हटाएं"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr "हटाएँ पेज"
|
msgstr "हटाएँ पेज"
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr "ईमेल पुष्टिकरण लिंक पुनः भ
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr "रीसेट"
|
msgstr "रीसेट"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr "लेआउट रिसेट"
|
msgstr "लेआउट रिसेट"
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr "ज़ूम रीसेट करें"
|
msgstr "ज़ूम रीसेट करें"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr "बायोडाटा"
|
msgstr "बायोडाटा"
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr "गोल"
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "परिवर्तन सेव करें"
|
msgstr "परिवर्तन सेव करें"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr "स्थानीय रूप से सेव करें"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1262,15 +1300,15 @@ msgstr ""
|
|||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr ""
|
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"
|
msgid "Search for a font family"
|
||||||
msgstr "फ़ॉन्ट परिवार खोजें"
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr "फ़ॉन्ट उपसमुच्चय खोजें"
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr "फ़ॉन्ट प्रकार खोजें"
|
msgstr "फ़ॉन्ट प्रकार खोजें"
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr "एक भाषा के लिए खोज करे"
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr "दो-कारक प्रमाणीकरण के साथ सुरक्षित"
|
msgstr "दो-कारक प्रमाणीकरण के साथ सुरक्षित"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "सुरक्षा"
|
msgstr "सुरक्षा"
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr "डॉकर के साथ स्व-मेज़बान"
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr "ईमेल भेजें"
|
msgstr "ईमेल भेजें"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr "संदेश भेजें"
|
msgstr "संदेश भेजें"
|
||||||
|
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr "अपने खाते पर दो-कारक प्रमाणीकरण सेट करें"
|
msgstr "अपने खाते पर दो-कारक प्रमाणीकरण सेट करें"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr "साझा करना"
|
msgstr "साझा करना"
|
||||||
@ -1330,7 +1369,7 @@ msgstr "ब्रेक लाइन दिखाएँ"
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr "पृष्ठ क्रमांक दिखाएँ"
|
msgstr "पृष्ठ क्रमांक दिखाएँ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "साइडबार"
|
msgstr "साइडबार"
|
||||||
|
|
||||||
@ -1408,6 +1447,7 @@ msgid "Start building your resume by giving it a name."
|
|||||||
msgstr "अपना बायोडाटा एक नाम देकर बनाना शुरू करें।"
|
msgstr "अपना बायोडाटा एक नाम देकर बनाना शुरू करें।"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr "आंकड़े"
|
msgstr "आंकड़े"
|
||||||
@ -1422,17 +1462,17 @@ msgstr "अपने बैकअप कोड सुरक्षित रू
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr "सारांश"
|
msgstr "सारांश"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr "आप जो कर सकते हैं दान करके ऐप का समर्थन करें!"
|
msgstr "आप जो कर सकते हैं दान करके ऐप का समर्थन करें!"
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr "रिएक्टिव रेज़्यूमे समर्थन"
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr "A4/लेटर पेज फॉर्मेट का समर्थन करता है"
|
msgstr "A4/लेटर पेज फॉर्मेट का समर्थन करता है"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr "सिस्टम"
|
msgstr "सिस्टम"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "खाका"
|
msgstr "खाका"
|
||||||
@ -1465,15 +1514,20 @@ msgstr "प्रशंसापत्र"
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr "अक्षरों का रंग"
|
msgstr "अक्षरों का रंग"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
msgstr "आपके द्वारा दर्ज किया गया पासवर्ड मेल नहीं खाता है।"
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: 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."
|
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||||
msgstr "आप जिस बायोडाटा को अपडेट करना चाहते हैं वह लॉक है, यदि आप इसमें कोई बदलाव करना चाहते हैं तो कृपया अनलॉक करें।"
|
msgstr "आप जिस बायोडाटा को अपडेट करना चाहते हैं वह लॉक है, यदि आप इसमें कोई बदलाव करना चाहते हैं तो कृपया अनलॉक करें।"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
#: 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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,7 @@ msgstr "दृश्य और डाउनलोड ट्रैक करे
|
|||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr "दो कारक प्रमाणीकरण"
|
msgstr "दो कारक प्रमाणीकरण"
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr "अध्ययन का प्रकार"
|
msgstr "अध्ययन का प्रकार"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr "टाइपोग्राफी"
|
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"
|
msgid "Underline Links"
|
||||||
msgstr "लिंक को रेखांकित करें"
|
msgstr "लिंक को रेखांकित करें"
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr "यूआरएल"
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr "यूआरएल https:// से शुरू होना चाहिए"
|
msgstr "यूआरएल https:// से शुरू होना चाहिए"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,7 +1714,7 @@ msgstr "संस्करण 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "दृश्य"
|
msgstr "दृश्य"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "दर्शनीय"
|
msgstr "दर्शनीय"
|
||||||
|
|
||||||
@ -1665,11 +1728,11 @@ msgstr "हम आपके ईमेल पते को केवल यह
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr "वेबसाइट"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "नवीनतम संस्करण में नया क्या है"
|
msgstr "नवीनतम संस्करण में नया क्या है"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr ""
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "आप एकाधिक कीवर्ड को अल्पविराम से अलग करके या एंटर दबाकर जोड़ सकते हैं।"
|
msgstr "आप एकाधिक कीवर्ड को अल्पविराम से अलग करके या एंटर दबाकर जोड़ सकते हैं।"
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr "आप एकाधिक कीवर्ड को अल्पवि
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "आप अपना उपयोगकर्ता नाम भी दर्ज कर सकते हैं."
|
msgstr "आप अपना उपयोगकर्ता नाम भी दर्ज कर सकते हैं."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
msgstr "आप सामग्री तैयार करने में मदद के लिए या अपना बायोडाटा बनाते समय अपने लेखन को बेहतर बनाने के लिए OpenAI API का उपयोग कर सकते हैं।"
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "आप सार्वजनिक साझाकरण को सक्षम करके यह ट्रैक कर सकते हैं कि आपके बायोडाटा को कितने बार देखा गया है, या कितने लोगों ने बायोडाटा डाउनलोड किया है।"
|
msgstr "आप सार्वजनिक साझाकरण को सक्षम करके यह ट्रैक कर सकते हैं कि आपके बायोडाटा को कितने बार देखा गया है, या कितने लोगों ने बायोडाटा डाउनलोड किया है।"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "आपके पास <0>अपनी स्वयं की OpenAI API कुंजी प्राप्त करने का विकल्प है</0>. यह कुंजी आपको अपनी इच्छानुसार एपीआई का लाभ उठाने का अधिकार देती है। वैकल्पिक रूप से, यदि आप रिएक्टिव रेज़्यूमे में एआई सुविधाओं को पूरी तरह से अक्षम करना चाहते हैं, तो आप बस अपनी सेटिंग्स से कुंजी को हटा सकते हैं।"
|
msgstr "आपके पास <0>अपनी स्वयं की OpenAI API कुंजी प्राप्त करने का विकल्प है</0>. यह कुंजी आपको अपनी इच्छानुसार एपीआई का लाभ उठाने का अधिकार देती है। वैकल्पिक रूप से, यदि आप रिएक्टिव रेज़्यूमे में एआई सुविधाओं को पूरी तरह से अक्षम करना चाहते हैं, तो आप बस अपनी सेटिंग्स से कुंजी को हटा सकते हैं।"
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr "आपको मेल प्राप्त हुआ है"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "आपका खाता और आपका सारा डेटा सफलतापूर्वक हटा दिया गया है। अलविदा!"
|
msgstr "आपका खाता और आपका सारा डेटा सफलतापूर्वक हटा दिया गया है। अलविदा!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "आपकी एपीआई कुंजी ब्राउज़र के स्थानीय भंडारण में सुरक्षित रूप से संग्रहीत है और इसका उपयोग केवल उनके आधिकारिक एसडीके के माध्यम से OpenAI से अनुरोध करते समय किया जाता है। निश्चिंत रहें कि आपकी कुंजी OpenAI की सेवाओं के साथ इंटरैक्ट करने के अलावा किसी भी बाहरी सर्वर पर प्रसारित नहीं होती है।"
|
msgstr "आपकी एपीआई कुंजी ब्राउज़र के स्थानीय भंडारण में सुरक्षित रूप से संग्रहीत है और इसका उपयोग केवल उनके आधिकारिक एसडीके के माध्यम से OpenAI से अनुरोध करते समय किया जाता है। निश्चिंत रहें कि आपकी कुंजी OpenAI की सेवाओं के साथ इंटरैक्ट करने के अलावा किसी भी बाहरी सर्वर पर प्रसारित नहीं होती है।"
|
||||||
|
|
||||||
@ -1733,7 +1808,7 @@ msgstr "आपका ईमेल पता सफलतापूर्वक
|
|||||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||||
msgstr "आपकी OpenAI API कुंजी अभी तक सेट नहीं की गई है। OpenAI एकीकरण को सक्षम करने के लिए कृपया अपनी खाता सेटिंग में जाएं।"
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr "आपका पासवर्ड बदला जा चुका है।"
|
msgstr "आपका पासवर्ड बदला जा चुका है।"
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: hu\n"
|
"Language: hu\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:40\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Hungarian\n"
|
"Language-Team: Hungarian\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -30,27 +30,27 @@ msgstr "{templatesCount} önéletrajz sablon közül választhat"
|
|||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr "{value, plural, one {Column} other {Columns}}"
|
msgstr "{value, plural, one {Column} other {Columns}}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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>A Reactive Resumet nagyrészt egyedül építettem a szabadidőmben, sok segítséget kaptam más nagyszerű nyílt forráskódú közreműködőktől.</0><1>Ha tetszik az alkalmazás, és támogatni szeretnéd, hogy örökre ingyenes maradjon, kérlek, adományozz, amennyit csak tudsz.</1>"
|
msgstr "<0>A Reactive Resumet nagyrészt egyedül építettem a szabadidőmben, sok segítséget kaptam más nagyszerű nyílt forráskódú közreműködőktől.</0><1>Ha tetszik az alkalmazás, és támogatni szeretnéd, hogy örökre ingyenes maradjon, kérlek, adományozz, amennyit csak tudsz.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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>Biztos vagyok benne, hogy az alkalmazás nem tökéletes, de szeretném, ha az lenne.</0><1>Ha bármilyen problémával szembesültél az önéletrajzod elkészítése során, vagy van egy ötleted, ami segítene neked és más felhasználóknak az önéletrajzod könnyebb elkészítésében, írj egy problémát az adattárba, vagy küldj nekem egy e-mailt róla.</1>"
|
msgstr "<0>Biztos vagyok benne, hogy az alkalmazás nem tökéletes, de szeretném, ha az lenne.</0><1>Ha bármilyen problémával szembesültél az önéletrajzod elkészítése során, vagy van egy ötleted, ami segítene neked és más felhasználóknak az önéletrajzod könnyebb elkészítésében, írj egy problémát az adattárba, vagy küldj nekem egy e-mailt róla.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 "<0>Megjegyzés: </0>Az OpenAI API használatával Ön tudomásul veszi és elfogadja az OpenAI által meghatározott <1>felhasználási feltételeket</1> és <2>adatvédelmi szabályzatot</2>. Felhívjuk figyelmét, hogy a Reactive Resume nem vállal felelősséget a szolgáltatás nem megfelelő vagy jogosulatlan használatáért, és az ebből eredő következmények vagy felelősségek kizárólag a felhasználót terhelik."
|
msgstr "<0>Megjegyzés: </0>Az OpenAI API használatával Ön tudomásul veszi és elfogadja az OpenAI által meghatározott <1>felhasználási feltételeket</1> és <2>adatvédelmi szabályzatot</2>. Felhívjuk figyelmét, hogy a Reactive Resume nem vállal felelősséget a szolgáltatás nem megfelelő vagy jogosulatlan használatáért, és az ebből eredő következmények vagy felelősségek kizárólag a felhasználót terhelik."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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>"
|
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."
|
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."
|
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."
|
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."
|
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"
|
msgid "Add a custom field"
|
||||||
msgstr "Egyéni mező hozzáadása"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Elem hozzáadása"
|
msgstr "Elem hozzáadása"
|
||||||
@ -117,7 +117,7 @@ msgstr "Elem hozzáadása"
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr "Új szekció hozzáadása"
|
msgstr "Új szekció hozzáadása"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr "Új oldal hozzáadása"
|
msgstr "Új oldal hozzáadása"
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr "Van már fiókod?"
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr "Hiba történt a fájl ellenőrzése közben."
|
msgstr "Hiba történt a fájl ellenőrzése közben."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr "Belső szerverhiba történt."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr "Váratlan hiba történt."
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr "- És még sok más..."
|
msgstr "- És még sok más..."
|
||||||
@ -191,6 +199,18 @@ msgstr "{languagesCount} nyelven érhető el"
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr "Díjak"
|
msgstr "Díjak"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr "Azure API verzió"
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr "Az Azure OpenAI Bázis URL, telepítési név (modell) és API-verzió szükséges az Azure OpenAI használatakor."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr "Azure OpenAI erőforrás URL címe"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,7 +229,7 @@ msgstr "Biztonsági kód"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "A biztonsági kódok csak kisbetűket vagy számokat tartalmazhatnak, és pontosan 10 karakterből kell állniuk."
|
msgstr "A biztonsági kódok csak kisbetűket vagy számokat tartalmazhatnak, és pontosan 10 karakterből kell állniuk."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "Bázis URL"
|
msgstr "Bázis URL"
|
||||||
|
|
||||||
@ -246,8 +266,8 @@ msgstr "A közösség által, a közösségért."
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Mégsem"
|
msgstr "Mégsem"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr "Alkalmi"
|
msgstr "Alkalmi"
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr "Alkalmi"
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr "Vászon középre igazítása"
|
msgstr "Vászon középre igazítása"
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr "Nyelvváltás"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr "Jelszó módosítása"
|
msgstr "Jelszó módosítása"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr "Hangszínváltás"
|
msgstr "Hangszínváltás"
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr "Oszlopok"
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr "Cég"
|
msgstr "Cég"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr "Magabiztos"
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Tovább"
|
msgstr "Tovább"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Másolás"
|
msgstr "Másolás"
|
||||||
|
|
||||||
@ -351,7 +371,12 @@ msgstr "Létrehozás most"
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr "Minta önéletrajz létrehozása"
|
msgstr "Minta önéletrajz létrehozása"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||||
|
msgid "Current Password"
|
||||||
|
msgstr "Jelenlegi jelszó"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr "Egyéni CSS"
|
msgstr "Egyéni CSS"
|
||||||
@ -386,10 +411,10 @@ msgstr "Sötét"
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Dátum"
|
msgstr "Dátum"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Dátum vagy dátumtartomány"
|
msgstr "Dátum vagy dátumtartomány"
|
||||||
@ -407,11 +432,15 @@ msgstr "Törlés"
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr "Fiók törlése"
|
msgstr "Fiók törlése"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr "Telepítés neve"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Leírás"
|
msgstr "Leírás"
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr "Egy/több oldalas önéletrajzok tervezése"
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr "Letiltás"
|
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"
|
msgid "Disable 2FA"
|
||||||
msgstr "2FA Kikapcsolása"
|
msgstr "2FA Kikapcsolása"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr "Elvetés"
|
msgstr "Elvetés"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Dokumentáció"
|
msgstr "Dokumentáció"
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr "Dokumentáció"
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr "Nincs fiókod?"
|
msgstr "Nincs fiókod?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr "Nem tudod, hol kezd? Nézd meg a dokumentációt!"
|
msgstr "Nem tudod, hol kezd? Nézd meg a dokumentációt!"
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr "Nem tudod, hol kezd? Nézd meg a dokumentációt!"
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr "Nem találod a saját nyelved? <0>Segíts az alkalmazás lefordításában.</0>"
|
msgstr "Nem találod a saját nyelved? <0>Segíts az alkalmazás lefordításában.</0>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr "Adományozás a Reactive Resumenak"
|
msgstr "Adományozás a Reactive Resumenak"
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr "Adományozás a Reactive Resumenak"
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr "Töltse le önéletrajzának JSON változatát. Ez a fájl felhasználható önéletrajzának importálására a jövőben, vagy akár meg is oszthatja másokkal az együttműködés érdekében."
|
msgstr "Töltse le önéletrajzának JSON változatát. Ez a fájl felhasználható önéletrajzának importálására a jövőben, vagy akár meg is oszthatja másokkal az együttműködés érdekében."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
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."
|
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/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr "PDF letöltése"
|
msgstr "PDF letöltése"
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr "Meglévő elem duplikálása"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Meglévő önéletrajz duplikálása"
|
msgstr "Meglévő önéletrajz duplikálása"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Szerkesztés"
|
msgstr "Szerkesztés"
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr "Effektek"
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr "E-mail"
|
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"
|
msgid "Enable 2FA"
|
||||||
msgstr "2FA bekapcsolása"
|
msgstr "2FA bekapcsolása"
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr "Írja be az alábbiakban a hitelesítési alkalmazás által megadott eg
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr "Adja meg e-mail címét, és küldünk egy linket a jelszó visszaállításához, ha a fiók létezik."
|
msgstr "Adja meg e-mail címét, és küldünk egy linket a jelszó visszaállításához, ha a fiók létezik."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr "Hiba {statusCode}"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr "Hibák"
|
msgstr "Hibák"
|
||||||
@ -544,6 +576,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."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr "Exportálás"
|
msgstr "Exportálás"
|
||||||
@ -564,19 +597,19 @@ msgstr "Végül,"
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr "Helyesírás és nyelvtan javítása"
|
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"
|
msgid "Font Family"
|
||||||
msgstr "Betűkészlet"
|
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"
|
msgid "Font Size"
|
||||||
msgstr "Betűméret"
|
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"
|
msgid "Font Subset"
|
||||||
msgstr "Betűkészlet részhalmaz"
|
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"
|
msgid "Font Variants"
|
||||||
msgstr "Betűtípusok"
|
msgstr "Betűtípusok"
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr "Betűtípusok"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "Itt például fel lehet jegyezni, hogy mely cégeknek küldte el az önéletrajzot, vagy hogy milyen linkek vezetnek az állásleírásokhoz."
|
msgstr "Itt például fel lehet jegyezni, hogy mely cégeknek küldte el az önéletrajzot, vagy hogy milyen linkek vezetnek az állásleírásokhoz."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Elfelejt"
|
msgstr "Elfelejt"
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr "Elfelejtette a jelszavát?"
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr "Formázás"
|
msgstr "Formázás"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr "Találtál egy hibát, vagy van egy új funkcióra vonatkozó ötleted?"
|
msgstr "Találtál egy hibát, vagy van egy új funkcióra vonatkozó ötleted?"
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr "Találtál egy hibát, vagy van egy új funkcióra vonatkozó ötleted?"
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr "Mindig ingyenes"
|
msgstr "Mindig ingyenes"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr "Barátságos"
|
msgstr "Barátságos"
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr "Adjon új nevet a régi önéletrajzának."
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr "Tovább az Irányítópultra"
|
msgstr "Tovább az Irányítópultra"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr "Menj haza"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr "Google"
|
msgstr "Google"
|
||||||
@ -651,7 +688,7 @@ msgstr "Google"
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr "Szürkeárnyalatos"
|
msgstr "Szürkeárnyalatos"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr "Rács"
|
msgstr "Rács"
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr "Itt frissítheti profilját, hogy személyre szabhassa élményét."
|
msgstr "Itt frissítheti profilját, hogy személyre szabhassa élményét."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Rejtett"
|
msgstr "Rejtett"
|
||||||
@ -677,7 +714,7 @@ msgstr "Rejtett"
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr "Elrejtés"
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr "Ikonok elrejtése"
|
msgstr "Ikonok elrejtése"
|
||||||
|
|
||||||
@ -734,7 +771,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."
|
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."
|
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."
|
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."
|
msgstr "Ebben a szakaszban módosíthatja jelszavát, és engedélyezheti/letilthatja a kétfaktoros hitelesítést."
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ 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>."
|
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/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Információ"
|
msgstr "Információ"
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr "gipsz.jakab@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Kulcsszavak"
|
msgstr "Kulcsszavak"
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr "Utoljára frissítve {lastUpdated}"
|
msgstr "Utoljára frissítve {lastUpdated}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Elrendezés"
|
msgstr "Elrendezés"
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr "Levél"
|
msgstr "Levél"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr "Szint"
|
msgstr "Szint"
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr "Fény"
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr "Világos vagy sötét téma"
|
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"
|
msgid "Line Height"
|
||||||
msgstr "Vonalmagasság"
|
msgstr "Vonalmagasság"
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr "Vonalmagasság"
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr "LinkedIn, JSON önéletrajz stb."
|
msgstr "LinkedIn, JSON önéletrajz stb."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr "Lista"
|
msgstr "Lista"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr "Kijelentkezés"
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr "Elvesztette a készülékét?"
|
msgstr "Elvesztette a készülékét?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr "Fő"
|
msgstr "Fő"
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr "2023. március"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr "2023. március – jelen"
|
msgstr "2023. március – jelen"
|
||||||
@ -923,7 +962,7 @@ msgstr "2023. március – jelen"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Margó"
|
msgstr "Margó"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "Max zsetonok"
|
msgstr "Max zsetonok"
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr "Max zsetonok"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "MIT Licenc"
|
msgstr "MIT Licenc"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "Modell"
|
msgstr "Modell"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr "Név"
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Honlap"
|
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"
|
msgid "New Password"
|
||||||
msgstr "Új Jelszó"
|
msgstr "Új Jelszó"
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr "Megjegyzés: Ezzel fiókja kevésbé lesz biztonságos."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Jegyzetek"
|
msgstr "Jegyzetek"
|
||||||
@ -1009,16 +1049,16 @@ msgstr "Az OpenAI nem adott vissza semmilyen választási lehetőséget a szöve
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "OpenAI integráció"
|
msgstr "OpenAI integráció"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
msgstr "OpenAI/Azure OpenAI/Ollama integráció"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr "OpenAI/Ollama API kulcs"
|
msgstr "OpenAI/Ollama API kulcs"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
|
||||||
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/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"
|
msgid "Options"
|
||||||
msgstr "Opciók"
|
msgstr "Opciók"
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr "Szervezet"
|
msgstr "Szervezet"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "Oldal"
|
msgstr "Oldal"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr "Oldal {pageNumber}"
|
msgstr "Oldal {pageNumber}"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr "Jelszó"
|
msgstr "Jelszó"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr "PDF"
|
msgstr "PDF"
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr "Készítette: <0>Simple Icons</0>"
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr "Elsődleges szín"
|
msgstr "Elsődleges szín"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr "Adatvédelmi irányelvek"
|
msgstr "Adatvédelmi irányelvek"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr "Professzionális"
|
msgstr "Professzionális"
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr "Nyilvános"
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "Kiadó"
|
msgstr "Kiadó"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr "Kérdés felvetése"
|
msgstr "Kérdés felvetése"
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr "Kérdés felvetése"
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr "A Reactive Resume élénk közösségének köszönhetően virágzik. Ez
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Redo"
|
msgstr "Redo"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Távolítsa el a"
|
msgstr "Távolítsa el a"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr "Oldal eltávolítása"
|
msgstr "Oldal eltávolítása"
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr "E-mail megerősítő link újraküldése"
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr "Reset"
|
msgstr "Reset"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr "Elrendezés visszaállítása"
|
msgstr "Elrendezés visszaállítása"
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr "Zoom visszaállítása"
|
msgstr "Zoom visszaállítása"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr "Önéletrajzok"
|
msgstr "Önéletrajzok"
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr "Kerekített"
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Változások mentése"
|
msgstr "Változások mentése"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "Helyben menteni"
|
msgstr "Helyben menteni"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Megmentett"
|
msgstr "Megmentett"
|
||||||
|
|
||||||
@ -1262,15 +1300,15 @@ msgstr "Görgessen a Pan-ra"
|
|||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr "Görgessen a nagyításhoz"
|
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"
|
msgid "Search for a font family"
|
||||||
msgstr "Betűcsalád keresése"
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr "Betűkészlet keresése"
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr "Betűtípus-változat keresése"
|
msgstr "Betűtípus-változat keresése"
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr "Nyelv keresése"
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr "Biztonságos kétfaktoros hitelesítéssel"
|
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"
|
msgid "Security"
|
||||||
msgstr "Biztonság"
|
msgstr "Biztonság"
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr "Self-host Dockerrel"
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr "E-mail küldése"
|
msgstr "E-mail küldése"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr "Küldjön üzenetet"
|
msgstr "Küldjön üzenetet"
|
||||||
|
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr "Kétfaktoros hitelesítés beállítása a fiókjában"
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr "Megosztás"
|
msgstr "Megosztás"
|
||||||
@ -1330,7 +1369,7 @@ msgstr "Mutasd a törésvonalat"
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr "Oldalszámok megjelenítése"
|
msgstr "Oldalszámok megjelenítése"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Oldalsáv"
|
msgstr "Oldalsáv"
|
||||||
|
|
||||||
@ -1408,6 +1447,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."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr "Statisztikák"
|
msgstr "Statisztikák"
|
||||||
@ -1422,17 +1462,17 @@ msgstr "Tárolja biztonságosan a biztonsági kódokat"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr "Összefoglaló"
|
msgstr "Összefoglaló"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr "Támogasd az alkalmazást azzal, hogy adományozol, amit tudsz!"
|
msgstr "Támogasd az alkalmazást azzal, hogy adományozol, amit tudsz!"
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr "Reaktív önéletrajz támogatása"
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr "Támogatja az A4/Letter oldalformátumokat"
|
msgstr "Támogatja az A4/Letter oldalformátumokat"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr "Sötét üzemmódra váltás"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr "Fény üzemmódra váltás"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr "Rendszer"
|
msgstr "Rendszer"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "Sablon"
|
msgstr "Sablon"
|
||||||
@ -1465,15 +1514,20 @@ msgstr "Ajánlások"
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr "Szöveg színe"
|
msgstr "Szöveg színe"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
msgstr "A megadott jelszavak nem egyeznek."
|
msgstr "A keresett oldal nem létezik."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
|
msgstr "A kérelem érvénytelen volt."
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: 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."
|
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."
|
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/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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,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:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr "Kétfaktoros hitelesítés"
|
msgstr "Kétfaktoros hitelesítés"
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr "Tanulmány típusa"
|
msgstr "Tanulmány típusa"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr "Tipográfia"
|
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"
|
msgid "Underline Links"
|
||||||
msgstr "Linkek aláhúzása"
|
msgstr "Linkek aláhúzása"
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr "URL"
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr "Az URL-nek a https:// címmel kell kezdődnie."
|
msgstr "Az URL-nek a https:// címmel kell kezdődnie."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr "Azure OpenAI használata"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr "Rendszer téma használata"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,7 +1714,7 @@ msgstr "4. verzió"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Nézettség"
|
msgstr "Nézettség"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Látható"
|
msgstr "Látható"
|
||||||
|
|
||||||
@ -1665,11 +1728,11 @@ msgstr "Csak azért ellenőrizzük az e-mail címét, hogy küldhessünk Önnek
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr "Honlap"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Újdonságok a legújabb verzióban"
|
msgstr "Újdonságok a legújabb verzióban"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr "Ön nem jogosult az oldal elérésére."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Több kulcsszót is hozzáadhat, ha vesszővel választja el őket, vagy megnyomja az enter billentyűt."
|
msgstr "Több kulcsszót is hozzáadhat, ha vesszővel választja el őket, vagy megnyomja az enter billentyűt."
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr "Több kulcsszót is hozzáadhat, ha vesszővel választja el őket, vagy
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Megadhatja a felhasználónevét is."
|
msgstr "Megadhatja a felhasználónevét is."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr "Az Ollamával is integrálhatod, ha az API-kulcsot egyszerűen az \"sk-1234567890abcdef\" értékre állítod be, a Bázis URL-t pedig az Ollama URL-edre, azaz a \"http://localhost:11434/v1\" értékre. A modelleket is kiválaszthatja, és beállíthatja a maximális tokeneket az Ön preferenciái szerint."
|
msgstr "Az Azure OpenAI-val is integrálhatja az <0>Azure OpenAI-t az Azure OpenAI használata</0> jelölőnégyzet engedélyezésével és az Azure OpenAI-erőforrás URL-jének beállításával: <1>https://your-resource.openai.azure.com.</1> Állítsa be a telepítés nevét a Modell mezőben, és adja meg az Azure telepítéshez tartozó megfelelő API-verziót."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
msgstr "Az OpenAI API-t felhasználhatja a tartalomgeneráláshoz, vagy az önéletrajz megírásakor javíthatja az íráskészségét."
|
msgstr "Az Ollama-val is integrálhatod, egyszerűen az API kulcs <0>tosk-1234567890abcdef</0> és a Base URL az Ollama URL-hez, azaz<1>http://localhost:11434/v1</1>. Kiválaszthatod a modelleket és beállíthatod a maximális tokeneket, ahogyan azt szeretnéd."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
|
msgstr "Az OpenAI API-t, az Azure OpenAI-t vagy az Ollama-t használhatja a tartalomgeneráláshoz, vagy javíthatja az írást az önéletrajz megírása közben."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "A nyilvános megosztás engedélyezésével nyomon követheti, hogy hányan tekintették meg önéletrajzát, vagy hányan töltötték le azt."
|
msgstr "A nyilvános megosztás engedélyezésével nyomon követheti, hogy hányan tekintették meg önéletrajzát, vagy hányan töltötték le azt."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr "Nincs jogosultsága az oldal eléréséhez."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "Lehetősége van <0>saját OpenAI API-kulcsot szerezni</0>. Ez a kulcs lehetővé teszi, hogy az API-t saját belátása szerint használhassa. Alternatív megoldásként, ha teljesen le szeretné tiltani a Reactive Resume AI funkcióit, egyszerűen eltávolíthatja a kulcsot a beállításai közül."
|
msgstr "Lehetősége van <0>saját OpenAI API-kulcsot szerezni</0>. Ez a kulcs lehetővé teszi, hogy az API-t saját belátása szerint használhassa. Alternatív megoldásként, ha teljesen le szeretné tiltani a Reactive Resume AI funkcióit, egyszerűen eltávolíthatja a kulcsot a beállításai közül."
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr "Levelet kaptál!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "A fiókja és minden adata sikeresen törlődött. Viszontlátásra!"
|
msgstr "A fiókja és minden adata sikeresen törlődött. Viszontlátásra!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "Az API-kulcs biztonságosan tárolódik a böngésző helyi tárolójában, és csak akkor kerül felhasználásra, amikor a hivatalos SDK-n keresztül kéréseket intéz az OpenAI-hoz. Biztos lehet benne, hogy a kulcsa nem kerül továbbításra semmilyen külső szerverre, kivéve, amikor az OpenAI szolgáltatásaival lép kapcsolatba."
|
msgstr "Az API-kulcs biztonságosan tárolódik a böngésző helyi tárolójában, és csak akkor kerül felhasználásra, amikor a hivatalos SDK-n keresztül kéréseket intéz az OpenAI-hoz. Biztos lehet benne, hogy a kulcsa nem kerül továbbításra semmilyen külső szerverre, kivéve, amikor az OpenAI szolgáltatásaival lép kapcsolatba."
|
||||||
|
|
||||||
@ -1733,7 +1808,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."
|
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."
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr "Jelszavát sikeresen frissítettük."
|
msgstr "Jelszavát sikeresen frissítettük."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: id\n"
|
"Language: id\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:40\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Indonesian\n"
|
"Language-Team: Indonesian\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
@ -24,33 +24,33 @@ msgstr "Anda telah berhasil mengaktifkan autentikasi dua faktor."
|
|||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:57
|
#: apps/client/src/pages/home/sections/features/index.tsx:57
|
||||||
msgid "{templatesCount} resume templates to choose from"
|
msgid "{templatesCount} resume templates to choose from"
|
||||||
msgstr "{templatesCount} templat resume yang dapat dipilih"
|
msgstr "{templatesCount} format resume yang dapat dipilih"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:142
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:142
|
||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr "{value, plural, other {Kolom}}"
|
msgstr "{value, plural, other {Kolom}}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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>Saya membuat Reactive Resume sendiri seringnya di waktu senggang, dengan banyak bantuan dari kontributor open source hebat lainnya.</0> <1>Jika Anda menyukai aplikasi ini dan ingin mendukung agar aplikasi ini tetap gratis selamanya, silakan sumbangkan berapa pun yang Anda mampu berikan.</1>"
|
msgstr "<0>Saya membuat Reactive Resume sendiri seringnya di waktu senggang, dengan banyak bantuan dari kontributor open source hebat lainnya.</0> <1>Jika Anda menyukai aplikasi ini dan ingin mendukung agar aplikasi ini tetap gratis selamanya, silakan sumbangkan berapa pun yang Anda mampu berikan.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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>Saya yakin aplikasi ini belum sempurna, tetapi saya ingin aplikasi ini sempurna.</0><1>Jika Anda menghadapi masalah apa pun saat membuat resume, atau memiliki ide yang dapat membantu Anda dan pengguna lain dalam membuat resume dengan lebih mudah, kirimkan masalah ke repositori atau kirimkan email kepada saya.</1>"
|
msgstr "<0>Saya yakin aplikasi ini belum sempurna, tetapi saya ingin aplikasi ini sempurna.</0><1>Jika Anda menghadapi masalah apa pun saat membuat resume, atau memiliki ide yang dapat membantu Anda dan pengguna lain dalam membuat resume dengan lebih mudah, kirimkan masalah ke repositori atau kirimkan email kepada saya.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 "<0>Catatan: </0>Dengan menggunakan API OpenAI, Anda mengakui dan menerima <1>persyaratan penggunaan</1> dan <2>kebijakan privasi</2> yang diuraikan oleh OpenAI. Harap diperhatikan bahwa Reactive Resume tidak bertanggung jawab atas penggunaan layanan yang tidak tepat atau tidak sah, dan segala dampak atau kewajiban yang timbul sepenuhnya menjadi tanggung jawab pengguna."
|
msgstr "<0>Catatan: </0>Dengan menggunakan API OpenAI, Anda mengakui dan menerima <1>persyaratan penggunaan</1> dan <2>kebijakan privasi</2> yang diuraikan oleh OpenAI. Harap diperhatikan bahwa Reactive Resume tidak bertanggung jawab atas penggunaan layanan yang tidak tepat atau tidak sah, dan segala dampak atau kewajiban yang timbul sepenuhnya menjadi tanggung jawab pengguna."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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>"
|
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."
|
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."
|
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."
|
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."
|
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"
|
msgid "Add a custom field"
|
||||||
msgstr "Tambahkan kolom kustom"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Tambah item baru"
|
msgstr "Tambah item baru"
|
||||||
@ -117,7 +117,7 @@ msgstr "Tambah item baru"
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr "Tambahkan bagian baru"
|
msgstr "Tambahkan bagian baru"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr "Tambah halaman baru"
|
msgstr "Tambah halaman baru"
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr "Sudah memiliki akun?"
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr "Terjadi kesalahan saat memvalidasi file."
|
msgstr "Terjadi kesalahan saat memvalidasi file."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr "Terjadi kesalahan server internal."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr "Terjadi kesalahan tak terduga."
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr "dan masih banyak lagi..."
|
msgstr "dan masih banyak lagi..."
|
||||||
@ -191,6 +199,18 @@ msgstr "Tersedia dalam {languagesCount} bahasa"
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr "Pemberi penghargaan"
|
msgstr "Pemberi penghargaan"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr "Versi API Azure"
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr "URL Dasar Azure OpenAI, nama penerapan (model), dan versi API diperlukan saat menggunakan Azure OpenAI."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr "URL Sumber Daya Azure OpenAI"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,7 +229,7 @@ msgstr "Kode Cadangan"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Kode Cadangan hanya boleh berisi huruf kecil atau angka, dan harus tepat 10 karakter."
|
msgstr "Kode Cadangan hanya boleh berisi huruf kecil atau angka, dan harus tepat 10 karakter."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "URL dasar"
|
msgstr "URL dasar"
|
||||||
|
|
||||||
@ -246,8 +266,8 @@ msgstr "Oleh komunitas, untuk komunitas."
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Batalkan"
|
msgstr "Batalkan"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr "Santai"
|
msgstr "Santai"
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr "Santai"
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr "Papan Seni Tengah"
|
msgstr "Papan Seni Tengah"
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr "Ubah Bahasa"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr "Ubah Kata Sandi"
|
msgstr "Ubah Kata Sandi"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr "Ubah Nada"
|
msgstr "Ubah Nada"
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr "Kolom"
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr "Perusahaan"
|
msgstr "Perusahaan"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr "Percaya diri"
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Lanjutkan"
|
msgstr "Lanjutkan"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Salin"
|
msgstr "Salin"
|
||||||
|
|
||||||
@ -351,7 +371,12 @@ msgstr "Buat satu sekarang"
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr "Buat Contoh Resume"
|
msgstr "Buat Contoh Resume"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||||
|
msgid "Current Password"
|
||||||
|
msgstr "Kata Sandi Saat Ini"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr "CSS khusus"
|
msgstr "CSS khusus"
|
||||||
@ -386,10 +411,10 @@ msgstr "Gelap"
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Tanggal"
|
msgstr "Tanggal"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Tanggal atau Rentang Tanggal"
|
msgstr "Tanggal atau Rentang Tanggal"
|
||||||
@ -407,11 +432,15 @@ msgstr "Menghapus"
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr "Menghapus Akun"
|
msgstr "Menghapus Akun"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr "Nama Penyebaran"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Deskripsi"
|
msgstr "Deskripsi"
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr "Desain resume satu / beberapa halaman"
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr "Nonaktifkan"
|
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"
|
msgid "Disable 2FA"
|
||||||
msgstr "Nonaktifkan 2FA"
|
msgstr "Nonaktifkan 2FA"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr "Buang"
|
msgstr "Buang"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Dokumentasi"
|
msgstr "Dokumentasi"
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr "Dokumentasi"
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr "Belum memiliki akun?"
|
msgstr "Belum memiliki akun?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr "Tidak tahu mulai dari mana? Buka dokumen!"
|
msgstr "Tidak tahu mulai dari mana? Buka dokumen!"
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr "Tidak tahu mulai dari mana? Buka dokumen!"
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr "Tidak melihat bahasa Anda? <0>Bantu menerjemahkan aplikasi.</0>"
|
msgstr "Tidak melihat bahasa Anda? <0>Bantu menerjemahkan aplikasi.</0>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr "Sumbangan ke Reactive Resume"
|
msgstr "Sumbangan ke Reactive Resume"
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr "Sumbangan ke Reactive Resume"
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr "Unduh cuplikan JSON dari resume Anda. File ini dapat digunakan untuk mengimpor resume Anda di masa mendatang, atau bahkan dapat dibagikan dengan orang lain untuk berkolaborasi."
|
msgstr "Unduh cuplikan JSON dari resume Anda. File ini dapat digunakan untuk mengimpor resume Anda di masa mendatang, atau bahkan dapat dibagikan dengan orang lain untuk berkolaborasi."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
msgstr "Unduh file PDF resume Anda. File ini dapat digunakan untuk mencetak resume Anda, mengirimkannya ke perekrut, atau mengunggahnya di portal pekerjaan."
|
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/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr "Unduh PDF"
|
msgstr "Unduh PDF"
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr "Menduplikasi item yang sudah ada"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Menggandakan resume yang sudah ada"
|
msgstr "Menggandakan resume yang sudah ada"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Sunting"
|
msgstr "Sunting"
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr "Efek"
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr "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"
|
msgid "Enable 2FA"
|
||||||
msgstr "Aktifkan 2FA"
|
msgstr "Aktifkan 2FA"
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr "Masukkan kata sandi sekali pakai yang disediakan oleh aplikasi autentika
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr "Masukkan alamat email Anda dan kami akan mengirimkan tautan untuk mengatur ulang kata sandi Anda jika akun tersebut ada."
|
msgstr "Masukkan alamat email Anda dan kami akan mengirimkan tautan untuk mengatur ulang kata sandi Anda jika akun tersebut ada."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr "Kesalahan {statusCode}"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr "Kesalahan"
|
msgstr "Kesalahan"
|
||||||
@ -544,6 +576,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."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr "Ekspor"
|
msgstr "Ekspor"
|
||||||
@ -564,19 +597,19 @@ msgstr "Akhirnya,"
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr "Perbaiki Ejaan & Tata Bahasa"
|
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"
|
msgid "Font Family"
|
||||||
msgstr "Keluarga Font"
|
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"
|
msgid "Font Size"
|
||||||
msgstr "Ukuran Font"
|
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"
|
msgid "Font Subset"
|
||||||
msgstr "Subset Font"
|
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"
|
msgid "Font Variants"
|
||||||
msgstr "Varian Font"
|
msgstr "Varian Font"
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr "Varian Font"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "Misalnya, informasi mengenai perusahaan mana yang Anda kirim resume tersebut atau tautan ke deskripsi pekerjaan dapat dicatat di sini."
|
msgstr "Misalnya, informasi mengenai perusahaan mana yang Anda kirim resume tersebut atau tautan ke deskripsi pekerjaan dapat dicatat di sini."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Lupakan."
|
msgstr "Lupakan."
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr "Lupa kata sandi Anda?"
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr "Format"
|
msgstr "Format"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr "Ada bug, atau ide untuk fitur baru?"
|
msgstr "Ada bug, atau ide untuk fitur baru?"
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr "Ada bug, atau ide untuk fitur baru?"
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr "Gratis, selamanya"
|
msgstr "Gratis, selamanya"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr "Ramah"
|
msgstr "Ramah"
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr "Berikan nama baru pada resume lama Anda."
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr "Buka Dasbor"
|
msgstr "Buka Dasbor"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr "Pergi ke halaman depan"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr "Google"
|
msgstr "Google"
|
||||||
@ -651,7 +688,7 @@ msgstr "Google"
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr "Skala abu-abu"
|
msgstr "Skala abu-abu"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr "Grid"
|
msgstr "Grid"
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr "Di sini, Anda dapat memperbarui profil Anda untuk menyesuaikan dan mempersonalisasi pengalaman Anda."
|
msgstr "Di sini, Anda dapat memperbarui profil Anda untuk menyesuaikan dan mempersonalisasi pengalaman Anda."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Tersembunyi"
|
msgstr "Tersembunyi"
|
||||||
@ -677,7 +714,7 @@ msgstr "Tersembunyi"
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr "Sembunyikan"
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr "Sembunyikan Ikon"
|
msgstr "Sembunyikan Ikon"
|
||||||
|
|
||||||
@ -734,7 +771,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."
|
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."
|
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."
|
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."
|
msgstr "Pada bagian ini, Anda dapat mengubah kata sandi dan mengaktifkan/menonaktifkan autentikasi dua faktor."
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ 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>."
|
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/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Informasi"
|
msgstr "Informasi"
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr "john.doe@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Kata kunci"
|
msgstr "Kata kunci"
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr "Terakhir diperbarui {lastUpdated}"
|
msgstr "Terakhir diperbarui {lastUpdated}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Tata letak"
|
msgstr "Tata letak"
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr "Surat"
|
msgstr "Surat"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr "Tingkat"
|
msgstr "Tingkat"
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr "Cahaya"
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr "Tema terang atau gelap"
|
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"
|
msgid "Line Height"
|
||||||
msgstr "Tinggi Garis"
|
msgstr "Tinggi Garis"
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr "Tinggi Garis"
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr "LinkedIn, Resume JSON, dll."
|
msgstr "LinkedIn, Resume JSON, dll."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr "Daftar"
|
msgstr "Daftar"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr "Keluar"
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr "Kehilangan perangkat Anda?"
|
msgstr "Kehilangan perangkat Anda?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr "Utama"
|
msgstr "Utama"
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr "Maret 2023"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr "Maret 2023 - Sekarang"
|
msgstr "Maret 2023 - Sekarang"
|
||||||
@ -923,7 +962,7 @@ msgstr "Maret 2023 - Sekarang"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Margin"
|
msgstr "Margin"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "Token Max"
|
msgstr "Token Max"
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr "Token Max"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "Lisensi MIT"
|
msgstr "Lisensi MIT"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "Model"
|
msgstr "Model"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr "Nama"
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Jaringan"
|
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"
|
msgid "New Password"
|
||||||
msgstr "Kata Sandi Baru"
|
msgstr "Kata Sandi Baru"
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr "Catatan: Hal ini akan membuat akun Anda kurang aman."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Catatan"
|
msgstr "Catatan"
|
||||||
@ -1009,16 +1049,16 @@ msgstr "OpenAI tidak mengembalikan pilihan apa pun untuk teks Anda."
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "Integrasi OpenAI"
|
msgstr "Integrasi OpenAI"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
msgstr "Kunci API OpenAI/Ollama"
|
msgstr "Integrasi OpenAI/Azure OpenAI/Ollama"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama Integration"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr "Integrasi OpenAI/Ollama"
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: 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"
|
msgid "Options"
|
||||||
msgstr "Pilihan"
|
msgstr "Pilihan"
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr "Organisasi"
|
msgstr "Organisasi"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "Halaman"
|
msgstr "Halaman"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr "Halaman {pageNumber}"
|
msgstr "Halaman {pageNumber}"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr "Kata sandi"
|
msgstr "Kata sandi"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr "PDF"
|
msgstr "PDF"
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr "Didukung oleh <0>Simple Icons</0>"
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr "Warna Primer"
|
msgstr "Warna Primer"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr "Kebijakan Privasi"
|
msgstr "Kebijakan Privasi"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr "Profesional"
|
msgstr "Profesional"
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr "Publik"
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "Penerbit"
|
msgstr "Penerbit"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr "Mengajukan masalah"
|
msgstr "Mengajukan masalah"
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr "Mengajukan masalah"
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr "Reactive Resume berkembang berkat komunitasnya yang dinamis. Proyek ini
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Ulangi."
|
msgstr "Ulangi."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Menghapus"
|
msgstr "Menghapus"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr "Hapus Halaman"
|
msgstr "Hapus Halaman"
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr "Kirim ulang tautan konfirmasi email"
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr "Atur ulang"
|
msgstr "Atur ulang"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr "Atur Ulang Tata Letak"
|
msgstr "Atur Ulang Tata Letak"
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr "Atur Ulang Zoom"
|
msgstr "Atur Ulang Zoom"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr "Resume"
|
msgstr "Resume"
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr "Bulat"
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Menyimpan Perubahan"
|
msgstr "Menyimpan Perubahan"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "Simpan Secara Lokal"
|
msgstr "Simpan Secara Lokal"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Tersimpan"
|
msgstr "Tersimpan"
|
||||||
|
|
||||||
@ -1262,15 +1300,15 @@ msgstr "Gulir ke Geser"
|
|||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr "Gulir ke 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"
|
msgid "Search for a font family"
|
||||||
msgstr "Mencari keluarga font"
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr "Mencari subset font"
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr "Mencari varian font"
|
msgstr "Mencari varian font"
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr "Mencari bahasa"
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr "Aman dengan autentikasi dua faktor"
|
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"
|
msgid "Security"
|
||||||
msgstr "Keamanan"
|
msgstr "Keamanan"
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr "Host mandiri dengan Docker"
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr "Kirim Email"
|
msgstr "Kirim Email"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr "Kirimi saya pesan"
|
msgstr "Kirimi saya pesan"
|
||||||
|
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr "Menyiapkan autentikasi dua faktor di akun Anda"
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr "Berbagi"
|
msgstr "Berbagi"
|
||||||
@ -1330,7 +1369,7 @@ msgstr "Tampilkan Garis Istirahat"
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr "Tampilkan Nomor Halaman"
|
msgstr "Tampilkan Nomor Halaman"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Bilah samping"
|
msgstr "Bilah samping"
|
||||||
|
|
||||||
@ -1408,6 +1447,7 @@ msgid "Start building your resume by giving it a name."
|
|||||||
msgstr "Mulailah membuat resume Anda dengan memberikan nama."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr "Statistik"
|
msgstr "Statistik"
|
||||||
@ -1422,17 +1462,17 @@ msgstr "Menyimpan kode cadangan Anda dengan aman"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr "Ringkasan"
|
msgstr "Ringkasan"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr "Dukung aplikasi ini dengan menyumbangkan apa yang Anda bisa!"
|
msgstr "Dukung aplikasi ini dengan menyumbangkan apa yang Anda bisa!"
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr "Mendukung Resume Reaktif"
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr "Mendukung format halaman A4/Surat"
|
msgstr "Mendukung format halaman A4/Surat"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr "Beralih ke Mode Gelap"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr "Beralih ke Mode Cahaya"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr "Sistem"
|
msgstr "Sistem"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "Templat"
|
msgstr "Templat"
|
||||||
@ -1465,15 +1514,20 @@ msgstr "Testimonial"
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr "Warna Teks"
|
msgstr "Warna Teks"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
msgstr "Kata sandi yang Anda masukkan tidak cocok."
|
msgstr "Halaman yang Anda cari tidak ada."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
|
msgstr "Permintaan tersebut tidak valid."
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: 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."
|
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."
|
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/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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,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:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr "Autentikasi Dua Faktor"
|
msgstr "Autentikasi Dua Faktor"
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr "Jenis Studi"
|
msgstr "Jenis Studi"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr "Tipografi"
|
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"
|
msgid "Underline Links"
|
||||||
msgstr "Garis bawahi Tautan"
|
msgstr "Garis bawahi Tautan"
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr "URL"
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr "URL harus dimulai dengan https://"
|
msgstr "URL harus dimulai dengan https://"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr "Gunakan Azure OpenAI"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr "Gunakan Tema Sistem"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,7 +1714,7 @@ msgstr "Versi 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Tampilan"
|
msgstr "Tampilan"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Terlihat"
|
msgstr "Terlihat"
|
||||||
|
|
||||||
@ -1665,11 +1728,11 @@ msgstr "Kami memverifikasi alamat email Anda hanya untuk memastikan bahwa kami d
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr "Situs web"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Apa yang baru dalam versi terbaru"
|
msgstr "Apa yang baru dalam versi terbaru"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr "Anda tidak berwenang untuk mengakses halaman ini."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Anda dapat menambahkan beberapa kata kunci dengan memisahkannya dengan koma atau menekan enter."
|
msgstr "Anda dapat menambahkan beberapa kata kunci dengan memisahkannya dengan koma atau menekan enter."
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr "Anda dapat menambahkan beberapa kata kunci dengan memisahkannya dengan k
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Anda juga dapat memasukkan nama pengguna Anda."
|
msgstr "Anda juga dapat memasukkan nama pengguna Anda."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr "Anda juga dapat berintegrasi dengan Ollama hanya dengan mengatur kunci API ke `sk-1234567890abcdef` dan URL Dasar ke URL Ollama Anda, yaitu `http://localhost:11434/v1`. Anda juga dapat memilih dan memilih model dan mengatur token maksimum sesuai keinginan Anda."
|
msgstr "Anda juga dapat mengintegrasikan dengan Azure OpenAI dengan mengaktifkan kotak centang <0>Gunakan Azure OpenAI</0> dan mengatur URL Sumber Daya ke sumber daya Azure OpenAI Anda: <1>https://your-resource.openai.azure.com</1>. Tetapkan nama penerapan di bidang Model dan tentukan versi API yang sesuai untuk penerapan Azure Anda."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
msgstr "Anda dapat memanfaatkan API OpenAI untuk membantu Anda menghasilkan konten, atau meningkatkan tulisan Anda saat membuat resume."
|
msgstr "Anda juga dapat berintegrasi dengan Ollama hanya dengan mengatur kunci API <0>tosk-1234567890abcdef</0> dan URL Dasar ke URL Ollama Anda, yaitu<1>http://localhost:11434/v1.</1> Anda juga dapat memilih dan memilih model dan mengatur token maksimum sesuai keinginan Anda."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
|
msgstr "Anda dapat menggunakan OpenAI API, Azure OpenAI, atau Ollama untuk membantu Anda menghasilkan konten, atau meningkatkan tulisan Anda saat membuat resume."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Anda dapat melacak jumlah tampilan yang diterima resume Anda, atau berapa banyak orang yang telah mengunduh resume dengan mengaktifkan berbagi publik."
|
msgstr "Anda dapat melacak jumlah tampilan yang diterima resume Anda, atau berapa banyak orang yang telah mengunduh resume dengan mengaktifkan berbagi publik."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr "Anda tidak memiliki izin untuk mengakses halaman ini."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "Anda memiliki opsi untuk <0>mendapatkan kunci API OpenAI Anda sendiri</0>. Kunci ini memberdayakan Anda untuk memanfaatkan API sesuai keinginan Anda. Atau, jika Anda ingin menonaktifkan fitur AI di Reactive Resume, Anda cukup menghapus kunci dari pengaturan Anda."
|
msgstr "Anda memiliki opsi untuk <0>mendapatkan kunci API OpenAI Anda sendiri</0>. Kunci ini memberdayakan Anda untuk memanfaatkan API sesuai keinginan Anda. Atau, jika Anda ingin menonaktifkan fitur AI di Reactive Resume, Anda cukup menghapus kunci dari pengaturan Anda."
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr "Kau punya surat!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Akun Anda dan semua data Anda telah berhasil dihapus. Selamat tinggal!"
|
msgstr "Akun Anda dan semua data Anda telah berhasil dihapus. Selamat tinggal!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "Kunci API Anda disimpan dengan aman di penyimpanan lokal peramban dan hanya digunakan ketika membuat permintaan ke OpenAI melalui SDK resmi mereka. Yakinlah bahwa kunci Anda tidak dikirimkan ke server eksternal mana pun kecuali saat berinteraksi dengan layanan OpenAI."
|
msgstr "Kunci API Anda disimpan dengan aman di penyimpanan lokal peramban dan hanya digunakan ketika membuat permintaan ke OpenAI melalui SDK resmi mereka. Yakinlah bahwa kunci Anda tidak dikirimkan ke server eksternal mana pun kecuali saat berinteraksi dengan layanan OpenAI."
|
||||||
|
|
||||||
@ -1733,7 +1808,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."
|
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."
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr "Kata sandi Anda telah berhasil diperbarui."
|
msgstr "Kata sandi Anda telah berhasil diperbarui."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: it\n"
|
"Language: it\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:40\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Italian\n"
|
"Language-Team: Italian\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -30,27 +30,27 @@ msgstr "{templatesCount} modelli di curriculum tra cui scegliere"
|
|||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr "{value, plural, one {Colonna} other {Colonne}}"
|
msgstr "{value, plural, one {Colonna} other {Colonne}}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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>Ho creato Reactive Resume principalmente da solo durante il mio tempo libero, con un grande aiuto da parte di altri grandi collaboratori open-source.</0><1>Se ti piace l'applicazione e vuoi contribuire a mantenerla gratuita per sempre, ti prego di donare ciò che puoi permetterti di donare.</1>"
|
msgstr "<0>Ho creato Reactive Resume principalmente da solo durante il mio tempo libero, con un grande aiuto da parte di altri grandi collaboratori open-source.</0><1>Se ti piace l'applicazione e vuoi contribuire a mantenerla gratuita per sempre, ti prego di donare ciò che puoi permetterti di donare.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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>Sono sicuro che l'app non è perfetta, ma mi piacerebbe che lo fosse.</0> <1>Se hai riscontrato problemi durante la creazione del tuo curriculum o hai un'idea che potrebbe aiutare te e altri utenti a creare il tuo curriculum più facilmente, lascia un problema nel repository o inviami un'email a riguardo.</1>"
|
msgstr "<0>Sono sicuro che l'app non è perfetta, ma mi piacerebbe che lo fosse.</0> <1>Se hai riscontrato problemi durante la creazione del tuo curriculum o hai un'idea che potrebbe aiutare te e altri utenti a creare il tuo curriculum più facilmente, lascia un problema nel repository o inviami un'email a riguardo.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 "<0>Nota:</0> Utilizzando l'API OpenAI, riconosci e accetti i <1>termini di utilizzo</1> e <2>informativa sulla privacy</2> delineato da OpenAI. Si prega di notare che Reactive Resume non si assume alcuna responsabilità per qualsiasi utilizzo improprio o non autorizzato del servizio e che eventuali ripercussioni o responsabilità risultanti ricadono esclusivamente sull'utente."
|
msgstr "<0>Nota:</0> Utilizzando l'API OpenAI, riconosci e accetti i <1>termini di utilizzo</1> e <2>informativa sulla privacy</2> delineato da OpenAI. Si prega di notare che Reactive Resume non si assume alcuna responsabilità per qualsiasi utilizzo improprio o non autorizzato del servizio e che eventuali ripercussioni o responsabilità risultanti ricadono esclusivamente sull'utente."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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>"
|
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."
|
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."
|
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."
|
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."
|
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"
|
msgid "Add a custom field"
|
||||||
msgstr "Aggiungi un campo personalizzato"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Aggiungi nuovo elemento"
|
msgstr "Aggiungi nuovo elemento"
|
||||||
@ -117,7 +117,7 @@ msgstr "Aggiungi nuovo elemento"
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr "Aggiungi una nuova sezione"
|
msgstr "Aggiungi una nuova sezione"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr "Aggiungi una nuova pagina"
|
msgstr "Aggiungi una nuova pagina"
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr "Ha già un account?"
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr "Si è verificato un errore durante la convalida del file."
|
msgstr "Si è verificato un errore durante la convalida del file."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr "Si è verificato un errore interno del server."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr "Si è verificato un errore imprevisto."
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr "e molti altri..."
|
msgstr "e molti altri..."
|
||||||
@ -191,6 +199,18 @@ msgstr "Disponibile in {languagesCount} lingue"
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr "Premiatore"
|
msgstr "Premiatore"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr "Versione Azure API"
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr "Azure OpenAI Base URL, nome di distribuzione (modello) e versione API sono necessari quando si utilizza Azure OpenAI."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr "Url Risorsa OpenAI Azure"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,7 +229,7 @@ msgstr "Codice di Backup"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "I codici di backup possono contenere solo lettere minuscole o numeri e devono contenere esattamente 10 caratteri."
|
msgstr "I codici di backup possono contenere solo lettere minuscole o numeri e devono contenere esattamente 10 caratteri."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "URL di base"
|
msgstr "URL di base"
|
||||||
|
|
||||||
@ -246,8 +266,8 @@ msgstr "Dalla comunità, per la comunità."
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Annulla"
|
msgstr "Annulla"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr "Casuale"
|
msgstr "Casuale"
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr "Casuale"
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr "Cartella Centrata"
|
msgstr "Cartella Centrata"
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr "Cambia Lingua"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr "Cambia password"
|
msgstr "Cambia password"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr "Cambia tono"
|
msgstr "Cambia tono"
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr "Colonne"
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr "Azienda"
|
msgstr "Azienda"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr "Fiducioso"
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Continuare"
|
msgstr "Continuare"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Copia"
|
msgstr "Copia"
|
||||||
|
|
||||||
@ -351,7 +371,12 @@ msgstr "Creane uno ora"
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr "Creare un campione di curriculum"
|
msgstr "Creare un campione di curriculum"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||||
|
msgid "Current Password"
|
||||||
|
msgstr "Password attuale"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr "CSS personalizzato"
|
msgstr "CSS personalizzato"
|
||||||
@ -386,10 +411,10 @@ msgstr "Scuro"
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Data"
|
msgstr "Data"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Data o Intervallo di date"
|
msgstr "Data o Intervallo di date"
|
||||||
@ -407,11 +432,15 @@ msgstr "Elimina"
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr "Elimina account"
|
msgstr "Elimina account"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr "Nome Distribuzione"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Descrizione"
|
msgstr "Descrizione"
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr "Progetta curriculum a pagina singola/multipagina"
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr "Disabilita"
|
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"
|
msgid "Disable 2FA"
|
||||||
msgstr "Disabilita l'autenticazione a due fattori"
|
msgstr "Disabilita l'autenticazione a due fattori"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr "Scarta"
|
msgstr "Scarta"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Documentazione"
|
msgstr "Documentazione"
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr "Documentazione"
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr "Non hai un account?"
|
msgstr "Non hai un account?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr "Non sai da dove cominciare? Fai un giro nei documenti!"
|
msgstr "Non sai da dove cominciare? Fai un giro nei documenti!"
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr "Non sai da dove cominciare? Fai un giro nei documenti!"
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr "Non vedi la tua lingua? <0>Aiuta a tradurre l'app.</0>"
|
msgstr "Non vedi la tua lingua? <0>Aiuta a tradurre l'app.</0>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr "Fai una donazione a Reactive Resume"
|
msgstr "Fai una donazione a Reactive Resume"
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr "Fai una donazione a Reactive Resume"
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr "Scarica uno snapshot JSON del tuo curriculum. Questo file può essere utilizzato per importare il tuo curriculum in futuro o può anche essere condiviso con altri per collaborare."
|
msgstr "Scarica uno snapshot JSON del tuo curriculum. Questo file può essere utilizzato per importare il tuo curriculum in futuro o può anche essere condiviso con altri per collaborare."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
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."
|
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/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr "Scarica PDF"
|
msgstr "Scarica PDF"
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr "Duplica un elemento esistente"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Duplica un curriculum esistente"
|
msgstr "Duplica un curriculum esistente"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Modifica"
|
msgstr "Modifica"
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr "Effetti"
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr "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"
|
msgid "Enable 2FA"
|
||||||
msgstr "Abilita 2FA"
|
msgstr "Abilita 2FA"
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr "Inserisci di seguito la password monouso fornita dalla tua app di autent
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr "Inserisci il tuo indirizzo email e ti invieremo un collegamento per reimpostare la password se l'account esiste."
|
msgstr "Inserisci il tuo indirizzo email e ti invieremo un collegamento per reimpostare la password se l'account esiste."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr "Errore {statusCode}"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr "Errori"
|
msgstr "Errori"
|
||||||
@ -544,6 +576,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."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr "Esporta"
|
msgstr "Esporta"
|
||||||
@ -564,19 +597,19 @@ msgstr "Finalmente,"
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr "Correggi ortografia e grammatica"
|
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"
|
msgid "Font Family"
|
||||||
msgstr "Famiglia font"
|
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"
|
msgid "Font Size"
|
||||||
msgstr "Dimensioni carattere"
|
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"
|
msgid "Font Subset"
|
||||||
msgstr "Sottoinsieme di caratteri"
|
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"
|
msgid "Font Variants"
|
||||||
msgstr "Varianti di carattere"
|
msgstr "Varianti di carattere"
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr "Varianti di carattere"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "Per esempio, qui si possono annotare le informazioni relative alle aziende a cui ha inviato il curriculum o i link alle descrizioni del lavoro."
|
msgstr "Per esempio, qui si possono annotare le informazioni relative alle aziende a cui ha inviato il curriculum o i link alle descrizioni del lavoro."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Dimentica"
|
msgstr "Dimentica"
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr "Hai dimenticato la password?"
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr "Formato"
|
msgstr "Formato"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr "Hai trovato un bug o hai un'idea per una nuova funzionalità?"
|
msgstr "Hai trovato un bug o hai un'idea per una nuova funzionalità?"
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr "Hai trovato un bug o hai un'idea per una nuova funzionalità?"
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr "Gratis, per sempre"
|
msgstr "Gratis, per sempre"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr "Amichevole"
|
msgstr "Amichevole"
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr "Dai un nuovo nome al tuo vecchio curriculum."
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr "Vai alla dashboard"
|
msgstr "Vai alla dashboard"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr "Vai alla home"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr "Google"
|
msgstr "Google"
|
||||||
@ -651,7 +688,7 @@ msgstr "Google"
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr "Scala di grigi"
|
msgstr "Scala di grigi"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr "Griglia"
|
msgstr "Griglia"
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr "Qui può aggiornare il suo profilo per personalizzare la sua esperienza."
|
msgstr "Qui può aggiornare il suo profilo per personalizzare la sua esperienza."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Nascosto"
|
msgstr "Nascosto"
|
||||||
@ -677,7 +714,7 @@ msgstr "Nascosto"
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr "Nascondi"
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr "Nascondi icone"
|
msgstr "Nascondi icone"
|
||||||
|
|
||||||
@ -734,7 +771,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."
|
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."
|
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."
|
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."
|
msgstr "In questa sezione puoi modificare la tua password e abilitare/disabilitare l'autenticazione a due fattori."
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ 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>."
|
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/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Informazioni"
|
msgstr "Informazioni"
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr "mario.rossi@esempio.it"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Parole chiave"
|
msgstr "Parole chiave"
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr "Ultimo aggiornamento: {lastUpdated}"
|
msgstr "Ultimo aggiornamento: {lastUpdated}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Disposizione"
|
msgstr "Disposizione"
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr "Lettera"
|
msgstr "Lettera"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr "Livello"
|
msgstr "Livello"
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr "Chiaro"
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr "Tema chiaro o scuro"
|
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"
|
msgid "Line Height"
|
||||||
msgstr "Altezza linea"
|
msgstr "Altezza linea"
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr "Altezza linea"
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr "LinkedIn, curriculum JSON, ecc."
|
msgstr "LinkedIn, curriculum JSON, ecc."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr "Lista"
|
msgstr "Lista"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr "Disconnessione"
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr "Hai perso il tuo dispositivo?"
|
msgstr "Hai perso il tuo dispositivo?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr "Principale"
|
msgstr "Principale"
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr "Marzo 2023"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr "Marzo 2023 - Presente"
|
msgstr "Marzo 2023 - Presente"
|
||||||
@ -923,7 +962,7 @@ msgstr "Marzo 2023 - Presente"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Margine"
|
msgstr "Margine"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "Gettoni massimi"
|
msgstr "Gettoni massimi"
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr "Gettoni massimi"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "Licenza MIT"
|
msgstr "Licenza MIT"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "Modello"
|
msgstr "Modello"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr "Nome"
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Rete"
|
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"
|
msgid "New Password"
|
||||||
msgstr "Nuova Password"
|
msgstr "Nuova Password"
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr "Nota: ciò renderà il tuo account meno sicuro."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Note"
|
msgstr "Note"
|
||||||
@ -1009,16 +1049,16 @@ msgstr "OpenAI non ha restituito alcuna scelta per il tuo testo."
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "Integrazione OpenAI"
|
msgstr "Integrazione OpenAI"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
msgstr "Integrazione OpenAI/Azure OpenAI/Ollama"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr "Chiave API OpenAI/Ollama"
|
msgstr "Chiave API OpenAI/Ollama"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
|
||||||
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/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"
|
msgid "Options"
|
||||||
msgstr "Opzioni"
|
msgstr "Opzioni"
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr "Organizzazione"
|
msgstr "Organizzazione"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "Pagina"
|
msgstr "Pagina"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr "Pagina {pageNumber}"
|
msgstr "Pagina {pageNumber}"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr "Password"
|
msgstr "Password"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr "PDF"
|
msgstr "PDF"
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr "Offerto da <0>Icone semplici</0>"
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr "Colore primario"
|
msgstr "Colore primario"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr "Politica Sulla Privacy"
|
msgstr "Politica Sulla Privacy"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr "Professionale"
|
msgstr "Professionale"
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr "Pubblico"
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "Editore"
|
msgstr "Editore"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr "Segnala un problema"
|
msgstr "Segnala un problema"
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr "Segnala un problema"
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr "Reactive Resume prospera grazie alla sua vivace comunità. Questo proget
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Ritorna"
|
msgstr "Ritorna"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Rimuovi"
|
msgstr "Rimuovi"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr "Rimuovi pagina"
|
msgstr "Rimuovi pagina"
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr "Rinvio del link di conferma dell'e-mail"
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr "Ripristina"
|
msgstr "Ripristina"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr "Ripristina Layout"
|
msgstr "Ripristina Layout"
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr "Ripristina zoom"
|
msgstr "Ripristina zoom"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr "Curricula"
|
msgstr "Curricula"
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr "Arrotondato"
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Salva le modifiche"
|
msgstr "Salva le modifiche"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "Risparmiare localmente"
|
msgstr "Risparmiare localmente"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Salvato"
|
msgstr "Salvato"
|
||||||
|
|
||||||
@ -1262,15 +1300,15 @@ msgstr "Scorri fino a Pan"
|
|||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr "Scorri per zoomare"
|
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"
|
msgid "Search for a font family"
|
||||||
msgstr "Cerca una famiglia di caratteri"
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr "Cerca un sottoinsieme di caratteri"
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr "Cerca una variante del carattere"
|
msgstr "Cerca una variante del carattere"
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr "Cerca una lingua"
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr "Proteggi con l'autenticazione a due fattori"
|
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"
|
msgid "Security"
|
||||||
msgstr "Sicurezza"
|
msgstr "Sicurezza"
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr "Self-host con Docker"
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr "Invia email"
|
msgstr "Invia email"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr "Inviami un messaggio"
|
msgstr "Inviami un messaggio"
|
||||||
|
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr "Imposta l'autenticazione a due fattori sul tuo 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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr "Condivisione"
|
msgstr "Condivisione"
|
||||||
@ -1330,7 +1369,7 @@ msgstr "Mostra linea di interruzione"
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr "Mostra i numeri di pagina"
|
msgstr "Mostra i numeri di pagina"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Barra laterale"
|
msgstr "Barra laterale"
|
||||||
|
|
||||||
@ -1408,6 +1447,7 @@ msgid "Start building your resume by giving it a name."
|
|||||||
msgstr "Inizia a costruire il tuo curriculum dandogli un nome."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr "Statistiche"
|
msgstr "Statistiche"
|
||||||
@ -1422,17 +1462,17 @@ msgstr "Archivia i tuoi codici di backup in modo sicuro"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr "Riepilogo"
|
msgstr "Riepilogo"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr "Sostieni l'app donando quello che puoi!"
|
msgstr "Sostieni l'app donando quello che puoi!"
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr "Supportare Reactive Resume"
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr "Supporta i formati di pagina A4/Letter"
|
msgstr "Supporta i formati di pagina A4/Letter"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr "Passa alla modalità scura"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr "Passa alla modalità luce"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr "Sistema"
|
msgstr "Sistema"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "Modello"
|
msgstr "Modello"
|
||||||
@ -1465,15 +1514,20 @@ msgstr "Testimonial"
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr "Colore del testo"
|
msgstr "Colore del testo"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
msgstr "Le password inserite non corrispondono."
|
msgstr "La pagina che stai cercando non esiste."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
|
msgstr "La richiesta non è valida."
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: 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."
|
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."
|
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/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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,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:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr "Autenticazione a due fattori"
|
msgstr "Autenticazione a due fattori"
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr "Tipo di studio"
|
msgstr "Tipo di studio"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr "Tipografia"
|
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"
|
msgid "Underline Links"
|
||||||
msgstr "Sottolinea i link"
|
msgstr "Sottolinea i link"
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr "URL"
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr "L'URL deve iniziare con https://"
|
msgstr "L'URL deve iniziare con https://"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr "Usa Azure OpenAI"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr "Usa Tema Di Sistema"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,7 +1714,7 @@ msgstr "Versione 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Visualizzazioni"
|
msgstr "Visualizzazioni"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Visibile"
|
msgstr "Visibile"
|
||||||
|
|
||||||
@ -1665,11 +1728,11 @@ msgstr "Verifichiamo il suo indirizzo e-mail solo per assicurarci di poterle inv
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr "Sito Web"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Cosa c'è di nuovo nell'ultima versione"
|
msgstr "Cosa c'è di nuovo nell'ultima versione"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr "Non sei autorizzato ad accedere a questa pagina."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Puoi aggiungere più parole chiave separandole con una virgola o premendo Invio."
|
msgstr "Puoi aggiungere più parole chiave separandole con una virgola o premendo Invio."
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr "Puoi aggiungere più parole chiave separandole con una virgola o premend
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Può anche inserire il suo nome utente."
|
msgstr "Può anche inserire il suo nome utente."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr "Può anche integrarsi con Ollama semplicemente impostando la chiave API su `sk-1234567890abcdef` e l'URL di base sul suo URL Ollama, cioè `http://localhost:11434/v1`. Può anche scegliere i modelli e impostare i token massimi secondo le sue preferenze."
|
msgstr "Puoi anche integrarti con Azure OpenAI abilitando la casella di controllo <0>Usa Azure OpenAI</0> e impostando l'URL delle risorse sulla tua risorsa Azure OpenAI: <1>https://your-resource. penai.azure.com</1>. Impostare il nome di distribuzione nel campo Modello e specificare la versione API appropriata per la distribuzione Azure."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
msgstr "Può utilizzare l'API OpenAI per aiutarla a generare contenuti, o migliorare la sua scrittura mentre compone il suo curriculum."
|
msgstr "Puoi anche integrarti con Ollama semplicemente impostando la chiave API a<0>sk-1234567890abcdef</0> e l'URL di base al tuo URL Ollama, i. .<1>http://localhost:11434/v1</1>. Puoi anche scegliere i modelli e impostare i token massimi secondo le tue preferenze."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
|
msgstr "Puoi utilizzare l'API OpenAI, Azure OpenAI, o Ollama per aiutarti a generare contenuti o migliorare la tua scrittura durante la composizione del tuo curriculum."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Può monitorare il numero di visualizzazioni che il suo curriculum ha ricevuto, o quante persone hanno scaricato il curriculum abilitando la condivisione pubblica."
|
msgstr "Può monitorare il numero di visualizzazioni che il suo curriculum ha ricevuto, o quante persone hanno scaricato il curriculum abilitando la condivisione pubblica."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr "Non hai i permessi per accedere a questa pagina."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "Ha la possibilità di <0>ottenere una propria chiave API OpenAI</0>. Questa chiave le consente di sfruttare l'API come ritiene opportuno. In alternativa, se desidera disattivare completamente le funzioni AI in Reactive Resume, può semplicemente rimuovere la chiave dalle sue impostazioni."
|
msgstr "Ha la possibilità di <0>ottenere una propria chiave API OpenAI</0>. Questa chiave le consente di sfruttare l'API come ritiene opportuno. In alternativa, se desidera disattivare completamente le funzioni AI in Reactive Resume, può semplicemente rimuovere la chiave dalle sue impostazioni."
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr "C’è posta per te!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Il tuo account e tutti i tuoi dati sono stati eliminati con successo. Arrivederci!"
|
msgstr "Il tuo account e tutti i tuoi dati sono stati eliminati con successo. Arrivederci!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "La tua chiave API è archiviata in modo sicuro nella memoria locale del browser e viene utilizzata solo quando si effettuano richieste a OpenAI tramite il loro SDK ufficiale. Stai certo che la tua chiave non verrà trasmessa a nessun server esterno tranne quando interagisci con i servizi di OpenAI."
|
msgstr "La tua chiave API è archiviata in modo sicuro nella memoria locale del browser e viene utilizzata solo quando si effettuano richieste a OpenAI tramite il loro SDK ufficiale. Stai certo che la tua chiave non verrà trasmessa a nessun server esterno tranne quando interagisci con i servizi di OpenAI."
|
||||||
|
|
||||||
@ -1733,7 +1808,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."
|
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."
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr "L'aggiornamento della password è stato completato con successo."
|
msgstr "L'aggiornamento della password è stato completato con successo."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: ja\n"
|
"Language: ja\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:40\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Japanese\n"
|
"Language-Team: Japanese\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
@ -30,27 +30,27 @@ msgstr "{templatesCount} 個のテンプレートから選択できます"
|
|||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr "{value, plural, other {列}}"
|
msgstr "{value, plural, other {列}}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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は、素晴らしいオープンソースコントリビューターの助けを借りながら、空き時間に作りました。</0><1>もし、このアプリを気に入り、永久に無料で使い続けたいと思った方は、寄付をお願いします。</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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>もし履歴書作成中に問題に直面したり、あなたや他のユーザーがもっと簡単に履歴書を作成できるようなアイデアがあれば、リポジトリにissueを作成するか、私にメールを送ってください。</1>"
|
msgstr "<0>このアプリは完璧ではないと思いますが、完璧にしたいと思っています。</0><1>もし履歴書作成中に問題に直面したり、あなたや他のユーザーがもっと簡単に履歴書を作成できるようなアイデアがあれば、リポジトリにissueを作成するか、私にメールを送ってください。</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 "<0>注意:</0>OpenAI APIを利用することにより、利用者はOpenAIの<1>利用規約と</1> <2>プライバシーポリシーに</2>同意したものとみなされます。Reactive Resumeは、サービスの不適切な利用や不正利用に対して一切の責任を負わず、その結果生じるいかなる影響や責任も利用者のみにあることにご注意ください。"
|
msgstr "<0>注意:</0>OpenAI APIを利用することにより、利用者はOpenAIの<1>利用規約と</1> <2>プライバシーポリシーに</2>同意したものとみなされます。Reactive Resumeは、サービスの不適切な利用や不正利用に対して一切の責任を負わず、その結果生じるいかなる影響や責任も利用者のみにあることにご注意ください。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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>"
|
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."
|
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||||
msgstr "<0>二要素認証は現在無効になっています。</0>アカウントに認証アプリを追加することで有効にできます。"
|
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."
|
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||||
msgstr "<0>二要素認証が有効になっています。</0>サインインのたびにコードの入力が求められます。"
|
msgstr "<0>二要素認証が有効になっています。</0>サインインのたびにコードの入力が求められます。"
|
||||||
|
|
||||||
@ -102,8 +102,8 @@ msgstr "アカウント"
|
|||||||
msgid "Add a custom field"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "アイテムを追加"
|
msgstr "アイテムを追加"
|
||||||
@ -117,7 +117,7 @@ msgstr "アイテムを追加"
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr "セクションを追加"
|
msgstr "セクションを追加"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr "ページを追加"
|
msgstr "ページを追加"
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr "既にアカウントをお持ちですか?"
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr "ファイルの読み込み中にエラーが発生しました。"
|
msgstr "ファイルの読み込み中にエラーが発生しました。"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr "内部サーバーエラーが発生しました。"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr "予期せぬエラーが発生しました。"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr "他にもたくさん"
|
msgstr "他にもたくさん"
|
||||||
@ -191,6 +199,18 @@ msgstr "{languagesCount} 言語で利用可能"
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr "受賞者"
|
msgstr "受賞者"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr "Azure API バージョン"
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr "Azure OpenAI を使用する場合は、Azure OpenAI Base URL、デプロイメント 名 (モデル)、API バージョンが必要です。"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr "Azure OpenAI リソースの URL"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,7 +229,7 @@ msgstr "バックアップコード"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "バックアップコードは小文字のアルファベットまたは数字のみを含んだ10文字である必要があります。"
|
msgstr "バックアップコードは小文字のアルファベットまたは数字のみを含んだ10文字である必要があります。"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "ベースURL"
|
msgstr "ベースURL"
|
||||||
|
|
||||||
@ -246,8 +266,8 @@ msgstr "コミュニティによるコミュニティのための。"
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "キャンセル"
|
msgstr "キャンセル"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr "カジュアル"
|
msgstr "カジュアル"
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr "カジュアル"
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr "中央のアート"
|
msgstr "中央のアート"
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr "言語の変更"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr "パスワードを変更"
|
msgstr "パスワードを変更"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr "トーンを変更"
|
msgstr "トーンを変更"
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr "カラム"
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr "会社名"
|
msgstr "会社名"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr "自信があります"
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "続ける"
|
msgstr "続ける"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "コピー"
|
msgstr "コピー"
|
||||||
|
|
||||||
@ -351,7 +371,12 @@ msgstr "今すぐ作成する"
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr "サンプルの再開を作成"
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr "カスタムCSS"
|
msgstr "カスタムCSS"
|
||||||
@ -386,10 +411,10 @@ msgstr "ダーク"
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "日付"
|
msgstr "日付"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "日付または日付の範囲"
|
msgstr "日付または日付の範囲"
|
||||||
@ -407,11 +432,15 @@ msgstr "削除する"
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr "アカウントを削除する"
|
msgstr "アカウントを削除する"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr "配備名"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "説明"
|
msgstr "説明"
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr "デザインシングル/マルチページの再開"
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr "無効"
|
msgstr "無効"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||||
msgid "Disable 2FA"
|
msgid "Disable 2FA"
|
||||||
msgstr "2段階認証を無効にする"
|
msgstr "2段階認証を無効にする"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr "破棄する"
|
msgstr "破棄する"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "ドキュメンテーション"
|
msgstr "ドキュメンテーション"
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr "ドキュメンテーション"
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr "アカウントをお持ちでないですか?"
|
msgstr "アカウントをお持ちでないですか?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr "どこから始めたらいいかわからない?ドキュメントをヒット!"
|
msgstr "どこから始めたらいいかわからない?ドキュメントをヒット!"
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr "どこから始めたらいいかわからない?ドキュメントを
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr "あなたの言語が表示されませんか?<0>アプリの翻訳を手伝ってください。</0>"
|
msgstr "あなたの言語が表示されませんか?<0>アプリの翻訳を手伝ってください。</0>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr "Reactive Resume に寄付する"
|
msgstr "Reactive Resume に寄付する"
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr "Reactive Resume に寄付する"
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr "履歴書の JSON スナップショットをダウンロードします。 このファイルは、将来的に履歴書をインポートしたり、他の人と共有して共同作業を行うことができます。"
|
msgstr "履歴書の JSON スナップショットをダウンロードします。 このファイルは、将来的に履歴書をインポートしたり、他の人と共有して共同作業を行うことができます。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
msgstr "履歴書のPDFをダウンロードします。このファイルは履歴書の印刷、採用担当者への送信、ジョブポータルへのアップロードに使用できます。"
|
msgstr "履歴書のPDFをダウンロードします。このファイルは履歴書の印刷、採用担当者への送信、ジョブポータルへのアップロードに使用できます。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr "PDFをダウンロード"
|
msgstr "PDFをダウンロード"
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr "既存のアイテムを複製"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "既存の履歴書を複製"
|
msgstr "既存の履歴書を複製"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "編集"
|
msgstr "編集"
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr "効果"
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr "Eメール"
|
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"
|
msgid "Enable 2FA"
|
||||||
msgstr "二段階認証を有効にする"
|
msgstr "二段階認証を有効にする"
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr "認証アプリが提供するワンタイムパスワードを以下に
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr "メールアドレスを入力してください。アカウントが存在する場合、パスワードをリセットするためのリンクを送信します。"
|
msgstr "メールアドレスを入力してください。アカウントが存在する場合、パスワードをリセットするためのリンクを送信します。"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr "エラー {statusCode}"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr "エラー"
|
msgstr "エラー"
|
||||||
@ -544,6 +576,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
|||||||
msgstr "Reactive Resume で利用可能なテンプレートを探索し、作成した履歴書を表示します。 また、次の履歴書の作成をガイドするための例としても役立ちます。"
|
msgstr "Reactive Resume で利用可能なテンプレートを探索し、作成した履歴書を表示します。 また、次の履歴書の作成をガイドするための例としても役立ちます。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr "輸出"
|
msgstr "輸出"
|
||||||
@ -564,19 +597,19 @@ msgstr "最後に"
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr "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"
|
msgid "Font Family"
|
||||||
msgstr "フォントファミリー"
|
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"
|
msgid "Font Size"
|
||||||
msgstr "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"
|
msgid "Font Subset"
|
||||||
msgstr "フォントサブセット"
|
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"
|
msgid "Font Variants"
|
||||||
msgstr "Font Variants"
|
msgstr "Font Variants"
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr "Font Variants"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "例えば、どの会社にこの履歴書を送ったか、または仕事の説明へのリンクについての情報はここに記述することができる。"
|
msgstr "例えば、どの会社にこの履歴書を送ったか、または仕事の説明へのリンクについての情報はここに記述することができる。"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "忘れた"
|
msgstr "忘れた"
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr "パスワードをお忘れですか?"
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr "書式"
|
msgstr "書式"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr "バグを見つけたり、新しい機能を考えたりしましたか?"
|
msgstr "バグを見つけたり、新しい機能を考えたりしましたか?"
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr "バグを見つけたり、新しい機能を考えたりしましたか
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr "無料、永久に"
|
msgstr "無料、永久に"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr "フレンドリーな"
|
msgstr "フレンドリーな"
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr "古い履歴書に新しい名前を付けてください。"
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr "ダッシュボードに移動"
|
msgstr "ダッシュボードに移動"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr "ホームに戻る"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr "Google"
|
msgstr "Google"
|
||||||
@ -651,7 +688,7 @@ msgstr "Google"
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr "Grayscale"
|
msgstr "Grayscale"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr "グリッド"
|
msgstr "グリッド"
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr "ここでは、あなたの経験をカスタマイズし、パーソナライズするためにプロフィールを更新することができます。"
|
msgstr "ここでは、あなたの経験をカスタマイズし、パーソナライズするためにプロフィールを更新することができます。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Hidden"
|
msgstr "Hidden"
|
||||||
@ -677,7 +714,7 @@ msgstr "Hidden"
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr "非表示"
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr "アイコンを隠す"
|
msgstr "アイコンを隠す"
|
||||||
|
|
||||||
@ -734,7 +771,7 @@ msgstr "ライティングの改善"
|
|||||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||||
msgstr "このQRコードをスキャンできない場合は、このリンクを認証アプリにコピー&ペーストすることもできます。"
|
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."
|
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||||
msgstr "このセクションでは、パスワードを変更し、2段階認証を有効/無効にすることができます。"
|
msgstr "このセクションでは、パスワードを変更し、2段階認証を有効/無効にすることができます。"
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ msgid "In this section, you can delete your account and all the data associated
|
|||||||
msgstr "このセクションでは、アカウントとユーザーに関連付けられているすべてのデータを削除できます。 しかし、このアクションは <0>不可逆</0>であることに留意してください。"
|
msgstr "このセクションでは、アカウントとユーザーに関連付けられているすべてのデータを削除できます。 しかし、このアクションは <0>不可逆</0>であることに留意してください。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "情報"
|
msgstr "情報"
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr "john.doe@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "キーワード"
|
msgstr "キーワード"
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr "最終更新 {lastUpdated}"
|
msgstr "最終更新 {lastUpdated}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "レイアウト"
|
msgstr "レイアウト"
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr "手紙"
|
msgstr "手紙"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr "レベル"
|
msgstr "レベル"
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr "ライト"
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr "ライトまたはダークテーマ"
|
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"
|
msgid "Line Height"
|
||||||
msgstr "行の高さ"
|
msgstr "行の高さ"
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr "行の高さ"
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr "LinkedIn, JSON Resume etc."
|
msgstr "LinkedIn, JSON Resume etc."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr "リスト"
|
msgstr "リスト"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr "ログアウト"
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr "デバイスを紛失しましたか?"
|
msgstr "デバイスを紛失しましたか?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr "メイン"
|
msgstr "メイン"
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr "2023年3月"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr "2023年3月-現在"
|
msgstr "2023年3月-現在"
|
||||||
@ -923,7 +962,7 @@ msgstr "2023年3月-現在"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "マージン(マージン)"
|
msgstr "マージン(マージン)"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "最大トークン"
|
msgstr "最大トークン"
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr "最大トークン"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "MIT ライセンス"
|
msgstr "MIT ライセンス"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "モデル"
|
msgstr "モデル"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr "名前"
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "ネットワーク"
|
msgstr "ネットワーク"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||||
msgid "New Password"
|
msgid "New Password"
|
||||||
msgstr "新しいパスワード"
|
msgstr "新しいパスワード"
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr "注意: これにより、アカウントの安全性が低下します。"
|
msgstr "注意: これにより、アカウントの安全性が低下します。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "メモ"
|
msgstr "メモ"
|
||||||
@ -1009,16 +1049,16 @@ msgstr "OpenAIはテキストの選択肢を返しませんでした。"
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "OpenAI 統合"
|
msgstr "OpenAI 統合"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
msgstr "OpenAI/Azure OpenAI/Ollama 統合"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr "OpenAI/OllamaのAPIキー"
|
msgstr "OpenAI/OllamaのAPIキー"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
|
||||||
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/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"
|
msgid "Options"
|
||||||
msgstr "オプション"
|
msgstr "オプション"
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr "組織"
|
msgstr "組織"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "ページ"
|
msgstr "ページ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr "ページ {pageNumber}"
|
msgstr "ページ {pageNumber}"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr "パスワード"
|
msgstr "パスワード"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr "PDF"
|
msgstr "PDF"
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr "Powered by <0>Simple Icons</0>"
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr "プライマリ色"
|
msgstr "プライマリ色"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr "プライバシーポリシー"
|
msgstr "プライバシーポリシー"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr "プロフェッショナル"
|
msgstr "プロフェッショナル"
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr "公開"
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "発行者"
|
msgstr "発行者"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr "課題を上げる"
|
msgstr "課題を上げる"
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr "課題を上げる"
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr "Reactive Resume は、その活気に満ちたコミュニティのお
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Redo"
|
msgstr "Redo"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "削除"
|
msgstr "削除"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr "ページを削除"
|
msgstr "ページを削除"
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr "メール確認リンクを再送信する"
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr "リセット"
|
msgstr "リセット"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr "レイアウトをリセット"
|
msgstr "レイアウトをリセット"
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr "Reset Zoom"
|
msgstr "Reset Zoom"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr "再開する"
|
msgstr "再開する"
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr "四捨五入済み"
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "変更を保存"
|
msgstr "変更を保存"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "地元で節約する"
|
msgstr "地元で節約する"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "保存"
|
msgstr "保存"
|
||||||
|
|
||||||
@ -1262,15 +1300,15 @@ msgstr "パンまでスクロール"
|
|||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr "スクロールしてズーム"
|
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"
|
msgid "Search for a font family"
|
||||||
msgstr "フォントファミリーを検索"
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr "フォントサブセットを検索"
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr "フォントバリアントを検索"
|
msgstr "フォントバリアントを検索"
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr "言語を検索"
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr "2要素認証で保護"
|
msgstr "2要素認証で保護"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "セキュリティ"
|
msgstr "セキュリティ"
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr "Dockerを使ったセルフホスト"
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr "メールを送信"
|
msgstr "メールを送信"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr "メッセージを送る"
|
msgstr "メッセージを送る"
|
||||||
|
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr "アカウントに2要素認証を設定する"
|
msgstr "アカウントに2要素認証を設定する"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr "共有"
|
msgstr "共有"
|
||||||
@ -1330,7 +1369,7 @@ msgstr "改行を表示"
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr "ページ番号を表示"
|
msgstr "ページ番号を表示"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Sidebar"
|
msgstr "Sidebar"
|
||||||
|
|
||||||
@ -1408,6 +1447,7 @@ msgid "Start building your resume by giving it a name."
|
|||||||
msgstr "履歴書の作成を開始するには名前を付けてください。"
|
msgstr "履歴書の作成を開始するには名前を付けてください。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr "統計情報"
|
msgstr "統計情報"
|
||||||
@ -1422,17 +1462,17 @@ msgstr "バックアップコードを安全に保管してください"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr "Summary"
|
msgstr "Summary"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr "できることを寄付してアプリをサポートしましょう!"
|
msgstr "できることを寄付してアプリをサポートしましょう!"
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr "リアクティブレジュームをサポート"
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr "A4/レターページ形式に対応"
|
msgstr "A4/レターページ形式に対応"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr "ダークモードに切り替える"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr "ライトモードに切り替える"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr "システム"
|
msgstr "システム"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "テンプレート"
|
msgstr "テンプレート"
|
||||||
@ -1465,15 +1514,20 @@ msgstr "Testimonials"
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr "テキストの色"
|
msgstr "テキストの色"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
msgstr "入力したパスワードが一致しません。"
|
msgstr "お探しのページは存在しません。"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
|
msgstr "リクエストが無効です。"
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: 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."
|
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||||
msgstr "更新したい履歴書はロックされています。変更を加えたい場合はロックを解除してください。"
|
msgstr "更新したい履歴書はロックされています。変更を加えたい場合はロックを解除してください。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
#: 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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,7 @@ msgstr "ビューとダウンロードを追跡する"
|
|||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr "2要素認証"
|
msgstr "2要素認証"
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr "研究の種類"
|
msgstr "研究の種類"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr "タイポグラフィー(文法)"
|
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"
|
msgid "Underline Links"
|
||||||
msgstr "下線リンク"
|
msgstr "下線リンク"
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr "URL"
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr "URLはhttps:// で始まる必要があります"
|
msgstr "URLはhttps:// で始まる必要があります"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr "Azure OpenAI を使用する"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr "システムテーマを使用"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,7 +1714,7 @@ msgstr "バージョン4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "ビュー"
|
msgstr "ビュー"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "表示"
|
msgstr "表示"
|
||||||
|
|
||||||
@ -1665,11 +1728,11 @@ msgstr "パスワードを忘れた場合に備えて、パスワードリセッ
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr "Webサイト"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "最新バージョンの新機能"
|
msgstr "最新バージョンの新機能"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr "このページのアクセスは許可されていません。"
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "複数のキーワードを追加するには、カンマで区切るか、Enterキーを押します。"
|
msgstr "複数のキーワードを追加するには、カンマで区切るか、Enterキーを押します。"
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr "複数のキーワードを追加するには、カンマで区切るか
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "ユーザー名を入力することもできます。"
|
msgstr "ユーザー名を入力することもできます。"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr "APIキーを`sk-1234567890abcdef`に設定し、ベースURLをOllamaのURL、つまり`http://localhost:11434/v1`に設定するだけで、Ollamaと統合することもできます。また、好みに応じてモデルを選択し、最大トークンを設定することもできます。"
|
msgstr "<0>Azure OpenAIを使用</0>チェックボックスをオンにして、リソース URL をAzure OpenAI リソースに設定することで、Azure OpenAI と統合することもできます。<1>https://your-resource。 penai.azure.com</1>format@@0フィールドにデプロイメント名を設定し、Azureデプロイメントに適切なAPIバージョンを指定します。"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
msgstr "OpenAI API を使用して、コンテンツを生成したり、履歴書を作成したりする際に書き込みを改善したりできます。"
|
msgstr "APIキーを<0>sk-1234567890abcdef</0>に、ベースURLをOllamaURLに設定するだけでOllamaと統合することができます。 .<1>http://localhost:11434/v1</1>。モデルを選択して選択し、最大トークンを設定することもできます。"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
|
msgstr "OpenAI API、Azure OpenAI、Ollama を活用して、コンテンツの生成や履歴書の改善を支援することができます。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "公開共有を有効にすることで、履歴書が受信した閲覧数や履歴書をダウンロードした人数を追跡できます。"
|
msgstr "公開共有を有効にすることで、履歴書が受信した閲覧数や履歴書をダウンロードした人数を追跡できます。"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr "このページにアクセスする権限はありません。"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "<0>あなた自身のOpenAI APIキー</0>を取得するオプションがあります。このキーは、あなたが適切にAPIを活用することを可能にします。 Reactive Resume で AI 機能を完全に無効にしたい場合は、設定からキーを削除することもできます。"
|
msgstr "<0>あなた自身のOpenAI APIキー</0>を取得するオプションがあります。このキーは、あなたが適切にAPIを活用することを可能にします。 Reactive Resume で AI 機能を完全に無効にしたい場合は、設定からキーを削除することもできます。"
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr "メールを受け取りました!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "アカウントとすべてのデータが正常に削除されました。さようなら!"
|
msgstr "アカウントとすべてのデータが正常に削除されました。さようなら!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "API キーはブラウザーのローカルストレージに安全に保存され、公式の SDK 経由で OpenAI へのリクエストを行う場合にのみ使用されます。 OpenAIのサービスと相互作用する場合を除き、キーが外部サーバーに送信されることはありませんのでご安心ください。"
|
msgstr "API キーはブラウザーのローカルストレージに安全に保存され、公式の SDK 経由で OpenAI へのリクエストを行う場合にのみ使用されます。 OpenAIのサービスと相互作用する場合を除き、キーが外部サーバーに送信されることはありませんのでご安心ください。"
|
||||||
|
|
||||||
@ -1733,7 +1808,7 @@ msgstr "メールアドレスの確認が完了しました。"
|
|||||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||||
msgstr "OpenAI API キーがまだ設定されていません。OpenAI 統合を有効にするには、アカウント設定を開いてください。"
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr "パスワードが正常に更新されました。"
|
msgstr "パスワードが正常に更新されました。"
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: km\n"
|
"Language: km\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:32\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Khmer\n"
|
"Language-Team: Khmer\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
@ -30,27 +30,27 @@ msgstr ""
|
|||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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 ""
|
||||||
|
|
||||||
#: 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."
|
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||||
msgstr ""
|
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."
|
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -102,8 +102,8 @@ msgstr ""
|
|||||||
msgid "Add a custom field"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -117,7 +117,7 @@ msgstr ""
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr ""
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -191,6 +199,18 @@ msgstr ""
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,7 +229,7 @@ msgstr ""
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -246,8 +266,8 @@ msgstr ""
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr ""
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr ""
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr ""
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -351,7 +371,12 @@ msgstr ""
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr ""
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -386,10 +411,10 @@ msgstr ""
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -407,11 +432,15 @@ msgstr ""
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr ""
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||||
msgid "Disable 2FA"
|
msgid "Disable 2FA"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr ""
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr ""
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr ""
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr ""
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr ""
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||||
msgid "Enable 2FA"
|
msgid "Enable 2FA"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr ""
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -544,6 +576,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -564,19 +597,19 @@ msgstr ""
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr ""
|
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"
|
msgid "Font Family"
|
||||||
msgstr ""
|
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"
|
msgid "Font Size"
|
||||||
msgstr ""
|
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"
|
msgid "Font Subset"
|
||||||
msgstr ""
|
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"
|
msgid "Font Variants"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr ""
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr ""
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr ""
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr ""
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -651,7 +688,7 @@ msgstr ""
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -677,7 +714,7 @@ msgstr ""
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr ""
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -734,7 +771,7 @@ msgstr ""
|
|||||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||||
msgstr ""
|
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."
|
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ msgid "In this section, you can delete your account and all the data associated
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr ""
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr ""
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr ""
|
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"
|
msgid "Line Height"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr ""
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr ""
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -923,7 +962,7 @@ msgstr ""
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr ""
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||||
msgid "New Password"
|
msgid "New Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1009,16 +1049,16 @@ msgstr ""
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
|
||||||
msgid "OpenAI/Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: 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"
|
msgid "Options"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr ""
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr ""
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr ""
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr ""
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr ""
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1262,15 +1300,15 @@ msgstr ""
|
|||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr ""
|
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"
|
msgid "Search for a font family"
|
||||||
msgstr ""
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr ""
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr ""
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr ""
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1330,7 +1369,7 @@ msgstr ""
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1408,6 +1447,7 @@ msgid "Start building your resume by giving it a name."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1422,17 +1462,17 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr ""
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1465,8 +1514,12 @@ msgstr ""
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: apps/client/src/services/errors/translate-error.ts:49
|
||||||
@ -1474,6 +1527,7 @@ msgid "The resume you want to update is locked, please unlock if you wish to mak
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
#: 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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr ""
|
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"
|
msgid "Underline Links"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr ""
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,7 +1714,7 @@ msgstr ""
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1665,11 +1728,11 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr ""
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr ""
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr ""
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr ""
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1733,7 +1808,7 @@ msgstr ""
|
|||||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||||
msgstr ""
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: kn\n"
|
"Language: kn\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:32\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Kannada\n"
|
"Language-Team: Kannada\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -30,27 +30,27 @@ msgstr "ಆಯ್ಕೆ ಮಾಡಲು {templatesCount} ರೆಸ್ಯೂಮ
|
|||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr "{value, plural, one {ಕಾಲಮ್} other {ಕಾಲಮ್ಗಳು}}"
|
msgstr "{value, plural, one {ಕಾಲಮ್} other {ಕಾಲಮ್ಗಳು}}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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>ನನ್ನ ಬಿಡುವಿನ ವೇಳೆಯಲ್ಲಿ ನಾನು ಇತರ ಉತ್ತಮ ತೆರೆದ ಮೂಲ ಕೊಡುಗೆದಾರರಿಂದ ಹೆಚ್ಚಿನ ಸಹಾಯದೊಂದಿಗೆ ರಿಯಾಕ್ಟಿವ್ ರೆಸ್ಯೂಮೇ ಅನ್ನು ಹೆಚ್ಚಾಗಿ ನಿರ್ಮಿಸಿದ್ದೇನೆ.</0> <1>ನೀವು ಅಪ್ಲಿಕೇಶನ್ ಅನ್ನು ಇಷ್ಟಪಟ್ಟರೆ ಮತ್ತು ಅದನ್ನು ಶಾಶ್ವತವಾಗಿ ಉಚಿತವಾಗಿ ಇರಿಸುವುದನ್ನು ಬೆಂಬಲಿಸಲು ಬಯಸಿದರೆ, ದಯವಿಟ್ಟು ನೀವು ನೀಡಲು ಸಾಧ್ಯವಿರುವ ಎಲ್ಲವನ್ನೂ ದೇಣಿಗೆ ನೀಡಿ.</1>"
|
msgstr "<0>ನನ್ನ ಬಿಡುವಿನ ವೇಳೆಯಲ್ಲಿ ನಾನು ಇತರ ಉತ್ತಮ ತೆರೆದ ಮೂಲ ಕೊಡುಗೆದಾರರಿಂದ ಹೆಚ್ಚಿನ ಸಹಾಯದೊಂದಿಗೆ ರಿಯಾಕ್ಟಿವ್ ರೆಸ್ಯೂಮೇ ಅನ್ನು ಹೆಚ್ಚಾಗಿ ನಿರ್ಮಿಸಿದ್ದೇನೆ.</0> <1>ನೀವು ಅಪ್ಲಿಕೇಶನ್ ಅನ್ನು ಇಷ್ಟಪಟ್ಟರೆ ಮತ್ತು ಅದನ್ನು ಶಾಶ್ವತವಾಗಿ ಉಚಿತವಾಗಿ ಇರಿಸುವುದನ್ನು ಬೆಂಬಲಿಸಲು ಬಯಸಿದರೆ, ದಯವಿಟ್ಟು ನೀವು ನೀಡಲು ಸಾಧ್ಯವಿರುವ ಎಲ್ಲವನ್ನೂ ದೇಣಿಗೆ ನೀಡಿ.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 "<0>ಗಮನಿಸಿ:</0> OpenAI API ಅನ್ನು ಬಳಸುವ ಮೂಲಕ, ನೀವು <1> ಬಳಕೆಯ ನಿಯಮಗಳನ್ನು ಅಂಗೀಕರಿಸುತ್ತೀರಿ ಮತ್ತು ಸಮ್ಮತಿಸುತ್ತೀರಿ</1> ಮತ್ತು <2>ಗೌಪ್ಯತೆ ನೀತಿ</2> OpenAI ನಿಂದ ವಿವರಿಸಲಾಗಿದೆ. ಸೇವೆಯ ಯಾವುದೇ ಅಸಮರ್ಪಕ ಅಥವಾ ಅನಧಿಕೃತ ಬಳಕೆಗೆ ಪ್ರತಿಕ್ರಿಯಾತ್ಮಕ ಪುನರಾರಂಭವು ಯಾವುದೇ ಜವಾಬ್ದಾರಿಯನ್ನು ಹೊಂದಿರುವುದಿಲ್ಲ ಮತ್ತು ಯಾವುದೇ ಪರಿಣಾಮವಾಗಿ ಉಂಟಾಗುವ ಪರಿಣಾಮಗಳು ಅಥವಾ ಹೊಣೆಗಾರಿಕೆಗಳು ಬಳಕೆದಾರರ ಮೇಲೆ ಮಾತ್ರ ಅವಲಂಬಿತವಾಗಿರುತ್ತದೆ ಎಂಬುದನ್ನು ದಯವಿಟ್ಟು ಗಮನಿಸಿ."
|
msgstr "<0>ಗಮನಿಸಿ:</0> OpenAI API ಅನ್ನು ಬಳಸುವ ಮೂಲಕ, ನೀವು <1> ಬಳಕೆಯ ನಿಯಮಗಳನ್ನು ಅಂಗೀಕರಿಸುತ್ತೀರಿ ಮತ್ತು ಸಮ್ಮತಿಸುತ್ತೀರಿ</1> ಮತ್ತು <2>ಗೌಪ್ಯತೆ ನೀತಿ</2> OpenAI ನಿಂದ ವಿವರಿಸಲಾಗಿದೆ. ಸೇವೆಯ ಯಾವುದೇ ಅಸಮರ್ಪಕ ಅಥವಾ ಅನಧಿಕೃತ ಬಳಕೆಗೆ ಪ್ರತಿಕ್ರಿಯಾತ್ಮಕ ಪುನರಾರಂಭವು ಯಾವುದೇ ಜವಾಬ್ದಾರಿಯನ್ನು ಹೊಂದಿರುವುದಿಲ್ಲ ಮತ್ತು ಯಾವುದೇ ಪರಿಣಾಮವಾಗಿ ಉಂಟಾಗುವ ಪರಿಣಾಮಗಳು ಅಥವಾ ಹೊಣೆಗಾರಿಕೆಗಳು ಬಳಕೆದಾರರ ಮೇಲೆ ಮಾತ್ರ ಅವಲಂಬಿತವಾಗಿರುತ್ತದೆ ಎಂಬುದನ್ನು ದಯವಿಟ್ಟು ಗಮನಿಸಿ."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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>"
|
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."
|
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||||
msgstr "<0>ಎರಡು ಅಂಶದ ದೃಢೀಕರಣವನ್ನು ಪ್ರಸ್ತುತ ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ.</0> ನಿಮ್ಮ ಖಾತೆಗೆ ದೃಢೀಕರಣ ಅಪ್ಲಿಕೇಶನ್ ಅನ್ನು ಸೇರಿಸುವ ಮೂಲಕ ನೀವು ಅದನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಬಹುದು."
|
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."
|
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||||
msgstr "<0>ಎರಡು ಅಂಶದ ದೃಢೀಕರಣವನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ.</0> ನೀವು ಸೈನ್ ಇನ್ ಮಾಡಿದಾಗಲೆಲ್ಲಾ ಕೋಡ್ ಅನ್ನು ನಮೂದಿಸಲು ನಿಮ್ಮನ್ನು ಕೇಳಲಾಗುತ್ತದೆ."
|
msgstr "<0>ಎರಡು ಅಂಶದ ದೃಢೀಕರಣವನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ.</0> ನೀವು ಸೈನ್ ಇನ್ ಮಾಡಿದಾಗಲೆಲ್ಲಾ ಕೋಡ್ ಅನ್ನು ನಮೂದಿಸಲು ನಿಮ್ಮನ್ನು ಕೇಳಲಾಗುತ್ತದೆ."
|
||||||
|
|
||||||
@ -102,8 +102,8 @@ msgstr "ಖಾತೆಗಳು"
|
|||||||
msgid "Add a custom field"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "ಹೊಸ ಐಟಂ ಸೇರಿಸಿ"
|
msgstr "ಹೊಸ ಐಟಂ ಸೇರಿಸಿ"
|
||||||
@ -117,7 +117,7 @@ msgstr "ಹೊಸ ಐಟಂ ಸೇರಿಸಿ"
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr "ಹೊಸ ವಿಭಾಗವನ್ನು ಸೇರಿಸಿ"
|
msgstr "ಹೊಸ ವಿಭಾಗವನ್ನು ಸೇರಿಸಿ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr "ಹೊಸ ಪುಟವನ್ನು ಸೇರಿಸಿ"
|
msgstr "ಹೊಸ ಪುಟವನ್ನು ಸೇರಿಸಿ"
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr "ಈಗಾಗಲೇ ಖಾತೆ ಹೊಂದಿದ್ದೀರ?
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr "ಫೈಲ್ ಅನ್ನು ಮೌಲ್ಯೀಕರಿಸುವಾಗ ದೋಷ ಸಂಭವಿಸಿದೆ."
|
msgstr "ಫೈಲ್ ಅನ್ನು ಮೌಲ್ಯೀಕರಿಸುವಾಗ ದೋಷ ಸಂಭವಿಸಿದೆ."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr "ಮತ್ತು ಇನ್ನೂ ಅನೇಕ..."
|
msgstr "ಮತ್ತು ಇನ್ನೂ ಅನೇಕ..."
|
||||||
@ -191,6 +199,18 @@ msgstr ""
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr "ಪ್ರಶಸ್ತಿದಾರ"
|
msgstr "ಪ್ರಶಸ್ತಿದಾರ"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,7 +229,7 @@ msgstr "ಬ್ಯಾಕಪ್ ಕೋಡ್"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "ಬ್ಯಾಕಪ್ ಕೋಡ್ಗಳು ಸಣ್ಣ ಅಕ್ಷರಗಳು ಅಥವಾ ಸಂಖ್ಯೆಗಳನ್ನು ಮಾತ್ರ ಹೊಂದಿರಬಹುದು ಮತ್ತು ನಿಖರವಾಗಿ 10 ಅಕ್ಷರಗಳಾಗಿರಬೇಕು."
|
msgstr "ಬ್ಯಾಕಪ್ ಕೋಡ್ಗಳು ಸಣ್ಣ ಅಕ್ಷರಗಳು ಅಥವಾ ಸಂಖ್ಯೆಗಳನ್ನು ಮಾತ್ರ ಹೊಂದಿರಬಹುದು ಮತ್ತು ನಿಖರವಾಗಿ 10 ಅಕ್ಷರಗಳಾಗಿರಬೇಕು."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -246,8 +266,8 @@ msgstr "ಸಮುದಾಯದಿಂದ, ಸಮುದಾಯಕ್ಕಾಗಿ."
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "ರದ್ದುಮಾಡಿ"
|
msgstr "ರದ್ದುಮಾಡಿ"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr "ಸಾಂದರ್ಭಿಕ"
|
msgstr "ಸಾಂದರ್ಭಿಕ"
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr "ಸಾಂದರ್ಭಿಕ"
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr "ಸೆಂಟರ್ ಆರ್ಟ್ಬೋರ್ಡ್"
|
msgstr "ಸೆಂಟರ್ ಆರ್ಟ್ಬೋರ್ಡ್"
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr "ಗುಪ್ತಪದವನ್ನು ಬದಲಾಯಿಸು"
|
msgstr "ಗುಪ್ತಪದವನ್ನು ಬದಲಾಯಿಸು"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr "ಟೋನ್ ಬದಲಾಯಿಸಿ"
|
msgstr "ಟೋನ್ ಬದಲಾಯಿಸಿ"
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr "ಕಾಲಮ್ಗಳು"
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr "ಕಂಪನಿ"
|
msgstr "ಕಂಪನಿ"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr "ಆತ್ಮವಿಶ್ವಾಸ"
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "ಮುಂದುವರಿಸಿ"
|
msgstr "ಮುಂದುವರಿಸಿ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "ನಕಲು ಮಾಡಿ"
|
msgstr "ನಕಲು ಮಾಡಿ"
|
||||||
|
|
||||||
@ -351,7 +371,12 @@ msgstr "ಇದೀಗ ಒಂದನ್ನು ರಚಿಸಿ"
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr "ಮಾದರಿ ರೆಸ್ಯೂಮ್ ರಚಿಸಿ"
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -386,10 +411,10 @@ msgstr "ಕತ್ತಲು"
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "ದಿನಾಂಕ"
|
msgstr "ದಿನಾಂಕ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -407,11 +432,15 @@ msgstr "ಅಳಿಸಿ"
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr "ಖಾತೆಯನ್ನು ಅಳಿಸಿ"
|
msgstr "ಖಾತೆಯನ್ನು ಅಳಿಸಿ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "ವಿವರಣೆ"
|
msgstr "ವಿವರಣೆ"
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr "ಏಕ/ಬಹು ಪುಟ ರೆಸ್ಯೂಮ್ಗಳನ್ನು
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr "ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ"
|
msgstr "ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||||
msgid "Disable 2FA"
|
msgid "Disable 2FA"
|
||||||
msgstr "2FA ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ"
|
msgstr "2FA ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr "ತಿರಸ್ಕರಿಸು"
|
msgstr "ತಿರಸ್ಕರಿಸು"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "ದಾಖಲೀಕರಣ"
|
msgstr "ದಾಖಲೀಕರಣ"
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr "ದಾಖಲೀಕರಣ"
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr "ಖಾತೆ ಇಲ್ಲವೇ?"
|
msgstr "ಖಾತೆ ಇಲ್ಲವೇ?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr "ಎಲ್ಲಿಂದ ಪ್ರಾರಂಭಿಸಬೇಕು ಎಂದು ತಿಳಿದಿಲ್ಲವೇ? ಡಾಕ್ಸ್ ಅನ್ನು ಬಳಸಿ!"
|
msgstr "ಎಲ್ಲಿಂದ ಪ್ರಾರಂಭಿಸಬೇಕು ಎಂದು ತಿಳಿದಿಲ್ಲವೇ? ಡಾಕ್ಸ್ ಅನ್ನು ಬಳಸಿ!"
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr "ಎಲ್ಲಿಂದ ಪ್ರಾರಂಭಿಸಬೇಕು ಎಂದ
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr "ನಿಮ್ಮ ಭಾಷೆ ಕಾಣುತ್ತಿಲ್ಲವೇ? <0>ಅಪ್ಲಿಕೇಶನ್ ಅನ್ನು ಭಾಷಾಂತರಿಸಲು ಸಹಾಯ ಮಾಡಿ.</0>"
|
msgstr "ನಿಮ್ಮ ಭಾಷೆ ಕಾಣುತ್ತಿಲ್ಲವೇ? <0>ಅಪ್ಲಿಕೇಶನ್ ಅನ್ನು ಭಾಷಾಂತರಿಸಲು ಸಹಾಯ ಮಾಡಿ.</0>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr "ರಿಯಾಕ್ಟಿವ್ ರೆಸ್ಯೂಮ್ಗೆ ದೇಣಿಗೆ ನೀಡಿ"
|
msgstr "ರಿಯಾಕ್ಟಿವ್ ರೆಸ್ಯೂಮ್ಗೆ ದೇಣಿಗೆ ನೀಡಿ"
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr "ರಿಯಾಕ್ಟಿವ್ ರೆಸ್ಯೂಮ್ಗೆ ದೇ
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr "ನಿಮ್ಮ ರೆಸ್ಯೂಮ್ನ JSON ಸ್ನ್ಯಾಪ್ಶಾಟ್ ಅನ್ನು ಡೌನ್ಲೋಡ್ ಮಾಡಿ. ಭವಿಷ್ಯದಲ್ಲಿ ನಿಮ್ಮ ರೆಸ್ಯೂಮ್ನ ಆಮದು ಮಾಡಿಕೊಳ್ಳಲು ಈ ಫೈಲ್ ಅನ್ನು ಬಳಸಬಹುದು ಅಥವಾ ಸಹಯೋಗಿಸಲು ಇತರರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಬಹುದು."
|
msgstr "ನಿಮ್ಮ ರೆಸ್ಯೂಮ್ನ JSON ಸ್ನ್ಯಾಪ್ಶಾಟ್ ಅನ್ನು ಡೌನ್ಲೋಡ್ ಮಾಡಿ. ಭವಿಷ್ಯದಲ್ಲಿ ನಿಮ್ಮ ರೆಸ್ಯೂಮ್ನ ಆಮದು ಮಾಡಿಕೊಳ್ಳಲು ಈ ಫೈಲ್ ಅನ್ನು ಬಳಸಬಹುದು ಅಥವಾ ಸಹಯೋಗಿಸಲು ಇತರರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಬಹುದು."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
msgstr "ನಿಮ್ಮ ರೆಸ್ಯೂಮ್ನ PDF ಅನ್ನು ಡೌನ್ಲೋಡ್ ಮಾಡಿ. ನಿಮ್ಮ ರೆಸ್ಯೂಮ್ ಅನ್ನು ಪ್ರಿಂಟ್ ಮಾಡಲು, ನೇಮಕಾತಿ ಮಾಡುವವರಿಗೆ ಕಳುಹಿಸಲು ಅಥವಾ ಜಾಬ್ ಪೋರ್ಟಲ್ಗಳಲ್ಲಿ ಅಪ್ಲೋಡ್ ಮಾಡಲು ಈ ಫೈಲ್ ಅನ್ನು ಬಳಸಬಹುದು."
|
msgstr "ನಿಮ್ಮ ರೆಸ್ಯೂಮ್ನ PDF ಅನ್ನು ಡೌನ್ಲೋಡ್ ಮಾಡಿ. ನಿಮ್ಮ ರೆಸ್ಯೂಮ್ ಅನ್ನು ಪ್ರಿಂಟ್ ಮಾಡಲು, ನೇಮಕಾತಿ ಮಾಡುವವರಿಗೆ ಕಳುಹಿಸಲು ಅಥವಾ ಜಾಬ್ ಪೋರ್ಟಲ್ಗಳಲ್ಲಿ ಅಪ್ಲೋಡ್ ಮಾಡಲು ಈ ಫೈಲ್ ಅನ್ನು ಬಳಸಬಹುದು."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr "ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ಐಟಂ ಅನ್ನ
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ರೆಸ್ಯೂಮ್ ಅನ್ನು ನಕಲು ಮಾಡಿ"
|
msgstr "ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ರೆಸ್ಯೂಮ್ ಅನ್ನು ನಕಲು ಮಾಡಿ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "ತಿದ್ದು"
|
msgstr "ತಿದ್ದು"
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr "ಪರಿಣಾಮಗಳು"
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr "ಇಮೇಲ್"
|
msgstr "ಇಮೇಲ್"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||||
msgid "Enable 2FA"
|
msgid "Enable 2FA"
|
||||||
msgstr "2FA ಸಕ್ರಿಯಗೊಳಿಸಿ"
|
msgstr "2FA ಸಕ್ರಿಯಗೊಳಿಸಿ"
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr "ನಿಮ್ಮ ದೃಢೀಕರಣ ಅಪ್ಲಿಕೇಶನ್
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr "ನಿಮ್ಮ ಇಮೇಲ್ ವಿಳಾಸವನ್ನು ನಮೂದಿಸಿ ಮತ್ತು ಖಾತೆಯು ಅಸ್ತಿತ್ವದಲ್ಲಿದ್ದರೆ ನಿಮ್ಮ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ಮರುಹೊಂದಿಸಲು ನಾವು ನಿಮಗೆ ಲಿಂಕ್ ಅನ್ನು ಕಳುಹಿಸುತ್ತೇವೆ."
|
msgstr "ನಿಮ್ಮ ಇಮೇಲ್ ವಿಳಾಸವನ್ನು ನಮೂದಿಸಿ ಮತ್ತು ಖಾತೆಯು ಅಸ್ತಿತ್ವದಲ್ಲಿದ್ದರೆ ನಿಮ್ಮ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ಮರುಹೊಂದಿಸಲು ನಾವು ನಿಮಗೆ ಲಿಂಕ್ ಅನ್ನು ಕಳುಹಿಸುತ್ತೇವೆ."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr "ದೋಷಗಳು"
|
msgstr "ದೋಷಗಳು"
|
||||||
@ -544,6 +576,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
|||||||
msgstr "ಪ್ರತಿಕ್ರಿಯಾತ್ಮಕ ರೆಸ್ಯೂಮ್ ಲಭ್ಯವಿರುವ ಟೆಂಪ್ಲೇಟ್ಗಳನ್ನು ಅನ್ವೇಷಿಸಿ ಮತ್ತು ಅವರೊಂದಿಗೆ ರಚಿಸಲಾದ ರೆಸ್ಯೂಮ್ಗಳನ್ನು ವೀಕ್ಷಿಸಿ. ನಿಮ್ಮ ಮುಂದಿನ ರೆಸ್ಯೂಮ್ ರಚನೆಗೆ ಮಾರ್ಗದರ್ಶನ ನೀಡಲು ಅವರು ಉದಾಹರಣೆಗಳಾಗಿ ಕಾರ್ಯನಿರ್ವಹಿಸಬಹುದು."
|
msgstr "ಪ್ರತಿಕ್ರಿಯಾತ್ಮಕ ರೆಸ್ಯೂಮ್ ಲಭ್ಯವಿರುವ ಟೆಂಪ್ಲೇಟ್ಗಳನ್ನು ಅನ್ವೇಷಿಸಿ ಮತ್ತು ಅವರೊಂದಿಗೆ ರಚಿಸಲಾದ ರೆಸ್ಯೂಮ್ಗಳನ್ನು ವೀಕ್ಷಿಸಿ. ನಿಮ್ಮ ಮುಂದಿನ ರೆಸ್ಯೂಮ್ ರಚನೆಗೆ ಮಾರ್ಗದರ್ಶನ ನೀಡಲು ಅವರು ಉದಾಹರಣೆಗಳಾಗಿ ಕಾರ್ಯನಿರ್ವಹಿಸಬಹುದು."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr "ರಫ್ತು ಮಾಡು"
|
msgstr "ರಫ್ತು ಮಾಡು"
|
||||||
@ -564,19 +597,19 @@ msgstr "ಅಂತಿಮವಾಗಿ,"
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr "ಕಾಗುಣಿತ ಮತ್ತು ವ್ಯಾಕರಣವನ್ನು ಸರಿಪಡಿಸಿ"
|
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"
|
msgid "Font Family"
|
||||||
msgstr "ಅಕ್ಷರಗಳ ಸಮೂಹ"
|
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"
|
msgid "Font Size"
|
||||||
msgstr "ಅಕ್ಷರ ಗಾತ್ರ"
|
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"
|
msgid "Font Subset"
|
||||||
msgstr "ಅಕ್ಷರಗಳ ಉಪವಿಭಾಗ"
|
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"
|
msgid "Font Variants"
|
||||||
msgstr "ಅಕ್ಷರಗಳ ರೂಪಾಂತರಗಳು"
|
msgstr "ಅಕ್ಷರಗಳ ರೂಪಾಂತರಗಳು"
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr "ಅಕ್ಷರಗಳ ರೂಪಾಂತರಗಳು"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "ಉದಾಹರಣೆಗೆ, ನೀವು ಈ ರೆಸ್ಯೂಮ್ ಅನ್ನು ಯಾವ ಕಂಪನಿಗಳಿಗೆ ಕಳುಹಿಸಿದ್ದೀರಿ ಅಥವಾ ಉದ್ಯೋಗ ವಿವರಣೆಗಳ ಲಿಂಕ್ಗಳನ್ನು ಇಲ್ಲಿ ನಮೂದಿಸಬಹುದು."
|
msgstr "ಉದಾಹರಣೆಗೆ, ನೀವು ಈ ರೆಸ್ಯೂಮ್ ಅನ್ನು ಯಾವ ಕಂಪನಿಗಳಿಗೆ ಕಳುಹಿಸಿದ್ದೀರಿ ಅಥವಾ ಉದ್ಯೋಗ ವಿವರಣೆಗಳ ಲಿಂಕ್ಗಳನ್ನು ಇಲ್ಲಿ ನಮೂದಿಸಬಹುದು."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "ಮರೆತುಬಿಡಿ"
|
msgstr "ಮರೆತುಬಿಡಿ"
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr "ನಿಮ್ಮ ಪಾಸ್ವರ್ಡ್ ಮರೆತಿರುವಿ
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr "ಸ್ವರೂಪ"
|
msgstr "ಸ್ವರೂಪ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr "ದೋಷ ಕಂಡುಬಂದಿದೆಯೇ ಅಥವಾ ಹೊಸ ವೈಶಿಷ್ಟ್ಯಕ್ಕಾಗಿ ಕಲ್ಪನೆ ಇದೆಯೇ?"
|
msgstr "ದೋಷ ಕಂಡುಬಂದಿದೆಯೇ ಅಥವಾ ಹೊಸ ವೈಶಿಷ್ಟ್ಯಕ್ಕಾಗಿ ಕಲ್ಪನೆ ಇದೆಯೇ?"
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr "ದೋಷ ಕಂಡುಬಂದಿದೆಯೇ ಅಥವಾ ಹೊಸ
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr "ಉಚಿತ ಶಾಶ್ವತವಾಗಿ"
|
msgstr "ಉಚಿತ ಶಾಶ್ವತವಾಗಿ"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr "ಸ್ನೇಹಪರ"
|
msgstr "ಸ್ನೇಹಪರ"
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr "ನಿಮ್ಮ ಹಳೆಯ ರೆಸ್ಯೂಮೇಗೆ ಹೊಸ
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr "ಡ್ಯಾಶ್ಬೋರ್ಡ್ಗೆ ಹೋಗಿ"
|
msgstr "ಡ್ಯಾಶ್ಬೋರ್ಡ್ಗೆ ಹೋಗಿ"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr "ಗೂಗಲ್"
|
msgstr "ಗೂಗಲ್"
|
||||||
@ -651,7 +688,7 @@ msgstr "ಗೂಗಲ್"
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr "ಗ್ರೇಸ್ಕೇಲ್"
|
msgstr "ಗ್ರೇಸ್ಕೇಲ್"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr "ಗ್ರಿಡ್"
|
msgstr "ಗ್ರಿಡ್"
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr "ಇಲ್ಲಿ, ನಿಮ್ಮ ಅನುಭವವನ್ನು ಕಸ್ಟಮೈಸ್ ಮಾಡಲು ಮತ್ತು ವೈಯಕ್ತೀಕರಿಸಲು ನಿಮ್ಮ ಪ್ರೊಫೈಲ್ ಅನ್ನು ನೀವು ನವೀಕರಿಸಬಹುದು."
|
msgstr "ಇಲ್ಲಿ, ನಿಮ್ಮ ಅನುಭವವನ್ನು ಕಸ್ಟಮೈಸ್ ಮಾಡಲು ಮತ್ತು ವೈಯಕ್ತೀಕರಿಸಲು ನಿಮ್ಮ ಪ್ರೊಫೈಲ್ ಅನ್ನು ನೀವು ನವೀಕರಿಸಬಹುದು."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "ಮರೆಮಾಡಲಾಗಿದೆ"
|
msgstr "ಮರೆಮಾಡಲಾಗಿದೆ"
|
||||||
@ -677,7 +714,7 @@ msgstr "ಮರೆಮಾಡಲಾಗಿದೆ"
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr "ಮರೆಮಾಡಿ"
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr "ಐಕಾನ್ಗಳನ್ನು ಮರೆಮಾಡಿ"
|
msgstr "ಐಕಾನ್ಗಳನ್ನು ಮರೆಮಾಡಿ"
|
||||||
|
|
||||||
@ -734,7 +771,7 @@ msgstr "ಬರವಣಿಗೆಯನ್ನು ಸುಧಾರಿಸಿ"
|
|||||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||||
msgstr "ಈ QR ಕೋಡ್ ಅನ್ನು ಸ್ಕ್ಯಾನ್ ಮಾಡಲು ನಿಮಗೆ ಸಾಧ್ಯವಾಗದಿದ್ದರೆ, ನೀವು ಈ ಲಿಂಕ್ ಅನ್ನು ನಿಮ್ಮ ದೃಢೀಕರಣ ಅಪ್ಲಿಕೇಶನ್ಗೆ ನಕಲಿಸಬಹುದು."
|
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."
|
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||||
msgstr "ಈ ವಿಭಾಗದಲ್ಲಿ, ನೀವು ನಿಮ್ಮ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ಬದಲಾಯಿಸಬಹುದು ಮತ್ತು ಎರಡು ಅಂಶಗಳ ದೃಢೀಕರಣವನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಬಹುದು/ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಬಹುದು."
|
msgstr "ಈ ವಿಭಾಗದಲ್ಲಿ, ನೀವು ನಿಮ್ಮ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ಬದಲಾಯಿಸಬಹುದು ಮತ್ತು ಎರಡು ಅಂಶಗಳ ದೃಢೀಕರಣವನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಬಹುದು/ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಬಹುದು."
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ msgid "In this section, you can delete your account and all the data associated
|
|||||||
msgstr "ಈ ವಿಭಾಗದಲ್ಲಿ, ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಮತ್ತು ನಿಮ್ಮ ಬಳಕೆದಾರರಿಗೆ ಸಂಬಂಧಿಸಿದ ಎಲ್ಲಾ ಡೇಟಾವನ್ನು ನೀವು ಅಳಿಸಬಹುದು, ಆದರೆ ದಯವಿಟ್ಟು <0>ಈ ಕ್ರಿಯೆಯನ್ನು ಬದಲಾಯಿಸಲಾಗುವುದಿಲ್ಲ</0> ಎಂಬುದನ್ನು ನೆನಪಿನಲ್ಲಿಡಿ."
|
msgstr "ಈ ವಿಭಾಗದಲ್ಲಿ, ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಮತ್ತು ನಿಮ್ಮ ಬಳಕೆದಾರರಿಗೆ ಸಂಬಂಧಿಸಿದ ಎಲ್ಲಾ ಡೇಟಾವನ್ನು ನೀವು ಅಳಿಸಬಹುದು, ಆದರೆ ದಯವಿಟ್ಟು <0>ಈ ಕ್ರಿಯೆಯನ್ನು ಬದಲಾಯಿಸಲಾಗುವುದಿಲ್ಲ</0> ಎಂಬುದನ್ನು ನೆನಪಿನಲ್ಲಿಡಿ."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "ಮಾಹಿತಿ"
|
msgstr "ಮಾಹಿತಿ"
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr "john.doe@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "ಕೀವರ್ಡ್ಗಳು"
|
msgstr "ಕೀವರ್ಡ್ಗಳು"
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr "ಕೊನೆಯದಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ {lastUpdated}"
|
msgstr "ಕೊನೆಯದಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ {lastUpdated}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "ಲೇಔಟ್"
|
msgstr "ಲೇಔಟ್"
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr "ಪತ್ರಗಳು"
|
msgstr "ಪತ್ರಗಳು"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr "ಮಟ್ಟ"
|
msgstr "ಮಟ್ಟ"
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr "ತಿಳಿ ಬಣ್ಣ"
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr "ಲೈಟ್ ಅಥವಾ ಡಾರ್ಕ್ ಥೀಮ್"
|
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"
|
msgid "Line Height"
|
||||||
msgstr "ಗೆರೆಯ ಎತ್ತರ"
|
msgstr "ಗೆರೆಯ ಎತ್ತರ"
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr "ಗೆರೆಯ ಎತ್ತರ"
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr "ಲಿಂಕ್ಡ್ಇನ್, JSON ರೆಸ್ಯೂಮ್, ಇತ್ಯಾದಿ."
|
msgstr "ಲಿಂಕ್ಡ್ಇನ್, JSON ರೆಸ್ಯೂಮ್, ಇತ್ಯಾದಿ."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr "ಪಟ್ಟಿ"
|
msgstr "ಪಟ್ಟಿ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr "ಲಾಗ್ ಔಟ್"
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr "ನಿಮ್ಮ ಸಾಧನವನ್ನು ಕಳೆದುಕೊಂಡಿರುವಿರಾ?"
|
msgstr "ನಿಮ್ಮ ಸಾಧನವನ್ನು ಕಳೆದುಕೊಂಡಿರುವಿರಾ?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr "ಮುಖ್ಯ"
|
msgstr "ಮುಖ್ಯ"
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr "ಮಾರ್ಚ್ 2023"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr "ಮಾರ್ಚ್ 2023 - ಪ್ರಸ್ತುತ"
|
msgstr "ಮಾರ್ಚ್ 2023 - ಪ್ರಸ್ತುತ"
|
||||||
@ -923,7 +962,7 @@ msgstr "ಮಾರ್ಚ್ 2023 - ಪ್ರಸ್ತುತ"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "ಅಂಚು"
|
msgstr "ಅಂಚು"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "MIT ಪರವಾನಗಿ"
|
msgstr "MIT ಪರವಾನಗಿ"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr "ಹೆಸರು"
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "ನೆಟ್ವರ್ಕ್"
|
msgstr "ನೆಟ್ವರ್ಕ್"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||||
msgid "New Password"
|
msgid "New Password"
|
||||||
msgstr "ಹೊಸ ಪಾಸ್ವರ್ಡ್"
|
msgstr "ಹೊಸ ಪಾಸ್ವರ್ಡ್"
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr "ಗಮನಿಸಿ: ಇದು ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಕಡಿಮೆ ಸುರಕ್ಷಿತಗೊಳಿಸುತ್ತದೆ."
|
msgstr "ಗಮನಿಸಿ: ಇದು ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಕಡಿಮೆ ಸುರಕ್ಷಿತಗೊಳಿಸುತ್ತದೆ."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "ಟಿಪ್ಪಣಿಗಳು"
|
msgstr "ಟಿಪ್ಪಣಿಗಳು"
|
||||||
@ -1009,16 +1049,16 @@ msgstr "OpenAI ನಿಮ್ಮ ಪಠ್ಯಕ್ಕಾಗಿ ಯಾವುದೇ
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "OpenAI ಏಕೀಕರಣ"
|
msgstr "OpenAI ಏಕೀಕರಣ"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
|
||||||
msgid "OpenAI/Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: 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"
|
msgid "Options"
|
||||||
msgstr "ಆಯ್ಕೆಗಳು"
|
msgstr "ಆಯ್ಕೆಗಳು"
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr "ಸಂಸ್ಥೆ"
|
msgstr "ಸಂಸ್ಥೆ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "ಪುಟ"
|
msgstr "ಪುಟ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr "ಗುಪ್ತಪದ"
|
msgstr "ಗುಪ್ತಪದ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr "PDF"
|
msgstr "PDF"
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr "<0>ಸರಳ ಐಕಾನ್ಗಳಿಂದ</0> ನಡೆಸಲ್ಪ
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr "ಪ್ರಾಥಮಿಕ ಬಣ್ಣ"
|
msgstr "ಪ್ರಾಥಮಿಕ ಬಣ್ಣ"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr "ವೃತ್ತಿಪರ"
|
msgstr "ವೃತ್ತಿಪರ"
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr "ಸಾರ್ವಜನಿಕ"
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "ಪ್ರಕಾಶಕರು"
|
msgstr "ಪ್ರಕಾಶಕರು"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr "ಒಂದು ಸಮಸ್ಯೆಯನ್ನು ಎತ್ತಿಕೊಳ್ಳಿ"
|
msgstr "ಒಂದು ಸಮಸ್ಯೆಯನ್ನು ಎತ್ತಿಕೊಳ್ಳಿ"
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr "ಒಂದು ಸಮಸ್ಯೆಯನ್ನು ಎತ್ತಿಕೊಳ
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr "ರಿಯಾಕ್ಟಿವ್ ರೆಸ್ಯೂಮೇ ಅದರ ರೋ
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "ಮತ್ತೆಮಾಡು"
|
msgstr "ಮತ್ತೆಮಾಡು"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "ತೆಗೆದುಹಾಕಿ"
|
msgstr "ತೆಗೆದುಹಾಕಿ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr "ಇಮೇಲ್ ದೃಢೀಕರಣ ಲಿಂಕ್ ಅನ್ನು
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr "ಮರುಹೊಂದಿಸಿ"
|
msgstr "ಮರುಹೊಂದಿಸಿ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr "ಲೇಔಟ್ ಅನ್ನು ಮರುಹೊಂದಿಸಿ"
|
msgstr "ಲೇಔಟ್ ಅನ್ನು ಮರುಹೊಂದಿಸಿ"
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr "ಜೂಮ್ ಮರುಹೊಂದಿಸಿ"
|
msgstr "ಜೂಮ್ ಮರುಹೊಂದಿಸಿ"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr "ರೆಸ್ಯೂಮೇ"
|
msgstr "ರೆಸ್ಯೂಮೇ"
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr "ದುಂಡಾದ"
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "ಬದಲಾವಣೆಗಳನ್ನು ಉಳಿಸು"
|
msgstr "ಬದಲಾವಣೆಗಳನ್ನು ಉಳಿಸು"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1262,15 +1300,15 @@ msgstr ""
|
|||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr ""
|
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"
|
msgid "Search for a font family"
|
||||||
msgstr "ಫಾಂಟ್ ಕುಟುಂಬಕ್ಕಾಗಿ ಹುಡುಕಿ"
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr "ಫಾಂಟ್ ಉಪವಿಭಾಗಕ್ಕಾಗಿ ಹುಡುಕಿ"
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr "ಫಾಂಟ್ ಉಪವಿಭಾಗಕ್ಕಾಗಿ ಹುಡುಕಿ"
|
msgstr "ಫಾಂಟ್ ಉಪವಿಭಾಗಕ್ಕಾಗಿ ಹುಡುಕಿ"
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr "ಭಾಷೆಗಾಗಿ ಹುಡುಕಿ"
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr "ಎರಡು ಅಂಶದ ದೃಢೀಕರಣದೊಂದಿಗೆ ಸುರಕ್ಷಿತ"
|
msgstr "ಎರಡು ಅಂಶದ ದೃಢೀಕರಣದೊಂದಿಗೆ ಸುರಕ್ಷಿತ"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "ಭದ್ರತೆ"
|
msgstr "ಭದ್ರತೆ"
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr "ಡಾಕರ್ ಜೊತೆಗೆ ಸ್ವಯಂ ಹೋಸ್ಟ್"
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr "ಇಮೇಲ್ ಕಳುಹಿಸಿ"
|
msgstr "ಇಮೇಲ್ ಕಳುಹಿಸಿ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr "ಸಂದೇಶ ಕಳುಹಿಸಿ"
|
msgstr "ಸಂದೇಶ ಕಳುಹಿಸಿ"
|
||||||
|
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr "ನಿಮ್ಮ ಖಾತೆಯಲ್ಲಿ ಎರಡು ಅಂಶದ ದೃಢೀಕರಣವನ್ನು ಹೊಂದಿಸಿ"
|
msgstr "ನಿಮ್ಮ ಖಾತೆಯಲ್ಲಿ ಎರಡು ಅಂಶದ ದೃಢೀಕರಣವನ್ನು ಹೊಂದಿಸಿ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr "ಹಂಚಿಕೆ"
|
msgstr "ಹಂಚಿಕೆ"
|
||||||
@ -1330,7 +1369,7 @@ msgstr "ಪುಟ ಕೊನೆ ಗೊಳ್ಳುವ ಚಿನ್ನೇ ತೋ
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr "ಪುಟ ಸಂಖ್ಯೆಗಳನ್ನು ತೋರಿಸಿ"
|
msgstr "ಪುಟ ಸಂಖ್ಯೆಗಳನ್ನು ತೋರಿಸಿ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "ಪಾರ್ಶ್ವಪಟ್ಟಿ"
|
msgstr "ಪಾರ್ಶ್ವಪಟ್ಟಿ"
|
||||||
|
|
||||||
@ -1408,6 +1447,7 @@ msgid "Start building your resume by giving it a name."
|
|||||||
msgstr "ಹೆಸರನ್ನು ನೀಡುವ ಮೂಲಕ ನಿಮ್ಮ ರೆಸ್ಯೂಮ್ ಅನ್ನು ನಿರ್ಮಿಸಲು ಪ್ರಾರಂಭಿಸಿ."
|
msgstr "ಹೆಸರನ್ನು ನೀಡುವ ಮೂಲಕ ನಿಮ್ಮ ರೆಸ್ಯೂಮ್ ಅನ್ನು ನಿರ್ಮಿಸಲು ಪ್ರಾರಂಭಿಸಿ."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr "ಅಂಕಿಅಂಶಗಳು"
|
msgstr "ಅಂಕಿಅಂಶಗಳು"
|
||||||
@ -1422,17 +1462,17 @@ msgstr "ನಿಮ್ಮ ಬ್ಯಾಕಪ್ ಕೋಡ್ಗಳನ್ನು
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr "ಸಾರಾಂಶ"
|
msgstr "ಸಾರಾಂಶ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr "ದೇಣಿಗೆ ನೀಡುವ ಮೂಲಕ ಅಪ್ಲಿಕೇಶನ್ ಅನ್ನು ಬೆಂಬಲಿಸಿ ಮತ್ತು ಪ್ರೋತ್ಸಾಹಿಸಿ!"
|
msgstr "ದೇಣಿಗೆ ನೀಡುವ ಮೂಲಕ ಅಪ್ಲಿಕೇಶನ್ ಅನ್ನು ಬೆಂಬಲಿಸಿ ಮತ್ತು ಪ್ರೋತ್ಸಾಹಿಸಿ!"
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr "ಪ್ರತಿಕ್ರಿಯಾತ್ಮಕ ರೆಸ್ಯೂಮ್
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr "A4/ಲೆಟರ್ ಪುಟ ಸ್ವರೂಪಗಳನ್ನು ಬೆಂಬಲಿಸುತ್ತದೆ"
|
msgstr "A4/ಲೆಟರ್ ಪುಟ ಸ್ವರೂಪಗಳನ್ನು ಬೆಂಬಲಿಸುತ್ತದೆ"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr "ಸಿಸ್ಟಂ"
|
msgstr "ಸಿಸ್ಟಂ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "ಮಾದರಿ"
|
msgstr "ಮಾದರಿ"
|
||||||
@ -1465,15 +1514,20 @@ msgstr "ಪ್ರಶಂಸಾಪತ್ರಗಳು"
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr "ಅಕ್ಷರದ ಬಣ್ಣ"
|
msgstr "ಅಕ್ಷರದ ಬಣ್ಣ"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
msgstr "ನೀವು ನಮೂದಿಸಿದ ಪಾಸ್ವರ್ಡ್ಗಳು ಹೊಂದಿಕೆಯಾಗುತ್ತಿಲ್ಲ."
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: 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."
|
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||||
msgstr "ನೀವು ನವೀಕರಿಸಲು ಬಯಸುವ ರೆಸ್ಯೂಮ್ ಲಾಕ್ ಆಗಿದೆ, ನೀವು ಅದರಲ್ಲಿ ಯಾವುದೇ ಬದಲಾವಣೆಗಳನ್ನು ಮಾಡಲು ಬಯಸಿದರೆ ದಯವಿಟ್ಟು ಅನ್ಲಾಕ್ ಮಾಡಿ."
|
msgstr "ನೀವು ನವೀಕರಿಸಲು ಬಯಸುವ ರೆಸ್ಯೂಮ್ ಲಾಕ್ ಆಗಿದೆ, ನೀವು ಅದರಲ್ಲಿ ಯಾವುದೇ ಬದಲಾವಣೆಗಳನ್ನು ಮಾಡಲು ಬಯಸಿದರೆ ದಯವಿಟ್ಟು ಅನ್ಲಾಕ್ ಮಾಡಿ."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
#: 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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,7 @@ msgstr "ವೀಕ್ಷಣೆಗಳು ಮತ್ತು ಡೌನ್ಲೋಡ
|
|||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr "ಎರಡು ಅಂಶಗಳ ದೃಢೀಕರಣ"
|
msgstr "ಎರಡು ಅಂಶಗಳ ದೃಢೀಕರಣ"
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr "ಅಧ್ಯಯನದ ಪ್ರಕಾರ"
|
msgstr "ಅಧ್ಯಯನದ ಪ್ರಕಾರ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr "ಮುದ್ರಣಕಲೆ"
|
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"
|
msgid "Underline Links"
|
||||||
msgstr "ಲಿಂಕ್ಗಳನ್ನು ಅಂಡರ್ಲೈನ್ ಮಾಡಿ"
|
msgstr "ಲಿಂಕ್ಗಳನ್ನು ಅಂಡರ್ಲೈನ್ ಮಾಡಿ"
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr "URL"
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr "URL https:// ನೊಂದಿಗೆ ಪ್ರಾರಂಭವಾಗಬೇಕು"
|
msgstr "URL https:// ನೊಂದಿಗೆ ಪ್ರಾರಂಭವಾಗಬೇಕು"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,7 +1714,7 @@ msgstr "ಆವೃತ್ತಿ 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "ವೀಕ್ಷಣೆಗಳು"
|
msgstr "ವೀಕ್ಷಣೆಗಳು"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "ಕಾಣುವ"
|
msgstr "ಕಾಣುವ"
|
||||||
|
|
||||||
@ -1665,11 +1728,11 @@ msgstr "ನಿಮ್ಮ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ನೀವ
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr "ಜಾಲತಾಣ"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "ಇತ್ತೀಚಿನ ಆವೃತ್ತಿಯಲ್ಲಿ ಹೊಸದೇನಿದೆ"
|
msgstr "ಇತ್ತೀಚಿನ ಆವೃತ್ತಿಯಲ್ಲಿ ಹೊಸದೇನಿದೆ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr ""
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "ಅಲ್ಪವಿರಾಮದಿಂದ ಬೇರ್ಪಡಿಸುವ ಮೂಲಕ ಅಥವಾ ಎಂಟರ್ ಒತ್ತುವ ಮೂಲಕ ನೀವು ಬಹು ಕೀವರ್ಡ್ಗಳನ್ನು ಸೇರಿಸಬಹುದು."
|
msgstr "ಅಲ್ಪವಿರಾಮದಿಂದ ಬೇರ್ಪಡಿಸುವ ಮೂಲಕ ಅಥವಾ ಎಂಟರ್ ಒತ್ತುವ ಮೂಲಕ ನೀವು ಬಹು ಕೀವರ್ಡ್ಗಳನ್ನು ಸೇರಿಸಬಹುದು."
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr "ಅಲ್ಪವಿರಾಮದಿಂದ ಬೇರ್ಪಡಿಸುವ
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "ನಿಮ್ಮ ಬಳಕೆದಾರಹೆಸರನ್ನು ಸಹ ನೀವು ನಮೂದಿಸಬಹುದು."
|
msgstr "ನಿಮ್ಮ ಬಳಕೆದಾರಹೆಸರನ್ನು ಸಹ ನೀವು ನಮೂದಿಸಬಹುದು."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
msgstr "ನೀವು ವಿಷಯವನ್ನು ರಚಿಸಲು ಸಹಾಯ ಮಾಡಲು OpenAI API ಅನ್ನು ಬಳಸಿಕೊಳ್ಳಬಹುದು ಅಥವಾ ನಿಮ್ಮ ಪುನರಾರಂಭವನ್ನು ರಚಿಸುವಾಗ ನಿಮ್ಮ ಬರವಣಿಗೆಯನ್ನು ಸುಧಾರಿಸಬಹುದು."
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "ಸಾರ್ವಜನಿಕ ಹಂಚಿಕೆಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸುವ ಮೂಲಕ ನಿಮ್ಮ ರೆಸ್ಯೂಮ್ ಸ್ವೀಕರಿಸಿದ ವೀಕ್ಷಣೆಗಳ ಸಂಖ್ಯೆಯನ್ನು ನೀವು ಟ್ರ್ಯಾಕ್ ಮಾಡಬಹುದು ಅಥವಾ ಎಷ್ಟು ಜನರು ರೆಸ್ಯೂಮ್ ಅನ್ನು ಡೌನ್ಲೋಡ್ ಮಾಡಿದ್ದಾರೆ ಎಂದು ನೋಡಬಹುದು."
|
msgstr "ಸಾರ್ವಜನಿಕ ಹಂಚಿಕೆಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸುವ ಮೂಲಕ ನಿಮ್ಮ ರೆಸ್ಯೂಮ್ ಸ್ವೀಕರಿಸಿದ ವೀಕ್ಷಣೆಗಳ ಸಂಖ್ಯೆಯನ್ನು ನೀವು ಟ್ರ್ಯಾಕ್ ಮಾಡಬಹುದು ಅಥವಾ ಎಷ್ಟು ಜನರು ರೆಸ್ಯೂಮ್ ಅನ್ನು ಡೌನ್ಲೋಡ್ ಮಾಡಿದ್ದಾರೆ ಎಂದು ನೋಡಬಹುದು."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "<0>ನಿಮ್ಮ ಸ್ವಂತ OpenAI API ಕೀಲಿಯನ್ನು ಪಡೆಯುವ ಆಯ್ಕೆಯನ್ನು ನೀವು ಹೊಂದಿರುವಿರಿ</0>. ಈ ಕೀಲಿಯು ನಿಮಗೆ ಸರಿಹೊಂದುವಂತೆ API ಅನ್ನು ನಿಯಂತ್ರಿಸಲು ನಿಮಗೆ ಅಧಿಕಾರ ನೀಡುತ್ತದೆ. ಪರ್ಯಾಯವಾಗಿ, ನೀವು ರಿಯಾಕ್ಟಿವ್ ರೆಸ್ಯೂಮ್ನಲ್ಲಿ AI ವೈಶಿಷ್ಟ್ಯಗಳನ್ನು ಸಂಪೂರ್ಣವಾಗಿ ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲು ಬಯಸಿದರೆ, ನಿಮ್ಮ ಸೆಟ್ಟಿಂಗ್ಗಳಿಂದ ನೀವು ಕೀಲಿಯನ್ನು ಸರಳವಾಗಿ ತೆಗೆದುಹಾಕಬಹುದು."
|
msgstr "<0>ನಿಮ್ಮ ಸ್ವಂತ OpenAI API ಕೀಲಿಯನ್ನು ಪಡೆಯುವ ಆಯ್ಕೆಯನ್ನು ನೀವು ಹೊಂದಿರುವಿರಿ</0>. ಈ ಕೀಲಿಯು ನಿಮಗೆ ಸರಿಹೊಂದುವಂತೆ API ಅನ್ನು ನಿಯಂತ್ರಿಸಲು ನಿಮಗೆ ಅಧಿಕಾರ ನೀಡುತ್ತದೆ. ಪರ್ಯಾಯವಾಗಿ, ನೀವು ರಿಯಾಕ್ಟಿವ್ ರೆಸ್ಯೂಮ್ನಲ್ಲಿ AI ವೈಶಿಷ್ಟ್ಯಗಳನ್ನು ಸಂಪೂರ್ಣವಾಗಿ ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲು ಬಯಸಿದರೆ, ನಿಮ್ಮ ಸೆಟ್ಟಿಂಗ್ಗಳಿಂದ ನೀವು ಕೀಲಿಯನ್ನು ಸರಳವಾಗಿ ತೆಗೆದುಹಾಕಬಹುದು."
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr "ನಿಮಗೆ ಮೇಲ್ ಬಂದಿದೆ!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "ನಿಮ್ಮ ಖಾತೆ ಮತ್ತು ನಿಮ್ಮ ಎಲ್ಲಾ ಡೇಟಾವನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಅಳಿಸಲಾಗಿದೆ. ವಿದಾಯ!"
|
msgstr "ನಿಮ್ಮ ಖಾತೆ ಮತ್ತು ನಿಮ್ಮ ಎಲ್ಲಾ ಡೇಟಾವನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಅಳಿಸಲಾಗಿದೆ. ವಿದಾಯ!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "ನಿಮ್ಮ API ಕೀಯನ್ನು ಬ್ರೌಸರ್ನ ಸ್ಥಳೀಯ ಸಂಗ್ರಹಣೆಯಲ್ಲಿ ಸುರಕ್ಷಿತವಾಗಿ ಸಂಗ್ರಹಿಸಲಾಗಿದೆ ಮತ್ತು ಅವರ ಅಧಿಕೃತ SDK ಮೂಲಕ OpenAI ಗೆ ವಿನಂತಿಗಳನ್ನು ಮಾಡುವಾಗ ಮಾತ್ರ ಬಳಸಿಕೊಳ್ಳಲಾಗುತ್ತದೆ. OpenAI ನ ಸೇವೆಗಳೊಂದಿಗೆ ಸಂವಹನ ಮಾಡುವಾಗ ಹೊರತುಪಡಿಸಿ ನಿಮ್ಮ ಕೀ ಯಾವುದೇ ಬಾಹ್ಯ ಸರ್ವರ್ಗೆ ರವಾನೆಯಾಗುವುದಿಲ್ಲ ಎಂದು ಖಚಿತವಾಗಿರಿ."
|
msgstr "ನಿಮ್ಮ API ಕೀಯನ್ನು ಬ್ರೌಸರ್ನ ಸ್ಥಳೀಯ ಸಂಗ್ರಹಣೆಯಲ್ಲಿ ಸುರಕ್ಷಿತವಾಗಿ ಸಂಗ್ರಹಿಸಲಾಗಿದೆ ಮತ್ತು ಅವರ ಅಧಿಕೃತ SDK ಮೂಲಕ OpenAI ಗೆ ವಿನಂತಿಗಳನ್ನು ಮಾಡುವಾಗ ಮಾತ್ರ ಬಳಸಿಕೊಳ್ಳಲಾಗುತ್ತದೆ. OpenAI ನ ಸೇವೆಗಳೊಂದಿಗೆ ಸಂವಹನ ಮಾಡುವಾಗ ಹೊರತುಪಡಿಸಿ ನಿಮ್ಮ ಕೀ ಯಾವುದೇ ಬಾಹ್ಯ ಸರ್ವರ್ಗೆ ರವಾನೆಯಾಗುವುದಿಲ್ಲ ಎಂದು ಖಚಿತವಾಗಿರಿ."
|
||||||
|
|
||||||
@ -1733,7 +1808,7 @@ msgstr "ನಿಮ್ಮ ಇಮೇಲ್ ವಿಳಾಸವನ್ನು ಯಶಸ
|
|||||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||||
msgstr "ನಿಮ್ಮ OpenAI API ಕೀಯನ್ನು ಇನ್ನೂ ಹೊಂದಿಸಲಾಗಿಲ್ಲ. OpenAI ಇಂಟಿಗ್ರೇಶನ್ ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಲು ದಯವಿಟ್ಟು ನಿಮ್ಮ ಖಾತೆಯ ಸೆಟ್ಟಿಂಗ್ಗಳಿಗೆ ಹೋಗಿ."
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr "ನಿಮ್ಮ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ಯಶಸ್ವಿಯಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ."
|
msgstr "ನಿಮ್ಮ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ಯಶಸ್ವಿಯಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: ko\n"
|
"Language: ko\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:40\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Korean\n"
|
"Language-Team: Korean\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
@ -30,27 +30,27 @@ msgstr "{templatesCount} 선택할 수 있는 이력서 템플릿"
|
|||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr "{value, plural, one {칼럼} other {칼럼}}"
|
msgstr "{value, plural, one {칼럼} other {칼럼}}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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를 만들었습니다.</0><1>이 앱이 마음에 드시고 영원히 무료로 유지되도록 지원하고 싶으시다면 기부할 수 있는 만큼 기부해 주세요.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 "<0>참고: </0>OpenAI API를 이용함으로써 귀하는 OpenAI가 명시한 <1>이용약관</1> 및 <2>개인정보 보호정책을</2> 인정하고 이에 동의하는 것입니다. 리액티브 이력서는 서비스의 부적절하거나 무단 사용에 대해 어떠한 책임도 지지 않으며, 그로 인한 모든 영향이나 책임은 전적으로 사용자에게 있다는 점에 유의하시기 바랍니다."
|
msgstr "<0>참고: </0>OpenAI API를 이용함으로써 귀하는 OpenAI가 명시한 <1>이용약관</1> 및 <2>개인정보 보호정책을</2> 인정하고 이에 동의하는 것입니다. 리액티브 이력서는 서비스의 부적절하거나 무단 사용에 대해 어떠한 책임도 지지 않으며, 그로 인한 모든 영향이나 책임은 전적으로 사용자에게 있다는 점에 유의하시기 바랍니다."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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>"
|
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."
|
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> 계정에 인증 앱을 추가하여 사용하도록 설정할 수 있습니다."
|
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."
|
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> 로그인할 때마다 코드를 입력하라는 메시지가 표시됩니다."
|
msgstr "<0>2단계 인증이 활성화되었습니다.</0> 로그인할 때마다 코드를 입력하라는 메시지가 표시됩니다."
|
||||||
|
|
||||||
@ -102,8 +102,8 @@ msgstr "계정"
|
|||||||
msgid "Add a custom field"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "새 항목 추가"
|
msgstr "새 항목 추가"
|
||||||
@ -117,7 +117,7 @@ msgstr "새 항목 추가"
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr "새 섹션 추가"
|
msgstr "새 섹션 추가"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr "새 페이지 추가"
|
msgstr "새 페이지 추가"
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr "이미 계정이 있으신가요?"
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr "파일의 유효성을 검사하는 동안 오류가 발생했습니다."
|
msgstr "파일의 유효성을 검사하는 동안 오류가 발생했습니다."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr "내부 서버 오류가 발생했습니다."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr "예기치 않은 오류가 발생했습니다."
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr "그 외 기타 등등!"
|
msgstr "그 외 기타 등등!"
|
||||||
@ -191,6 +199,18 @@ msgstr "{languagesCount} 언어 제공"
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr "수상자"
|
msgstr "수상자"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr "Azure API 버전"
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr "Azure OpenAI를 사용할 때는 Azure OpenAI 기본 URL, 배포 이름(모델) 및 API 버전이 필요합니다."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr "Azure OpenAI 리소스 URL"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,7 +229,7 @@ msgstr "백업 코드"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "백업 코드는 소문자 또는 숫자만 포함할 수 있으며 정확히 10자여야 합니다."
|
msgstr "백업 코드는 소문자 또는 숫자만 포함할 수 있으며 정확히 10자여야 합니다."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "기본 URL"
|
msgstr "기본 URL"
|
||||||
|
|
||||||
@ -232,12 +252,12 @@ msgstr "둥근모서리"
|
|||||||
|
|
||||||
#: apps/client/src/pages/public/page.tsx:93
|
#: apps/client/src/pages/public/page.tsx:93
|
||||||
msgid "Built with"
|
msgid "Built with"
|
||||||
msgstr "Built with"
|
msgstr "사용한 소프트웨어"
|
||||||
|
|
||||||
#: apps/client/src/components/copyright.tsx:27
|
#: apps/client/src/components/copyright.tsx:27
|
||||||
#: apps/client/src/pages/home/sections/contributors/index.tsx:20
|
#: apps/client/src/pages/home/sections/contributors/index.tsx:20
|
||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr "By the community, for the community."
|
msgstr "커뮤니티의, 커뮤니티를 위한, 커뮤니티에 의한."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
@ -246,8 +266,8 @@ msgstr "By the community, for the community."
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "취소"
|
msgstr "취소"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr "캐주얼"
|
msgstr "캐주얼"
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr "캐주얼"
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr "중앙 아트보드"
|
msgstr "중앙 아트보드"
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr "언어 변경"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr "비밀번호 변경"
|
msgstr "비밀번호 변경"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr "톤 변경"
|
msgstr "톤 변경"
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr "열"
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr "회사"
|
msgstr "회사"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr "자신감"
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "계속하기"
|
msgstr "계속하기"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "복사"
|
msgstr "복사"
|
||||||
|
|
||||||
@ -351,7 +371,12 @@ msgstr "지금 만들기"
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr "샘플 이력서 만들기"
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr "사용자 정의 CSS"
|
msgstr "사용자 정의 CSS"
|
||||||
@ -378,7 +403,7 @@ msgstr "위험 구역"
|
|||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:87
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:87
|
||||||
msgid "Dark"
|
msgid "Dark"
|
||||||
msgstr "Dark"
|
msgstr "다크"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67
|
||||||
@ -386,10 +411,10 @@ msgstr "Dark"
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "날짜"
|
msgstr "날짜"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "날짜 또는 날짜 범위"
|
msgstr "날짜 또는 날짜 범위"
|
||||||
@ -407,11 +432,15 @@ msgstr "삭제"
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr "계정 삭제"
|
msgstr "계정 삭제"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr "배포 이름"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "설명"
|
msgstr "설명"
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr "단일/다중 페이지 이력서 디자인"
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr "비활성화"
|
msgstr "비활성화"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||||
msgid "Disable 2FA"
|
msgid "Disable 2FA"
|
||||||
msgstr "2FA 비활성화"
|
msgstr "2FA 비활성화"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr "폐기"
|
msgstr "폐기"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "문서"
|
msgstr "문서"
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr "문서"
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr "계정이 없으신가요?"
|
msgstr "계정이 없으신가요?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr "어디서부터 시작해야 할지 모르시겠어요? 문서를 시작하세요!"
|
msgstr "어디서부터 시작해야 할지 모르시겠어요? 문서를 시작하세요!"
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr "어디서부터 시작해야 할지 모르시겠어요? 문서를 시작
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr "귀하의 언어가 표시되지 않습니까? <0>앱 번역을 도와주세요.</0>"
|
msgstr "귀하의 언어가 표시되지 않습니까? <0>앱 번역을 도와주세요.</0>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr "이 프로젝트에 기부하기"
|
msgstr "이 프로젝트에 기부하기"
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr "이 프로젝트에 기부하기"
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr "이력서의 JSON 스냅샷을 다운로드하세요. 이 파일은 나중에 이력서를 가져오는 데 사용할 수 있으며, 공동 작업을 위해 다른 사람과 공유할 수도 있습니다."
|
msgstr "이력서의 JSON 스냅샷을 다운로드하세요. 이 파일은 나중에 이력서를 가져오는 데 사용할 수 있으며, 공동 작업을 위해 다른 사람과 공유할 수도 있습니다."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
msgstr "이력서 PDF를 다운로드하세요. 이 파일은 이력서를 인쇄하거나 채용 담당자에게 보내거나 취업 포털에 업로드하는 데 사용할 수 있습니다."
|
msgstr "이력서 PDF를 다운로드하세요. 이 파일은 이력서를 인쇄하거나 채용 담당자에게 보내거나 취업 포털에 업로드하는 데 사용할 수 있습니다."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr "PDF 다운로드"
|
msgstr "PDF 다운로드"
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr "기존 항목 복제"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "기존 이력서 복제"
|
msgstr "기존 이력서 복제"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "수정"
|
msgstr "수정"
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr "효과"
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr "이메일"
|
msgstr "이메일"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||||
msgid "Enable 2FA"
|
msgid "Enable 2FA"
|
||||||
msgstr "2단계 인증 활성화"
|
msgstr "2단계 인증 활성화"
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr "인증 앱에서 제공한 일회용 비밀번호를 아래에 입력합
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr "이메일 주소를 입력하시면 계정이 존재하는 경우 비밀번호를 재설정할 수 있는 링크를 보내드립니다."
|
msgstr "이메일 주소를 입력하시면 계정이 존재하는 경우 비밀번호를 재설정할 수 있는 링크를 보내드립니다."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr "오류 {statusCode}"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr "오류"
|
msgstr "오류"
|
||||||
@ -544,6 +576,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
|||||||
msgstr "Reactive Resume 에서 사용할 수 있는 템플릿을 살펴보고 이 템플릿으로 만든 이력서를 확인하세요. 다음 이력서를 작성할 때 참고할 수 있는 예시로도 사용할 수 있습니다."
|
msgstr "Reactive Resume 에서 사용할 수 있는 템플릿을 살펴보고 이 템플릿으로 만든 이력서를 확인하세요. 다음 이력서를 작성할 때 참고할 수 있는 예시로도 사용할 수 있습니다."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr "내보내기"
|
msgstr "내보내기"
|
||||||
@ -564,19 +597,19 @@ msgstr "마지막으로,"
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr "맞춤법 및 문법 수정"
|
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"
|
msgid "Font Family"
|
||||||
msgstr "글꼴"
|
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"
|
msgid "Font Size"
|
||||||
msgstr "글자 크기"
|
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"
|
msgid "Font Subset"
|
||||||
msgstr "글꼴 하위 집합"
|
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"
|
msgid "Font Variants"
|
||||||
msgstr "글꼴 변형"
|
msgstr "글꼴 변형"
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr "글꼴 변형"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "예를 들어, 이력서를 보낸 회사에 대한 정보나 직무 설명에 대한 링크를 여기에 기록할 수 있습니다."
|
msgstr "예를 들어, 이력서를 보낸 회사에 대한 정보나 직무 설명에 대한 링크를 여기에 기록할 수 있습니다."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "잊어버림"
|
msgstr "잊어버림"
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr "비밀번호를 잊으셨나요?"
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr "형식"
|
msgstr "형식"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr "버그를 발견했거나 새로운 기능에 대한 아이디어가 있으신가요?"
|
msgstr "버그를 발견했거나 새로운 기능에 대한 아이디어가 있으신가요?"
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr "버그를 발견했거나 새로운 기능에 대한 아이디어가 있
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr "영원히 무료"
|
msgstr "영원히 무료"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr "친절함"
|
msgstr "친절함"
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr "기존 이력서에 새 이름을 부여하세요."
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr "대시보드로 이동"
|
msgstr "대시보드로 이동"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr "홈으로 이동"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr "Google"
|
msgstr "Google"
|
||||||
@ -651,7 +688,7 @@ msgstr "Google"
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr "그레이 스케일"
|
msgstr "그레이 스케일"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr "그리드"
|
msgstr "그리드"
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr "여기에서 프로필을 업데이트하여 사용자 환경을 맞춤 설정하고 개인화할 수 있습니다."
|
msgstr "여기에서 프로필을 업데이트하여 사용자 환경을 맞춤 설정하고 개인화할 수 있습니다."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "숨겨진"
|
msgstr "숨겨진"
|
||||||
@ -677,7 +714,7 @@ msgstr "숨겨진"
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr "숨기기"
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr "아이콘 숨기기"
|
msgstr "아이콘 숨기기"
|
||||||
|
|
||||||
@ -734,7 +771,7 @@ msgstr "글쓰기 향상"
|
|||||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||||
msgstr "이 QR 코드를 스캔할 수 없는 경우, 이 링크를 복사하여 인증 앱에 붙여넣을 수도 있습니다."
|
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."
|
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||||
msgstr "이 섹션에서는 비밀번호를 변경하고 2단계 인증을 활성화/비활성화할 수 있습니다."
|
msgstr "이 섹션에서는 비밀번호를 변경하고 2단계 인증을 활성화/비활성화할 수 있습니다."
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ msgid "In this section, you can delete your account and all the data associated
|
|||||||
msgstr "이 섹션에서는 계정 및 사용자와 관련된 모든 데이터를 삭제할 수 있지만, <0>이 작업은 되돌릴 수</0> 없다는 점에 유의하세요."
|
msgstr "이 섹션에서는 계정 및 사용자와 관련된 모든 데이터를 삭제할 수 있지만, <0>이 작업은 되돌릴 수</0> 없다는 점에 유의하세요."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "정보"
|
msgstr "정보"
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr "john.doe@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "키워드"
|
msgstr "키워드"
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr "마지막 업데이트 {lastUpdated}"
|
msgstr "마지막 업데이트 {lastUpdated}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "레이아웃"
|
msgstr "레이아웃"
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr "편지"
|
msgstr "편지"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr "레벨"
|
msgstr "레벨"
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr "빛"
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr "밝거나 어두운 테마"
|
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"
|
msgid "Line Height"
|
||||||
msgstr "선 높이"
|
msgstr "선 높이"
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr "선 높이"
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr "LinkedIn, JSON 이력서 등"
|
msgstr "LinkedIn, JSON 이력서 등"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr "목록"
|
msgstr "목록"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr "로그아웃"
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr "기기를 분실하셨나요?"
|
msgstr "기기를 분실하셨나요?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr "메인"
|
msgstr "메인"
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr "2023년 3월"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr "2023년 3월 - 현재"
|
msgstr "2023년 3월 - 현재"
|
||||||
@ -923,7 +962,7 @@ msgstr "2023년 3월 - 현재"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "마진"
|
msgstr "마진"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "최대 토큰"
|
msgstr "최대 토큰"
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr "최대 토큰"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "MIT 라이선스"
|
msgstr "MIT 라이선스"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "모델"
|
msgstr "모델"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr "이름"
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "네트워크"
|
msgstr "네트워크"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||||
msgid "New Password"
|
msgid "New Password"
|
||||||
msgstr "새 비밀번호"
|
msgstr "새 비밀번호"
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr "참고: 이렇게 하면 계정의 보안이 약해집니다."
|
msgstr "참고: 이렇게 하면 계정의 보안이 약해집니다."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "참고"
|
msgstr "참고"
|
||||||
@ -1009,16 +1049,16 @@ msgstr "OpenAI가 텍스트에 대한 선택 항목을 반환하지 않았습니
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "OpenAI 통합"
|
msgstr "OpenAI 통합"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
msgstr "OpenAI/Azure OpenAI/올라마 통합"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr "OpenAI/올라마 API 키"
|
msgstr "OpenAI/올라마 API 키"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
|
||||||
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/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"
|
msgid "Options"
|
||||||
msgstr "옵션"
|
msgstr "옵션"
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr "조직"
|
msgstr "조직"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "페이지"
|
msgstr "페이지"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr "페이지 {pageNumber}"
|
msgstr "페이지 {pageNumber}"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr "비밀번호"
|
msgstr "비밀번호"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr "PDF"
|
msgstr "PDF"
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr "<0>간단한 아이콘으로</0> 구동"
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr "기본 색상"
|
msgstr "기본 색상"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr "개인정보 보호정책"
|
msgstr "개인정보 보호정책"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr "전문가"
|
msgstr "전문가"
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr "공개"
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "게시자"
|
msgstr "게시자"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr "문제 제기"
|
msgstr "문제 제기"
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr "문제 제기"
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr "리액티브 이력서는 활기찬 커뮤니티 덕분에 번창하고
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "다시 실행"
|
msgstr "다시 실행"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "제거"
|
msgstr "제거"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr "페이지 제거"
|
msgstr "페이지 제거"
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr "이메일 확인 링크 다시 보내기"
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr "초기화"
|
msgstr "초기화"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr "레이아웃 재설정"
|
msgstr "레이아웃 재설정"
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr "줌 초기화"
|
msgstr "줌 초기화"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr "이력서"
|
msgstr "이력서"
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr "둥근"
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "변경 사항 저장"
|
msgstr "변경 사항 저장"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "로컬에 저장"
|
msgstr "로컬에 저장"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "저장됨"
|
msgstr "저장됨"
|
||||||
|
|
||||||
@ -1262,15 +1300,15 @@ msgstr "팬으로 스크롤"
|
|||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr "줌으로 스크롤"
|
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"
|
msgid "Search for a font family"
|
||||||
msgstr "글꼴 패밀리 검색"
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr "글꼴 하위 집합 검색"
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr "글꼴 변형 검색"
|
msgstr "글꼴 변형 검색"
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr "언어 검색"
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr "2단계 인증으로 보안 유지"
|
msgstr "2단계 인증으로 보안 유지"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "보안"
|
msgstr "보안"
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr "Docker를 사용한 셀프 호스트"
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr "이메일 보내기"
|
msgstr "이메일 보내기"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr "메시지 보내기"
|
msgstr "메시지 보내기"
|
||||||
|
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr "계정에 2단계 인증 설정하기"
|
msgstr "계정에 2단계 인증 설정하기"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr "공유"
|
msgstr "공유"
|
||||||
@ -1330,7 +1369,7 @@ msgstr "나누기 줄 표시"
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr "페이지 번호 표시"
|
msgstr "페이지 번호 표시"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "사이드바"
|
msgstr "사이드바"
|
||||||
|
|
||||||
@ -1408,6 +1447,7 @@ msgid "Start building your resume by giving it a name."
|
|||||||
msgstr "이름을 지정하여 이력서 작성을 시작하세요."
|
msgstr "이름을 지정하여 이력서 작성을 시작하세요."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr "통계"
|
msgstr "통계"
|
||||||
@ -1422,17 +1462,17 @@ msgstr "백업 코드를 안전하게 저장"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr "요약"
|
msgstr "요약"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr "가능한 금액을 기부하여 앱을 지원하세요!"
|
msgstr "가능한 금액을 기부하여 앱을 지원하세요!"
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr "반응형 이력서 지원"
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr "A4/레터 페이지 형식 지원"
|
msgstr "A4/레터 페이지 형식 지원"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr "다크 모드로 전환"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr "조명 모드로 전환"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr "시스템"
|
msgstr "시스템"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "템플릿"
|
msgstr "템플릿"
|
||||||
@ -1465,15 +1514,20 @@ msgstr "사용 후기"
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr "텍스트 색상"
|
msgstr "텍스트 색상"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
msgstr "입력한 비밀번호가 일치하지 않습니다."
|
msgstr "요청하신 페이지는 존재하지 않습니다."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
|
msgstr "요청이 유효하지 않습니다."
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: 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."
|
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||||
msgstr "업데이트하려는 이력서가 잠겨 있으므로 변경하려면 잠금을 해제하세요."
|
msgstr "업데이트하려는 이력서가 잠겨 있으므로 변경하려면 잠금을 해제하세요."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
#: 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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,7 @@ msgstr "조회수 및 다운로드 추적"
|
|||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr "2단계 인증"
|
msgstr "2단계 인증"
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr "학습 유형"
|
msgstr "학습 유형"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr "타이포그래피"
|
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"
|
msgid "Underline Links"
|
||||||
msgstr "밑줄 링크"
|
msgstr "밑줄 링크"
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr "URL"
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr "URL은 https:// 로 시작해야 합니다."
|
msgstr "URL은 https:// 로 시작해야 합니다."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr "Azure OpenAI 사용"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr "시스템 테마 사용"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,7 +1714,7 @@ msgstr "버전 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "조회수"
|
msgstr "조회수"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "가시성"
|
msgstr "가시성"
|
||||||
|
|
||||||
@ -1665,11 +1728,11 @@ msgstr "비밀번호를 잊어버린 경우 비밀번호 재설정 링크를 보
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr "웹사이트"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "최신 버전의 새로운 기능"
|
msgstr "최신 버전의 새로운 기능"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr "이 페이지에 접근할 권한이 없습니다."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "쉼표로 구분하거나 Enter 키를 눌러 여러 개의 키워드를 추가할 수 있습니다."
|
msgstr "쉼표로 구분하거나 Enter 키를 눌러 여러 개의 키워드를 추가할 수 있습니다."
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr "쉼표로 구분하거나 Enter 키를 눌러 여러 개의 키워드를
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "사용자 아이디를 입력할 수도 있습니다."
|
msgstr "사용자 아이디를 입력할 수도 있습니다."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr "API 키를 `sk-1234567890abcdef`로 설정하고 기본 URL을 `http://localhost:11434/v1`과 같은 Ollama URL로 설정하여 Ollama와 통합할 수도 있습니다. 원하는 대로 모델을 선택하고 최대 토큰을 설정할 수도 있습니다."
|
msgstr "<0>Azure OpenAI 사용</0> 확인란을 사용 설정하고 리소스 URL을 Azure OpenAI 리소스 <1>(https://your-resource.openai.azure.com)</1>로 설정하여 Azure OpenAI와 통합할 수도 있습니다. 모델 필드에서 배포 이름을 설정하고 Azure 배포에 적합한 API 버전을 지정합니다."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
msgstr "OpenAI API를 사용하여 콘텐츠를 생성하거나 이력서를 작성하는 동안 글쓰기를 개선할 수 있습니다."
|
msgstr "또한 API 키 <0>tosk-1234567890abcdef와</0> 기본 URL을 Ollama URL(예: http:<1>//localhost:11434/v1)</1>로 설정하여 Ollama와 통합할 수도 있습니다. 원하는 대로 모델을 선택하고 최대 토큰을 설정할 수도 있습니다."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
|
msgstr "이력서를 작성하는 동안 콘텐츠를 생성하거나 글쓰기를 개선하는 데 도움이 되는 OpenAI API, Azure OpenAI 또는 Ollama를 사용할 수 있습니다."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "공개 공유를 활성화하여 이력서가 조회된 횟수 또는 이력서를 다운로드한 사람의 수를 추적할 수 있습니다."
|
msgstr "공개 공유를 활성화하여 이력서가 조회된 횟수 또는 이력서를 다운로드한 사람의 수를 추적할 수 있습니다."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr "이 페이지에 접근할 권한이 없습니다."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "자신만의 <0>OpenAI API 키를 얻을</0> 수 있는 옵션이 있습니다. 이 키를 사용하면 원하는 대로 API를 활용할 수 있습니다. 또는 반응형 이력서에서 AI 기능을 완전히 비활성화하려면 설정에서 키를 제거하기만 하면 됩니다."
|
msgstr "자신만의 <0>OpenAI API 키를 얻을</0> 수 있는 옵션이 있습니다. 이 키를 사용하면 원하는 대로 API를 활용할 수 있습니다. 또는 반응형 이력서에서 AI 기능을 완전히 비활성화하려면 설정에서 키를 제거하기만 하면 됩니다."
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr "메일이 도착했습니다!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "계정과 모든 데이터가 성공적으로 삭제되었습니다. 안녕히 계세요!"
|
msgstr "계정과 모든 데이터가 성공적으로 삭제되었습니다. 안녕히 계세요!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "API 키는 브라우저의 로컬 저장소에 안전하게 저장되며 공식 SDK를 통해 OpenAI에 요청할 때만 활용됩니다. OpenAI의 서비스와 상호작용할 때를 제외하고는 키가 외부 서버로 전송되지 않으니 안심하세요."
|
msgstr "API 키는 브라우저의 로컬 저장소에 안전하게 저장되며 공식 SDK를 통해 OpenAI에 요청할 때만 활용됩니다. OpenAI의 서비스와 상호작용할 때를 제외하고는 키가 외부 서버로 전송되지 않으니 안심하세요."
|
||||||
|
|
||||||
@ -1733,7 +1808,7 @@ msgstr "이메일 주소가 성공적으로 확인되었습니다."
|
|||||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||||
msgstr "OpenAI API 키가 아직 설정되지 않았습니다. 계정 설정으로 이동하여 OpenAI 연동을 활성화하세요."
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr "비밀번호가 성공적으로 업데이트되었습니다."
|
msgstr "비밀번호가 성공적으로 업데이트되었습니다."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: lt\n"
|
"Language: lt\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:40\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Lithuanian\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"
|
"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"
|
||||||
@ -30,27 +30,27 @@ msgstr "{templatesCount} CV šablonai, iš kurių galite rinktis"
|
|||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr "{value, plural,one {Stulpelis} other {Stulpeliai}}"
|
msgstr "{value, plural,one {Stulpelis} other {Stulpeliai}}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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\" sukūriau daugiausia vienas, laisvalaikiu, daug padėjo kiti puikūs atvirojo kodo kūrėjai.</0><1>Jei programa jums patinka ir norite paremti, kad ji išliktų nemokama amžinai, paaukokite tiek, kiek galite sau leisti.</1>"
|
msgstr "<0>\"Reactive Resume\" sukūriau daugiausia vienas, laisvalaikiu, daug padėjo kiti puikūs atvirojo kodo kūrėjai.</0><1>Jei programa jums patinka ir norite paremti, kad ji išliktų nemokama amžinai, paaukokite tiek, kiek galite sau leisti.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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>Esu įsitikinęs, kad programa nėra tobula, bet norėčiau, kad ji tokia būtų.</0><1>Jei kurdami gyvenimo aprašymą susidūrėte su kokiomis nors problemomis arba turite idėją, kuri padėtų jums ir kitiems naudotojams lengviau kurti gyvenimo aprašymą, parašykite apie tai saugykloje arba atsiųskite man el. laišką.</1>"
|
msgstr "<0>Esu įsitikinęs, kad programa nėra tobula, bet norėčiau, kad ji tokia būtų.</0><1>Jei kurdami gyvenimo aprašymą susidūrėte su kokiomis nors problemomis arba turite idėją, kuri padėtų jums ir kitiems naudotojams lengviau kurti gyvenimo aprašymą, parašykite apie tai saugykloje arba atsiųskite man el. laišką.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 "<0>Pastaba: </0>naudodamiesi \"OpenAI\" API pripažįstate ir sutinkate su \"OpenAI\" nustatytomis <1>naudojimo sąlygomis</1> ir <2>privatumo politika</2>. Atkreipkite dėmesį, kad \"Reactive Resume\" neprisiima jokios atsakomybės už netinkamą ar neleistiną paslaugos naudojimą, o bet kokios iš to kylančios pasekmės ar atsakomybė tenka tik naudotojui."
|
msgstr "<0>Pastaba: </0>naudodamiesi \"OpenAI\" API pripažįstate ir sutinkate su \"OpenAI\" nustatytomis <1>naudojimo sąlygomis</1> ir <2>privatumo politika</2>. Atkreipkite dėmesį, kad \"Reactive Resume\" neprisiima jokios atsakomybės už netinkamą ar neleistiną paslaugos naudojimą, o bet kokios iš to kylančios pasekmės ar atsakomybė tenka tik naudotojui."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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>"
|
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."
|
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ę."
|
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."
|
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ą."
|
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"
|
msgid "Add a custom field"
|
||||||
msgstr "Pridėti pasirinktinį lauką"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Pridėti naują elementą"
|
msgstr "Pridėti naują elementą"
|
||||||
@ -117,7 +117,7 @@ msgstr "Pridėti naują elementą"
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr "Pridėti naują skyrių"
|
msgstr "Pridėti naują skyrių"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr "Pridėti naują puslapį"
|
msgstr "Pridėti naują puslapį"
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr "Jau turite paskyrą?"
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr "Patvirtinant failą įvyko klaida."
|
msgstr "Patvirtinant failą įvyko klaida."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr "Įvyko vidinė serverio klaida."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr "Įvyko netikėta klaida."
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr "ir dar daugiau..."
|
msgstr "ir dar daugiau..."
|
||||||
@ -191,6 +199,18 @@ msgstr "Galima rasti {languagesCount} kalbomis"
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr "Apdovanotojas"
|
msgstr "Apdovanotojas"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr "\"Azure API\" versija"
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr "Naudojant \"Azure OpenAI\" bazinį URL, diegimo pavadinimą (modelį) ir API versiją, būtina naudoti \"Azure OpenAI\"."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr "\"Azure OpenAI\" išteklių URL"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,7 +229,7 @@ msgstr "Atsarginis kodas"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Atsarginius kodus gali sudaryti tik mažosios raidės arba skaičiai, juos turi sudaryti tiksliai 10 simbolių."
|
msgstr "Atsarginius kodus gali sudaryti tik mažosios raidės arba skaičiai, juos turi sudaryti tiksliai 10 simbolių."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "Bazinis URL adresas"
|
msgstr "Bazinis URL adresas"
|
||||||
|
|
||||||
@ -246,8 +266,8 @@ msgstr "Bendruomenės ir bendruomenei."
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Atšaukti"
|
msgstr "Atšaukti"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr "Atsitiktinis"
|
msgstr "Atsitiktinis"
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr "Atsitiktinis"
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr "Centrinė meno lenta"
|
msgstr "Centrinė meno lenta"
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr "Keisti kalbą"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr "Keisti slaptažodį"
|
msgstr "Keisti slaptažodį"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr "Keisti toną"
|
msgstr "Keisti toną"
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr "Stulpeliai"
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr "Įmonė"
|
msgstr "Įmonė"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr "Pasitikintis savimi"
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Tęsti"
|
msgstr "Tęsti"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Kopijuoti"
|
msgstr "Kopijuoti"
|
||||||
|
|
||||||
@ -351,7 +371,12 @@ msgstr "Sukurkite jį dabar"
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr "Sukurti pavyzdinį gyvenimo aprašymą"
|
msgstr "Sukurti pavyzdinį gyvenimo aprašymą"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||||
|
msgid "Current Password"
|
||||||
|
msgstr "Dabartinis slaptažodis"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr "Pasirinktinis CSS"
|
msgstr "Pasirinktinis CSS"
|
||||||
@ -386,10 +411,10 @@ msgstr "Tamsus"
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Data"
|
msgstr "Data"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Data arba datos intervalas"
|
msgstr "Data arba datos intervalas"
|
||||||
@ -407,11 +432,15 @@ msgstr "Ištrinti"
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr "Ištrinti paskyrą"
|
msgstr "Ištrinti paskyrą"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr "Diegimo pavadinimas"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Aprašymas"
|
msgstr "Aprašymas"
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr "Sukurkite vieno / kelių puslapių gyvenimo aprašymus"
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr "Išjungti"
|
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"
|
msgid "Disable 2FA"
|
||||||
msgstr "Išjungti 2FA"
|
msgstr "Išjungti 2FA"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr "Išmesti"
|
msgstr "Išmesti"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Dokumentacija"
|
msgstr "Dokumentacija"
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr "Dokumentacija"
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr "Neturite paskyros?"
|
msgstr "Neturite paskyros?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr "Nežinote nuo ko pradėti? Paspauskite dokumentus!"
|
msgstr "Nežinote nuo ko pradėti? Paspauskite dokumentus!"
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr "Nežinote nuo ko pradėti? Paspauskite dokumentus!"
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr "Nematote savo kalbos? <0>Padėkite išversti programą.</0>"
|
msgstr "Nematote savo kalbos? <0>Padėkite išversti programą.</0>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr "Paaukoti \"Reactive Resume\""
|
msgstr "Paaukoti \"Reactive Resume\""
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr "Paaukoti \"Reactive Resume\""
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr "Atsisiųskite savo gyvenimo aprašymo JSON momentinę nuotrauką. Šį failą galite naudoti ateityje importuodami savo gyvenimo aprašymą arba net bendrinti su kitais, kad galėtumėte bendradarbiauti."
|
msgstr "Atsisiųskite savo gyvenimo aprašymo JSON momentinę nuotrauką. Šį failą galite naudoti ateityje importuodami savo gyvenimo aprašymą arba net bendrinti su kitais, kad galėtumėte bendradarbiauti."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
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."
|
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/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr "Atsisiųsti PDF"
|
msgstr "Atsisiųsti PDF"
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr "Dubliuoti esamą elementą"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Dubliuoti esamą gyvenimo aprašymą"
|
msgstr "Dubliuoti esamą gyvenimo aprašymą"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Redaguoti"
|
msgstr "Redaguoti"
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr "Efektai"
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr "El. paštas"
|
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"
|
msgid "Enable 2FA"
|
||||||
msgstr "Įjungti 2FA"
|
msgstr "Įjungti 2FA"
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr "Toliau įveskite vienkartinį slaptažodį, kurį pateikė autentifikato
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr "Įveskite savo el. pašto adresą ir mes atsiųsime jums nuorodą, kad iš naujo nustatytumėte slaptažodį, jei paskyra egzistuoja."
|
msgstr "Įveskite savo el. pašto adresą ir mes atsiųsime jums nuorodą, kad iš naujo nustatytumėte slaptažodį, jei paskyra egzistuoja."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr "Klaida {statusCode}"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr "Klaidos"
|
msgstr "Klaidos"
|
||||||
@ -544,6 +576,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ą."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr "Eksportuoti"
|
msgstr "Eksportuoti"
|
||||||
@ -564,19 +597,19 @@ msgstr "Pagaliau,"
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr "Taisyti rašybą ir gramatiką"
|
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"
|
msgid "Font Family"
|
||||||
msgstr "Šriftų šeima"
|
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"
|
msgid "Font Size"
|
||||||
msgstr "Šrifto dydis"
|
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"
|
msgid "Font Subset"
|
||||||
msgstr "Šriftų pogrupis"
|
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"
|
msgid "Font Variants"
|
||||||
msgstr "Šrifto variantai"
|
msgstr "Šrifto variantai"
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr "Šrifto variantai"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "Pavyzdžiui, čia galima įrašyti informaciją apie tai, kurioms įmonėms siuntėte šį gyvenimo aprašymą, arba nuorodas į darbo aprašymus."
|
msgstr "Pavyzdžiui, čia galima įrašyti informaciją apie tai, kurioms įmonėms siuntėte šį gyvenimo aprašymą, arba nuorodas į darbo aprašymus."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Pamirškite"
|
msgstr "Pamirškite"
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr "Pamiršote slaptažodį?"
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr "Formatas"
|
msgstr "Formatas"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr "Radote klaidą arba turite idėją naujai funkcijai?"
|
msgstr "Radote klaidą arba turite idėją naujai funkcijai?"
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr "Radote klaidą arba turite idėją naujai funkcijai?"
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr "Nemokamai, visam laikui"
|
msgstr "Nemokamai, visam laikui"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr "Draugiškas"
|
msgstr "Draugiškas"
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr "Suteikite senam gyvenimo aprašymui naują pavadinimą."
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr "Eikite į prietaisų skydelį"
|
msgstr "Eikite į prietaisų skydelį"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr "Eiti į pradžią"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr "Google"
|
msgstr "Google"
|
||||||
@ -651,7 +688,7 @@ msgstr "Google"
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr "Pilka skalė"
|
msgstr "Pilka skalė"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr "Tinklelis"
|
msgstr "Tinklelis"
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr "Čia galite atnaujinti savo profilį, kad pritaikytumėte ir suasmenintumėte savo patirtį."
|
msgstr "Čia galite atnaujinti savo profilį, kad pritaikytumėte ir suasmenintumėte savo patirtį."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Paslėptas"
|
msgstr "Paslėptas"
|
||||||
@ -677,7 +714,7 @@ msgstr "Paslėptas"
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr "Paslėpti"
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr "Paslėpti piktogramas"
|
msgstr "Paslėpti piktogramas"
|
||||||
|
|
||||||
@ -734,7 +771,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."
|
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ą."
|
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."
|
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ą."
|
msgstr "Šiame skyriuje galite pakeisti slaptažodį ir įjungti / išjungti dviejų veiksnių autentifikavimą."
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ 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>."
|
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/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Informacija"
|
msgstr "Informacija"
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr "jonas.jonaitis@pavyzdys.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Raktiniai žodžiai"
|
msgstr "Raktiniai žodžiai"
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr "Paskutinį kartą atnaujinta {lastUpdated}"
|
msgstr "Paskutinį kartą atnaujinta {lastUpdated}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Išdėstymas"
|
msgstr "Išdėstymas"
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr "Laiškas"
|
msgstr "Laiškas"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr "Lygis"
|
msgstr "Lygis"
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr "Šviesa"
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr "Šviesi arba tamsi tema"
|
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"
|
msgid "Line Height"
|
||||||
msgstr "Linijos aukštis"
|
msgstr "Linijos aukštis"
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr "Linijos aukštis"
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr "LinkedIn, JSON CV ir kt."
|
msgstr "LinkedIn, JSON CV ir kt."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr "Sąrašas"
|
msgstr "Sąrašas"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr "Atsijungti"
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr "Praradote įrenginį?"
|
msgstr "Praradote įrenginį?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr "Pagrindinis"
|
msgstr "Pagrindinis"
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr "2023 m. kovo mėn"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr "2023 m. kovo mėn. - dabartis"
|
msgstr "2023 m. kovo mėn. - dabartis"
|
||||||
@ -923,7 +962,7 @@ msgstr "2023 m. kovo mėn. - dabartis"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Paraštė"
|
msgstr "Paraštė"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "Maksimalus žetonų skaičius"
|
msgstr "Maksimalus žetonų skaičius"
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr "Maksimalus žetonų skaičius"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "MIT licencija"
|
msgstr "MIT licencija"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "Modelis"
|
msgstr "Modelis"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr "Vardas"
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Tinklas"
|
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"
|
msgid "New Password"
|
||||||
msgstr "Naujas slaptažodis"
|
msgstr "Naujas slaptažodis"
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr "Pastaba: dėl to jūsų paskyra taps mažiau saugi."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Pastabos"
|
msgstr "Pastabos"
|
||||||
@ -1009,16 +1049,16 @@ msgstr "\"OpenAI\" nepateikė jokių jūsų teksto pasirinkimų."
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "\"OpenAI\" integracija"
|
msgstr "\"OpenAI\" integracija"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
msgstr "\"OpenAI\"/\"Azure\" \"OpenAI\"/\"Ollama\" integracija"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr "\"OpenAI/Ollama\" API raktas"
|
msgstr "\"OpenAI/Ollama\" API raktas"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
|
||||||
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/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"
|
msgid "Options"
|
||||||
msgstr "Parinktys"
|
msgstr "Parinktys"
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr "Organizacija"
|
msgstr "Organizacija"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "Puslapis"
|
msgstr "Puslapis"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr "Puslapis {pageNumber}"
|
msgstr "Puslapis {pageNumber}"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr "Slaptažodis"
|
msgstr "Slaptažodis"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr "PDF"
|
msgstr "PDF"
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr "Sukurta naudojant <0>Simple Icons</0>"
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr "Pagrindinė spalva"
|
msgstr "Pagrindinė spalva"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr "Privatumo politika"
|
msgstr "Privatumo politika"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr "Profesionalus"
|
msgstr "Profesionalus"
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr "Viešas"
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "Leidėjas"
|
msgstr "Leidėjas"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr "Iškelti problemą"
|
msgstr "Iškelti problemą"
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr "Iškelti problemą"
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr "\"Reactive Resume\" klesti dėl savo gyvybingos bendruomenės. Šis proj
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Grąžinti"
|
msgstr "Grąžinti"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Pašalinti"
|
msgstr "Pašalinti"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr "Pašalinti puslapį"
|
msgstr "Pašalinti puslapį"
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr "Pakartotinis el. pašto patvirtinimo nuorodos siuntimas"
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr "Nustatyti iš naujo"
|
msgstr "Nustatyti iš naujo"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr "Iš naujo nustatyti išdėstymą"
|
msgstr "Iš naujo nustatyti išdėstymą"
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr "Iš naujo nustatyti priartinimą"
|
msgstr "Iš naujo nustatyti priartinimą"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr "Gyvenimo aprašymai"
|
msgstr "Gyvenimo aprašymai"
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr "Suapvalintas"
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Išsaugoti pakeitimus"
|
msgstr "Išsaugoti pakeitimus"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "Išsaugoti vietoje"
|
msgstr "Išsaugoti vietoje"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Išsaugota"
|
msgstr "Išsaugota"
|
||||||
|
|
||||||
@ -1262,15 +1300,15 @@ msgstr "Slinkite prie Pan"
|
|||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr "Slinkti į priartinimą"
|
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"
|
msgid "Search for a font family"
|
||||||
msgstr "Šriftų šeimos paieška"
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr "Šrifto poaibio paieška"
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr "Šrifto varianto paieška"
|
msgstr "Šrifto varianto paieška"
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr "Kalbos paieška"
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr "Apsaugokite naudodami dviejų veiksnių autentifikavimą"
|
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"
|
msgid "Security"
|
||||||
msgstr "Apsauga"
|
msgstr "Apsauga"
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr "Savarankiškas talpinimas naudojant Docker"
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr "Siųsti el. laišką"
|
msgstr "Siųsti el. laišką"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr "Siųskite man žinutę"
|
msgstr "Siųskite man žinutę"
|
||||||
|
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr "Nustatykite dviejų veiksnių autentifikavimą savo paskyroje"
|
msgstr "Nustatykite dviejų veiksnių autentifikavimą savo paskyroje"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr "Dalijimasis"
|
msgstr "Dalijimasis"
|
||||||
@ -1330,7 +1369,7 @@ msgstr "Rodyti lūžio liniją"
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr "Rodyti puslapių numerius"
|
msgstr "Rodyti puslapių numerius"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Šoninė juosta"
|
msgstr "Šoninė juosta"
|
||||||
|
|
||||||
@ -1408,6 +1447,7 @@ msgid "Start building your resume by giving it a name."
|
|||||||
msgstr "Pradėkite kurti savo gyvenimo aprašymą suteikdami jam pavadinimą."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr "Statistika"
|
msgstr "Statistika"
|
||||||
@ -1422,17 +1462,17 @@ msgstr "Saugiai saugokite atsarginių kopijų kodus"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr "Santrauka"
|
msgstr "Santrauka"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr "Palaikykite programėlę paaukodami tai, ką galite!"
|
msgstr "Palaikykite programėlę paaukodami tai, ką galite!"
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr "\"Reactive Resume\" palaikymas"
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr "Palaikomi A4/laiško puslapių formatai"
|
msgstr "Palaikomi A4/laiško puslapių formatai"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr "Perjungimas į tamsųjį režimą"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr "Perjungimas į šviesos režimą"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr "Sistema"
|
msgstr "Sistema"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "Šablonas"
|
msgstr "Šablonas"
|
||||||
@ -1465,15 +1514,20 @@ msgstr "Atsiliepimai"
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr "Teksto spalva"
|
msgstr "Teksto spalva"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
msgstr "Įvesti slaptažodžiai nesutampa."
|
msgstr "Ieškomas puslapis neegzistuoja."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
|
msgstr "Užklausa buvo negaliojanti."
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: 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."
|
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į."
|
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/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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,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:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr "Dviejų veiksnių autentiškumo patvirtinimas"
|
msgstr "Dviejų veiksnių autentiškumo patvirtinimas"
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr "Studijų tipas"
|
msgstr "Studijų tipas"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr "Tipografija"
|
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"
|
msgid "Underline Links"
|
||||||
msgstr "Pabraukite nuorodas"
|
msgstr "Pabraukite nuorodas"
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr "URL"
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr "URL turi prasidėti https://"
|
msgstr "URL turi prasidėti https://"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr "Naudokite \"Azure OpenAI"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr "Naudoti sistemos temą"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,7 +1714,7 @@ msgstr "4 versija"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Peržiūros"
|
msgstr "Peržiūros"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Matomas"
|
msgstr "Matomas"
|
||||||
|
|
||||||
@ -1665,11 +1728,11 @@ msgstr "Jūsų el. pašto adresą tikriname tik tam, kad galėtume atsiųsti sla
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr "Tinklalapis"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Kas naujo naujausioje versijoje"
|
msgstr "Kas naujo naujausioje versijoje"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr "Jums nesuteikta teisė pasiekti šį puslapį."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Galite pridėti kelis raktinius žodžius, atskirdami juos kableliu arba paspausdami enter."
|
msgstr "Galite pridėti kelis raktinius žodžius, atskirdami juos kableliu arba paspausdami enter."
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr "Galite pridėti kelis raktinius žodžius, atskirdami juos kableliu arba
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Taip pat galite įvesti savo vartotojo vardą."
|
msgstr "Taip pat galite įvesti savo vartotojo vardą."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr "Taip pat galite integruotis su \"Ollama\", tiesiog nustatę API raktą `sk-1234567890abcdef`, o bazinį URL - savo \"Ollama\" URL, t. y. `http://localhost:11434/v1`. Taip pat galite rinktis modelius ir nustatyti maksimalius žetonus pagal savo pageidavimus."
|
msgstr "Taip pat galite integruoti su \"Azure OpenAI\", įjungę žymimąjį langelį <0>Naudoti \"Azure OpenAI\"</0> ir nustatę \"Resource URL\" į \"Azure OpenAI\" išteklių: <1>https://your-resource.openai.azure.com</1>. Laukelyje Model nustatykite diegimo pavadinimą ir nurodykite atitinkamą \"Azure\" diegimo API versiją."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
msgstr "Galite naudoti OpenAI API, kad padėtumėte generuoti turinį arba patobulinti savo rašymą kurdami savo CV."
|
msgstr "Taip pat galite integruotis su \"Ollama\" tiesiog nustatę API raktą<0>tosk-1234567890abcdef</0>, o bazinį URL - savo \"Ollama\" URL, t. y.<1>http://localhost:11434/v1</1>. Taip pat galite pasirinkti ir pasirinkti modelius bei nustatyti maksimalius žetonus pagal savo pageidavimus."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
|
msgstr "Galite pasinaudoti \"OpenAI API\", \"Azure OpenAI\" arba \"Ollama\", kad galėtumėte kurti turinį arba tobulinti rašymą rašydami savo gyvenimo aprašymą."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Įjungę viešą bendrinimą galite stebėti, kiek peržiūrų sulaukė jūsų gyvenimo aprašymas arba kiek žmonių jį atsisiuntė."
|
msgstr "Įjungę viešą bendrinimą galite stebėti, kiek peržiūrų sulaukė jūsų gyvenimo aprašymas arba kiek žmonių jį atsisiuntė."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr "Neturite leidimo prisijungti prie šio puslapio."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "Galite <0>gauti savo \"OpenAI\" API raktą</0>. Šis raktas suteikia jums teisę naudoti API, kaip jums atrodo tinkama. Arba, jei norite visiškai išjungti dirbtinio intelekto funkcijas programoje \"Reactive Resume\", galite tiesiog pašalinti raktą iš savo nustatymų."
|
msgstr "Galite <0>gauti savo \"OpenAI\" API raktą</0>. Šis raktas suteikia jums teisę naudoti API, kaip jums atrodo tinkama. Arba, jei norite visiškai išjungti dirbtinio intelekto funkcijas programoje \"Reactive Resume\", galite tiesiog pašalinti raktą iš savo nustatymų."
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr "Gavote laišką!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Jūsų paskyra ir visi duomenys buvo sėkmingai ištrinti. Viso gero!"
|
msgstr "Jūsų paskyra ir visi duomenys buvo sėkmingai ištrinti. Viso gero!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "Jūsų API raktas saugiai saugomas naršyklės vietinėje saugykloje ir naudojamas tik teikiant užklausas \"OpenAI\" per oficialų SDK. Galite būti tikri, kad jūsų raktas nėra perduodamas jokiam išoriniam serveriui, išskyrus atvejus, kai sąveikaujama su \"OpenAI\" paslaugomis."
|
msgstr "Jūsų API raktas saugiai saugomas naršyklės vietinėje saugykloje ir naudojamas tik teikiant užklausas \"OpenAI\" per oficialų SDK. Galite būti tikri, kad jūsų raktas nėra perduodamas jokiam išoriniam serveriui, išskyrus atvejus, kai sąveikaujama su \"OpenAI\" paslaugomis."
|
||||||
|
|
||||||
@ -1733,7 +1808,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."
|
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ą."
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr "Jūsų slaptažodis sėkmingai atnaujintas."
|
msgstr "Jūsų slaptažodis sėkmingai atnaujintas."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: lv\n"
|
"Language: lv\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:40\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Latvian\n"
|
"Language-Team: Latvian\n"
|
||||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n"
|
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n"
|
||||||
@ -30,27 +30,27 @@ msgstr "{templatesCount} CV veidnes, no kurām izvēlēties"
|
|||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr "{value, plural, one {Kolonna} other {Kolonnas}}"
|
msgstr "{value, plural, one {Kolonna} other {Kolonnas}}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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 izveidoju galvenokārt pats savā brīvajā laikā, ar lielu palīdzību no citiem lieliskiem atvērtā koda autoriem.</0><1>Ja jums patīk šī lietotne un vēlaties atbalstīt tās bezmaksas saglabāšanu uz visiem laikiem, lūdzu, ziedojiet to, ko varat atļauties.</1>"
|
msgstr "<0>Reactive Resume izveidoju galvenokārt pats savā brīvajā laikā, ar lielu palīdzību no citiem lieliskiem atvērtā koda autoriem.</0><1>Ja jums patīk šī lietotne un vēlaties atbalstīt tās bezmaksas saglabāšanu uz visiem laikiem, lūdzu, ziedojiet to, ko varat atļauties.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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>Esmu pārliecināts, ka lietotne nav perfekta, bet es gribētu, lai tā tāda būtu.</0><1>Ja, veidojot CV, saskārāties ar kādām problēmām vai jums ir ideja, kas palīdzētu jums un citiem lietotājiem vieglāk veidot CV, ierakstiet par to jautājumu repozitorijā vai sūtiet man e-pastu.</1>"
|
msgstr "<0>Esmu pārliecināts, ka lietotne nav perfekta, bet es gribētu, lai tā tāda būtu.</0><1>Ja, veidojot CV, saskārāties ar kādām problēmām vai jums ir ideja, kas palīdzētu jums un citiem lietotājiem vieglāk veidot CV, ierakstiet par to jautājumu repozitorijā vai sūtiet man e-pastu.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 "<0>Piezīme: </0>Izmantojot OpenAI API, jūs atzīstat un piekrītat OpenAI noteiktajiem <1>lietošanas noteikumiem</1> un <2>privātuma politikai</2>. Lūdzu, ņemiet vērā, ka Reactive Resume neuzņemas nekādu atbildību par jebkādu nepareizu vai neatļautu pakalpojuma izmantošanu, un visas no tā izrietošās sekas vai atbildība gulstas tikai uz lietotāju."
|
msgstr "<0>Piezīme: </0>Izmantojot OpenAI API, jūs atzīstat un piekrītat OpenAI noteiktajiem <1>lietošanas noteikumiem</1> un <2>privātuma politikai</2>. Lūdzu, ņemiet vērā, ka Reactive Resume neuzņemas nekādu atbildību par jebkādu nepareizu vai neatļautu pakalpojuma izmantošanu, un visas no tā izrietošās sekas vai atbildība gulstas tikai uz lietotāju."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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>"
|
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."
|
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."
|
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."
|
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."
|
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"
|
msgid "Add a custom field"
|
||||||
msgstr "Pielāgotā lauka pievienošana"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Pievienot jaunu elementu"
|
msgstr "Pievienot jaunu elementu"
|
||||||
@ -117,7 +117,7 @@ msgstr "Pievienot jaunu elementu"
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr "Pievienot jaunu sadaļu"
|
msgstr "Pievienot jaunu sadaļu"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr "Pievienot jaunu lapu"
|
msgstr "Pievienot jaunu lapu"
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr "Jums jau ir konts?"
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr "Faila validēšanas laikā notika kļūda."
|
msgstr "Faila validēšanas laikā notika kļūda."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr "Notika iekšējā servera kļūda."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr "Notika neparedzēta kļūda."
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr "un daudz ko citu..."
|
msgstr "un daudz ko citu..."
|
||||||
@ -191,6 +199,18 @@ msgstr "Pieejams {languagesCount} valodās"
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr "Piešķīrējs"
|
msgstr "Piešķīrējs"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr "Azure API versija"
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr "Izmantojot Azure OpenAI, ir nepieciešami Azure OpenAI bāzes URL, izvietojuma nosaukums (modelis) un API versija."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr "Azure OpenAI resursa URL"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,7 +229,7 @@ msgstr "Rezerves kopijas kods"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Rezerves kopiju kodos drīkst būt tikai mazie burti vai cipari, un tiem jābūt tieši 10 rakstzīmēm."
|
msgstr "Rezerves kopiju kodos drīkst būt tikai mazie burti vai cipari, un tiem jābūt tieši 10 rakstzīmēm."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "Bāzes URL"
|
msgstr "Bāzes URL"
|
||||||
|
|
||||||
@ -246,8 +266,8 @@ msgstr "Sabiedrība - sabiedrībai un sabiedrībai."
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Atcelt"
|
msgstr "Atcelt"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr "Gadījuma"
|
msgstr "Gadījuma"
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr "Gadījuma"
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr "Centrs Artboard"
|
msgstr "Centrs Artboard"
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr "Mainīt valodu"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr "Mainīt paroli"
|
msgstr "Mainīt paroli"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr "Mainīt toni"
|
msgstr "Mainīt toni"
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr "Kolonnas"
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr "Uzņēmums"
|
msgstr "Uzņēmums"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr "Pārliecināts"
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Turpināt"
|
msgstr "Turpināt"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Kopēt"
|
msgstr "Kopēt"
|
||||||
|
|
||||||
@ -351,7 +371,12 @@ msgstr "Izveidojiet to tagad"
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr "Izveidot parauga CV"
|
msgstr "Izveidot parauga CV"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||||
|
msgid "Current Password"
|
||||||
|
msgstr "Pašreizējā parole"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr "Pielāgotais CSS"
|
msgstr "Pielāgotais CSS"
|
||||||
@ -386,10 +411,10 @@ msgstr "Tumšs"
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Datums"
|
msgstr "Datums"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Datums vai datuma diapazons"
|
msgstr "Datums vai datuma diapazons"
|
||||||
@ -407,11 +432,15 @@ msgstr "Dzēst"
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr "Konta dzēšana"
|
msgstr "Konta dzēšana"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr "Izvietošanas nosaukums"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Apraksts"
|
msgstr "Apraksts"
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr "Vienas/vairāku lappušu CV dizains"
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr "Atslēgt"
|
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"
|
msgid "Disable 2FA"
|
||||||
msgstr "2FA atspējošana"
|
msgstr "2FA atspējošana"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr "Izmest"
|
msgstr "Izmest"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Dokumentācija"
|
msgstr "Dokumentācija"
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr "Dokumentācija"
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr "Jums nav konta?"
|
msgstr "Jums nav konta?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr "Vai nezināt, ar ko sākt? Šķir lapu ar dokumentiem!"
|
msgstr "Vai nezināt, ar ko sākt? Šķir lapu ar dokumentiem!"
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr "Vai nezināt, ar ko sākt? Šķir lapu ar dokumentiem!"
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr "Vai neredzat savu valodu? <0>Palīdziet tulkot lietotni.</0>"
|
msgstr "Vai neredzat savu valodu? <0>Palīdziet tulkot lietotni.</0>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr "Ziedot Reactive Resume"
|
msgstr "Ziedot Reactive Resume"
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr "Ziedot Reactive Resume"
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr "Lejupielādējiet sava CV JSON momentuzņēmumu. Šo failu var izmantot, lai importētu savu CV nākotnē, vai pat kopīgot ar citiem, lai sadarbotos."
|
msgstr "Lejupielādējiet sava CV JSON momentuzņēmumu. Šo failu var izmantot, lai importētu savu CV nākotnē, vai pat kopīgot ar citiem, lai sadarbotos."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
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."
|
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/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr "Lejupielādēt PDF"
|
msgstr "Lejupielādēt PDF"
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr "Esoša vienuma dublēšana"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Esoša CV dublēšana"
|
msgstr "Esoša CV dublēšana"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Rediģēt"
|
msgstr "Rediģēt"
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr "Ietekme"
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr "E-pasts"
|
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"
|
msgid "Enable 2FA"
|
||||||
msgstr "Ieslēgt 2FA"
|
msgstr "Ieslēgt 2FA"
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr "Tālāk ievadiet vienreizējo paroli, ko nodrošina autentifikatora liet
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr "Ievadiet savu e-pasta adresi, un mēs jums nosūtīsim saiti, lai atjaunotu paroli, ja konts ir izveidots."
|
msgstr "Ievadiet savu e-pasta adresi, un mēs jums nosūtīsim saiti, lai atjaunotu paroli, ja konts ir izveidots."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr "Kļūda {statusCode}"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr "Kļūdas"
|
msgstr "Kļūdas"
|
||||||
@ -544,6 +576,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."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr "Eksportēt"
|
msgstr "Eksportēt"
|
||||||
@ -564,19 +597,19 @@ msgstr "Visbeidzot,"
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr "Labot pareizrakstību un gramatiku"
|
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"
|
msgid "Font Family"
|
||||||
msgstr "Fontu ģimene"
|
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"
|
msgid "Font Size"
|
||||||
msgstr "Fonta lielums"
|
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"
|
msgid "Font Subset"
|
||||||
msgstr "Fontu apakškomplekts"
|
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"
|
msgid "Font Variants"
|
||||||
msgstr "Fontu varianti"
|
msgstr "Fontu varianti"
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr "Fontu varianti"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "Piemēram, šeit var norādīt informāciju par to, kuriem uzņēmumiem nosūtījāt šo CV, vai saites uz darba aprakstiem."
|
msgstr "Piemēram, šeit var norādīt informāciju par to, kuriem uzņēmumiem nosūtījāt šo CV, vai saites uz darba aprakstiem."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Aizmirstiet"
|
msgstr "Aizmirstiet"
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr "Aizmirsāt paroli?"
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr "Formāts"
|
msgstr "Formāts"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr "Atradāt kļūdu vai jums ir ideja par jaunu funkciju?"
|
msgstr "Atradāt kļūdu vai jums ir ideja par jaunu funkciju?"
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr "Atradāt kļūdu vai jums ir ideja par jaunu funkciju?"
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr "Bezmaksas, uz visiem laikiem"
|
msgstr "Bezmaksas, uz visiem laikiem"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr "Draudzīgs"
|
msgstr "Draudzīgs"
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr "Dodiet savam vecajam CV jaunu nosaukumu."
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr "Dodieties uz paneli"
|
msgstr "Dodieties uz paneli"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr "Iet uz sākumlapu"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr "Google"
|
msgstr "Google"
|
||||||
@ -651,7 +688,7 @@ msgstr "Google"
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr "Sarkanās krāsas"
|
msgstr "Sarkanās krāsas"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr "Tīkls"
|
msgstr "Tīkls"
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr "Šeit varat atjaunināt savu profilu, lai pielāgotu un personalizētu savu pieredzi."
|
msgstr "Šeit varat atjaunināt savu profilu, lai pielāgotu un personalizētu savu pieredzi."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Slēptais"
|
msgstr "Slēptais"
|
||||||
@ -677,7 +714,7 @@ msgstr "Slēptais"
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr "Paslēpt"
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr "Slēpt ikonas"
|
msgstr "Slēpt ikonas"
|
||||||
|
|
||||||
@ -734,7 +771,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."
|
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ē."
|
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."
|
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."
|
msgstr "Šajā sadaļā varat mainīt paroli un iespējot/izslēgt divu faktoru autentifikāciju."
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ 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>."
|
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/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Informācija"
|
msgstr "Informācija"
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr "john.doe@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Atslēgas vārdi"
|
msgstr "Atslēgas vārdi"
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr "Pēdējo reizi atjaunināts {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/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Izkārtojums"
|
msgstr "Izkārtojums"
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr "Vēstule"
|
msgstr "Vēstule"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr "Līmenis"
|
msgstr "Līmenis"
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr "Gaisma"
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr "Gaišs vai tumšs temats"
|
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"
|
msgid "Line Height"
|
||||||
msgstr "Līnijas augstums"
|
msgstr "Līnijas augstums"
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr "Līnijas augstums"
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr "LinkedIn, JSON CV u. c."
|
msgstr "LinkedIn, JSON CV u. c."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr "Saraksts"
|
msgstr "Saraksts"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr "Izrakstīšanās"
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr "Vai esat pazaudējis ierīci?"
|
msgstr "Vai esat pazaudējis ierīci?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr "Galvenais"
|
msgstr "Galvenais"
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr "2023. gada marts"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr "2023. gada marts - klāt"
|
msgstr "2023. gada marts - klāt"
|
||||||
@ -923,7 +962,7 @@ msgstr "2023. gada marts - klāt"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Rezerve"
|
msgstr "Rezerve"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "Maksimālais žetonu skaits"
|
msgstr "Maksimālais žetonu skaits"
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr "Maksimālais žetonu skaits"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "MIT licence"
|
msgstr "MIT licence"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "Modelis"
|
msgstr "Modelis"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr "Nosaukums"
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Tīkls"
|
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"
|
msgid "New Password"
|
||||||
msgstr "Jauna parole"
|
msgstr "Jauna parole"
|
||||||
|
|
||||||
@ -974,6 +1013,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."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Piezīmes"
|
msgstr "Piezīmes"
|
||||||
@ -1009,16 +1049,16 @@ msgstr "OpenAI neatgrieza nevienu jūsu teksta izvēli."
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "OpenAI integrācija"
|
msgstr "OpenAI integrācija"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
msgstr "OpenAI/Azure OpenAI/Ollama integrācija"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr "OpenAI/Ollama API atslēga"
|
msgstr "OpenAI/Ollama API atslēga"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
|
||||||
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/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"
|
msgid "Options"
|
||||||
msgstr "Iespējas"
|
msgstr "Iespējas"
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr "Organizācija"
|
msgstr "Organizācija"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "Lapa"
|
msgstr "Lapa"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr "Lapa {pageNumber}"
|
msgstr "Lapa {pageNumber}"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr "Parole"
|
msgstr "Parole"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr "PDF"
|
msgstr "PDF"
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr "Darbojas ar <0>vienkāršām ikonām</0>"
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr "Primārā krāsa"
|
msgstr "Primārā krāsa"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr "Konfidencialitātes politika"
|
msgstr "Konfidencialitātes politika"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr "Profesionāls"
|
msgstr "Profesionāls"
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr "Publiski"
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "Izdevējs"
|
msgstr "Izdevējs"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr "Izvirzīt jautājumu"
|
msgstr "Izvirzīt jautājumu"
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr "Izvirzīt jautājumu"
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr "Reactive Resume plaukst, pateicoties tā dinamiskajai kopienai. Šis pro
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Pārtaisīt"
|
msgstr "Pārtaisīt"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Noņemt"
|
msgstr "Noņemt"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr "Noņemt lapu"
|
msgstr "Noņemt lapu"
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr "Atkārtoti nosūtīt e-pasta apstiprinājuma saiti"
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr "Atiestatīt"
|
msgstr "Atiestatīt"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr "Izkārtojuma atiestatīšana"
|
msgstr "Izkārtojuma atiestatīšana"
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr "Atiestatīt tālummaiņu"
|
msgstr "Atiestatīt tālummaiņu"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr "CV"
|
msgstr "CV"
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr "Noapaļots"
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Izmaiņu saglabāšana"
|
msgstr "Izmaiņu saglabāšana"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "Glābt uz vietas"
|
msgstr "Glābt uz vietas"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Saglabāts"
|
msgstr "Saglabāts"
|
||||||
|
|
||||||
@ -1262,15 +1300,15 @@ msgstr "Ritiniet uz Pan"
|
|||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr "Ritiniet, lai palielinātu"
|
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"
|
msgid "Search for a font family"
|
||||||
msgstr "Meklēt fontu saimi"
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr "Meklēt fontu apakškopu"
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr "Meklēt fonta variantu"
|
msgstr "Meklēt fonta variantu"
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr "Meklēt valodu"
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr "Droša ar divu faktoru autentifikāciju"
|
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"
|
msgid "Security"
|
||||||
msgstr "Drošība"
|
msgstr "Drošība"
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr "Pašmāju hostings ar Docker"
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr "Sūtīt e-pastu"
|
msgstr "Sūtīt e-pastu"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr "Nosūtiet man ziņu"
|
msgstr "Nosūtiet man ziņu"
|
||||||
|
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr "Divu faktoru autentifikācijas iestatīšana kontā"
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr "Koplietošana"
|
msgstr "Koplietošana"
|
||||||
@ -1330,7 +1369,7 @@ msgstr "Rādīt pārtraukuma līniju"
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr "Rādīt lappušu numurus"
|
msgstr "Rādīt lappušu numurus"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Sānu josla"
|
msgstr "Sānu josla"
|
||||||
|
|
||||||
@ -1408,6 +1447,7 @@ msgid "Start building your resume by giving it a name."
|
|||||||
msgstr "Sāciet veidot savu CV, piešķirot tam nosaukumu."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr "Statistika"
|
msgstr "Statistika"
|
||||||
@ -1422,17 +1462,17 @@ msgstr "Droši uzglabājiet dublējuma kodus"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr "Kopsavilkums"
|
msgstr "Kopsavilkums"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr "Atbalstiet lietotni, ziedojot, ko varat!"
|
msgstr "Atbalstiet lietotni, ziedojot, ko varat!"
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr "Reaktīvais atbalsts Resumē"
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr "Atbalsta A4/Letter lapu formātus"
|
msgstr "Atbalsta A4/Letter lapu formātus"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr "Pārslēgšanās uz tumšo režīmu"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr "Pārslēgšanās uz gaismas režīmu"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr "Sistēma"
|
msgstr "Sistēma"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "Šablons"
|
msgstr "Šablons"
|
||||||
@ -1465,15 +1514,20 @@ msgstr "Atsauksmes"
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr "Teksta krāsa"
|
msgstr "Teksta krāsa"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
msgstr "Ievadītās paroles nesakrīt."
|
msgstr "Jūsu meklētā lapa neeksistē."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
|
msgstr "Pieprasījums bija nederīgs."
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: 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."
|
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."
|
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/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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,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:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr "Divu faktoru autentifikācija"
|
msgstr "Divu faktoru autentifikācija"
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr "Pētījuma veids"
|
msgstr "Pētījuma veids"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr "Tipogrāfija"
|
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"
|
msgid "Underline Links"
|
||||||
msgstr "Pasvītrot saites"
|
msgstr "Pasvītrot saites"
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr "URL"
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr "URL jāsākas ar https://"
|
msgstr "URL jāsākas ar https://"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr "Izmantojiet Azure OpenAI"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr "Sistēmas tēmas izmantošana"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,7 +1714,7 @@ msgstr "Versija 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Skati"
|
msgstr "Skati"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Redzams"
|
msgstr "Redzams"
|
||||||
|
|
||||||
@ -1665,11 +1728,11 @@ msgstr "Mēs pārbaudām jūsu e-pasta adresi tikai tādēļ, lai nodrošinātu,
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr "Tīmekļa vietne"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Jaunumi jaunākajā versijā"
|
msgstr "Jaunumi jaunākajā versijā"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr "Jums nav tiesību piekļūt šai lapai."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Varat pievienot vairākus atslēgvārdus, atdalot tos ar komatu vai nospiežot enter."
|
msgstr "Varat pievienot vairākus atslēgvārdus, atdalot tos ar komatu vai nospiežot enter."
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr "Varat pievienot vairākus atslēgvārdus, atdalot tos ar komatu vai nosp
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Varat arī ievadīt savu lietotājvārdu."
|
msgstr "Varat arī ievadīt savu lietotājvārdu."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr "Varat arī integrēties ar Ollama, vienkārši iestatot API atslēgu uz `sk-1234567890abcdef` un bāzes URL uz jūsu Ollama URL, t. i., `http://localhost:11434/v1`. Varat arī izvēlēties un atlasīt modeļus un iestatīt maksimālo žetonu skaitu atbilstoši savām vēlmēm."
|
msgstr "Varat arī integrēties ar Azure OpenAI, atzīmējot izvēles rūtiņu <0>Izmantot Azure OpenAI</0> un iestatot Resursu URL uz savu Azure OpenAI resursu: <1>https://your-resource.openai.azure.com</1>. Laukā Model (Modelis) iestatiet izvietojuma nosaukumu un norādiet atbilstošo API versiju savam Azure izvietojumam."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
msgstr "Varat izmantot OpenAI API, lai palīdzētu jums ģenerēt saturu vai uzlabot rakstīšanu, veidojot CV."
|
msgstr "Varat arī integrēties ar Ollama, vienkārši iestatot API atslēgu<0>tosk-1234567890abcdef</0> un bāzes URL uz jūsu Ollama URL, t. i.,<1>http://localhost:11434/v1</1>. Varat arī izvēlēties modeļus un iestatīt maksimālos žetonus atbilstoši savām vēlmēm."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
|
msgstr "Varat izmantot OpenAI API, Azure OpenAI vai Ollama, lai palīdzētu jums ģenerēt saturu vai uzlabot rakstīšanu, veidojot CV."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Iespējot publisko kopīgošanu, varat sekot līdzi tam, cik skatījumu ir saņemts jūsu CV vai cik daudz cilvēku ir lejupielādējuši CV."
|
msgstr "Iespējot publisko kopīgošanu, varat sekot līdzi tam, cik skatījumu ir saņemts jūsu CV vai cik daudz cilvēku ir lejupielādējuši CV."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr "Jums nav tiesību piekļūt šai lapai."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "Jums ir iespēja <0>iegūt savu OpenAI API atslēgu</0>. Šī atslēga ļauj jums izmantot API pēc saviem ieskatiem. Ja vēlaties pilnībā atslēgt mākslīgā intelekta funkcijas Reactive Resume, varat arī vienkārši no iestatījumiem noņemt atslēgu."
|
msgstr "Jums ir iespēja <0>iegūt savu OpenAI API atslēgu</0>. Šī atslēga ļauj jums izmantot API pēc saviem ieskatiem. Ja vēlaties pilnībā atslēgt mākslīgā intelekta funkcijas Reactive Resume, varat arī vienkārši no iestatījumiem noņemt atslēgu."
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr "Jūs esat saņēmis pastu!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Jūsu konts un visi dati ir veiksmīgi dzēsti. Uz redzēšanos!"
|
msgstr "Jūsu konts un visi dati ir veiksmīgi dzēsti. Uz redzēšanos!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "Jūsu API atslēga tiek droši glabāta pārlūkprogrammas lokālajā atmiņā un tiek izmantota tikai tad, kad tiek veikti pieprasījumi OpenAI, izmantojot oficiālo SDK. Esiet droši, ka jūsu atslēga netiek pārsūtīta nevienam ārējam serverim, izņemot gadījumus, kad notiek mijiedarbība ar OpenAI pakalpojumiem."
|
msgstr "Jūsu API atslēga tiek droši glabāta pārlūkprogrammas lokālajā atmiņā un tiek izmantota tikai tad, kad tiek veikti pieprasījumi OpenAI, izmantojot oficiālo SDK. Esiet droši, ka jūsu atslēga netiek pārsūtīta nevienam ārējam serverim, izņemot gadījumus, kad notiek mijiedarbība ar OpenAI pakalpojumiem."
|
||||||
|
|
||||||
@ -1733,7 +1808,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."
|
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."
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr "Jūsu parole ir veiksmīgi atjaunināta."
|
msgstr "Jūsu parole ir veiksmīgi atjaunināta."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: ml\n"
|
"Language: ml\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:32\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Malayalam\n"
|
"Language-Team: Malayalam\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -30,27 +30,27 @@ msgstr ""
|
|||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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 ""
|
||||||
|
|
||||||
#: 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."
|
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||||
msgstr ""
|
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."
|
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -102,8 +102,8 @@ msgstr ""
|
|||||||
msgid "Add a custom field"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -117,7 +117,7 @@ msgstr ""
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr ""
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -191,6 +199,18 @@ msgstr ""
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,7 +229,7 @@ msgstr ""
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -246,8 +266,8 @@ msgstr ""
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr ""
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr ""
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr ""
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -351,7 +371,12 @@ msgstr ""
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr ""
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -386,10 +411,10 @@ msgstr ""
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -407,11 +432,15 @@ msgstr ""
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr ""
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||||
msgid "Disable 2FA"
|
msgid "Disable 2FA"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr ""
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr ""
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr ""
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr ""
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr ""
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||||
msgid "Enable 2FA"
|
msgid "Enable 2FA"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr ""
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -544,6 +576,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -564,19 +597,19 @@ msgstr ""
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr ""
|
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"
|
msgid "Font Family"
|
||||||
msgstr ""
|
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"
|
msgid "Font Size"
|
||||||
msgstr ""
|
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"
|
msgid "Font Subset"
|
||||||
msgstr ""
|
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"
|
msgid "Font Variants"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr ""
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr ""
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr ""
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr ""
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -651,7 +688,7 @@ msgstr ""
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -677,7 +714,7 @@ msgstr ""
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr ""
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -734,7 +771,7 @@ msgstr ""
|
|||||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||||
msgstr ""
|
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."
|
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ msgid "In this section, you can delete your account and all the data associated
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr ""
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr ""
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr ""
|
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"
|
msgid "Line Height"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr ""
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr ""
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -923,7 +962,7 @@ msgstr ""
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr ""
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||||
msgid "New Password"
|
msgid "New Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1009,16 +1049,16 @@ msgstr ""
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
|
||||||
msgid "OpenAI/Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: 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"
|
msgid "Options"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr ""
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr ""
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr ""
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr ""
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr ""
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1262,15 +1300,15 @@ msgstr ""
|
|||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr ""
|
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"
|
msgid "Search for a font family"
|
||||||
msgstr ""
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr ""
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr ""
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr ""
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1330,7 +1369,7 @@ msgstr ""
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1408,6 +1447,7 @@ msgid "Start building your resume by giving it a name."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1422,17 +1462,17 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr ""
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1465,8 +1514,12 @@ msgstr ""
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: apps/client/src/services/errors/translate-error.ts:49
|
||||||
@ -1474,6 +1527,7 @@ msgid "The resume you want to update is locked, please unlock if you wish to mak
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
#: 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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr ""
|
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"
|
msgid "Underline Links"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr ""
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,7 +1714,7 @@ msgstr ""
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1665,11 +1728,11 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr ""
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr ""
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr ""
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr ""
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1733,7 +1808,7 @@ msgstr ""
|
|||||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||||
msgstr ""
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: ms\n"
|
"Language: ms\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:32\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Malay\n"
|
"Language-Team: Malay\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
@ -30,27 +30,27 @@ msgstr "{templatesCount} templat resume yang dapat dipilih"
|
|||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr "{value, plural, other {Ruangan}}"
|
msgstr "{value, plural, other {Ruangan}}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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>Saya membina Reaktif Resume kebanyakannya sendiri semasa masa lapang saya, dengan banyak bantuan dari penyumbang sumber terbuka yang hebat lain.</0><1>Jika anda menyukai aplikasi ini dan ingin menyokong untuk memastikan ia kekal percuma selamanya, sila derma apa sahaja yang anda mampu untuk memberi.</1>"
|
msgstr "<0>Saya membina Reaktif Resume kebanyakannya sendiri semasa masa lapang saya, dengan banyak bantuan dari penyumbang sumber terbuka yang hebat lain.</0><1>Jika anda menyukai aplikasi ini dan ingin menyokong untuk memastikan ia kekal percuma selamanya, sila derma apa sahaja yang anda mampu untuk memberi.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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>Saya yakin aplikasi ini tidak sempurna, tetapi saya ingin ia menjadi sempurna.</0><1>Jika anda menghadapi sebarang isu semasa membuat resume anda, atau mempunyai idea yang boleh membantu anda dan pengguna lain dalam membuat resume anda dengan lebih mudah, sila berikan isu di repository atau hantar saya emel mengenainya.</1>"
|
msgstr "<0>Saya yakin aplikasi ini tidak sempurna, tetapi saya ingin ia menjadi sempurna.</0><1>Jika anda menghadapi sebarang isu semasa membuat resume anda, atau mempunyai idea yang boleh membantu anda dan pengguna lain dalam membuat resume anda dengan lebih mudah, sila berikan isu di repository atau hantar saya emel mengenainya.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 "<0>Nota: </0>Dengan menggunakan API OpenAI, anda mengakui dan menerima <1>terma penggunaan</1> dan <2>dasar privasi</2> yang digariskan oleh OpenAI. Sila ambil perhatian bahawa Reactive Resume tidak bertanggungjawab atas sebarang penggunaan perkhidmatan yang tidak betul atau tidak dibenarkan, dan sebarang akibat atau liabiliti yang timbul semata-mata bergantung kepada pengguna."
|
msgstr "<0>Nota: </0>Dengan menggunakan API OpenAI, anda mengakui dan menerima <1>terma penggunaan</1> dan <2>dasar privasi</2> yang digariskan oleh OpenAI. Sila ambil perhatian bahawa Reactive Resume tidak bertanggungjawab atas sebarang penggunaan perkhidmatan yang tidak betul atau tidak dibenarkan, dan sebarang akibat atau liabiliti yang timbul semata-mata bergantung kepada pengguna."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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>"
|
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."
|
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."
|
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."
|
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."
|
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"
|
msgid "Add a custom field"
|
||||||
msgstr "Tambahkan medan tersuai"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Tambah item baru"
|
msgstr "Tambah item baru"
|
||||||
@ -117,7 +117,7 @@ msgstr "Tambah item baru"
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr "Tambah bahagian baru"
|
msgstr "Tambah bahagian baru"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr "Tambah Halaman Baru"
|
msgstr "Tambah Halaman Baru"
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr "Sudah mempunyai akaun?"
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr "Ralat berlaku semasa menyahkan fail."
|
msgstr "Ralat berlaku semasa menyahkan fail."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr "dan banyak lagi..."
|
msgstr "dan banyak lagi..."
|
||||||
@ -191,6 +199,18 @@ msgstr "Boleh didapati dalam {languagesCount} bahasa"
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr "Pemberi Anugerah"
|
msgstr "Pemberi Anugerah"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,7 +229,7 @@ msgstr "Kod Sandaran"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Kod Sandaran mungkin mengandungi huruf kecil atau nombor sahaja, dan mesti tepat 10 aksara."
|
msgstr "Kod Sandaran mungkin mengandungi huruf kecil atau nombor sahaja, dan mesti tepat 10 aksara."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "Pautan Asas"
|
msgstr "Pautan Asas"
|
||||||
|
|
||||||
@ -246,8 +266,8 @@ msgstr "Oleh komuniti, untuk komuniti."
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Batal"
|
msgstr "Batal"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr "Kasual"
|
msgstr "Kasual"
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr "Kasual"
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr "Papan Seni Tengah"
|
msgstr "Papan Seni Tengah"
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr "Tukar Kata Laluan"
|
msgstr "Tukar Kata Laluan"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr "Tukar Tone"
|
msgstr "Tukar Tone"
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr "Kolum"
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr "Syarikat"
|
msgstr "Syarikat"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr "Keyakinan"
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Teruskan"
|
msgstr "Teruskan"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Salin"
|
msgstr "Salin"
|
||||||
|
|
||||||
@ -351,7 +371,12 @@ msgstr "Cipta satu sekarang"
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr "Buat Resume Sampel"
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -386,10 +411,10 @@ msgstr "Gelap"
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Tarikh"
|
msgstr "Tarikh"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Tarikh atau Julat Tarikh"
|
msgstr "Tarikh atau Julat Tarikh"
|
||||||
@ -407,11 +432,15 @@ msgstr "Padam"
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr "Padam Akaun"
|
msgstr "Padam Akaun"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Penerangan"
|
msgstr "Penerangan"
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr "Mereka bentuk resume satu/multi muka surat"
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr "Matikan"
|
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"
|
msgid "Disable 2FA"
|
||||||
msgstr "Matikan 2FA"
|
msgstr "Matikan 2FA"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr "Buang"
|
msgstr "Buang"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Dokumentasi"
|
msgstr "Dokumentasi"
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr "Dokumentasi"
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr "Tidak mempunyai akaun?"
|
msgstr "Tidak mempunyai akaun?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr "Tidak tahu di mana hendak bermula? Ketuk dokumen!"
|
msgstr "Tidak tahu di mana hendak bermula? Ketuk dokumen!"
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr "Tidak tahu di mana hendak bermula? Ketuk dokumen!"
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr "Jangan lihat bahasa anda? <0>Bantu terjemahkan aplikasi ini.</0>"
|
msgstr "Jangan lihat bahasa anda? <0>Bantu terjemahkan aplikasi ini.</0>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr "Derma kepada Reaktif Resume"
|
msgstr "Derma kepada Reaktif Resume"
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr "Derma kepada Reaktif Resume"
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr "Muat turun 'snapshot' JSON resume anda. Fail ini boleh digunakan untuk mengimport resume anda di masa depan, atau boleh dikongsi dengan orang lain untuk bekerjasama."
|
msgstr "Muat turun 'snapshot' JSON resume anda. Fail ini boleh digunakan untuk mengimport resume anda di masa depan, atau boleh dikongsi dengan orang lain untuk bekerjasama."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
msgstr "Muat turunkan PDF resume anda. Fail ini boleh digunakan untuk mencetak resume anda, menghantarkannya kepada perekrut, atau memuat naik ke portal pekerjaan."
|
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/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr "Muat turun PDF"
|
msgstr "Muat turun PDF"
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr "Duplikat item yang sedia ada"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Duplikat resume sedia ada"
|
msgstr "Duplikat resume sedia ada"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Edit"
|
msgstr "Edit"
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr "Kesan"
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr "E-mel"
|
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"
|
msgid "Enable 2FA"
|
||||||
msgstr "Aktifkan 2FA"
|
msgstr "Aktifkan 2FA"
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr "Masukkan kata laluan sekali pakai yang diberikan oleh aplikasi pengesaha
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr "Masukkan alamat emel anda dan kami akan menghantar pautan untuk menetap semula kata laluan anda jika akaun wujud."
|
msgstr "Masukkan alamat emel anda dan kami akan menghantar pautan untuk menetap semula kata laluan anda jika akaun wujud."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr "Ralat"
|
msgstr "Ralat"
|
||||||
@ -544,6 +576,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."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr "Eksport"
|
msgstr "Eksport"
|
||||||
@ -564,19 +597,19 @@ msgstr "Akhirnya,"
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr "Betulkan Ejaan & Tatabahasa"
|
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"
|
msgid "Font Family"
|
||||||
msgstr "Keluarga fon"
|
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"
|
msgid "Font Size"
|
||||||
msgstr "Saiz Fon"
|
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"
|
msgid "Font Subset"
|
||||||
msgstr "Subset Fon"
|
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"
|
msgid "Font Variants"
|
||||||
msgstr "Varian Fon"
|
msgstr "Varian Fon"
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr "Varian Fon"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "Sebagai contoh, maklumat mengenai syarikat-syarikat yang anda hantar resume ini atau pautan-pautan ke huraian pekerjaan boleh dicatatkan di sini."
|
msgstr "Sebagai contoh, maklumat mengenai syarikat-syarikat yang anda hantar resume ini atau pautan-pautan ke huraian pekerjaan boleh dicatatkan di sini."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Lupakan"
|
msgstr "Lupakan"
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr "Lupa kata laluan anda?"
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr "Format"
|
msgstr "Format"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr "Jumpa bug, atau ada idea untuk ciri baru?"
|
msgstr "Jumpa bug, atau ada idea untuk ciri baru?"
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr "Jumpa bug, atau ada idea untuk ciri baru?"
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr "Percuma, selamanya"
|
msgstr "Percuma, selamanya"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr "Mesra"
|
msgstr "Mesra"
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr "Beri nama baru kepada resume lama anda."
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr "Pergi ke Dashboard"
|
msgstr "Pergi ke Dashboard"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr "Google"
|
msgstr "Google"
|
||||||
@ -651,7 +688,7 @@ msgstr "Google"
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr "Skala kelabu"
|
msgstr "Skala kelabu"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr "Grid"
|
msgstr "Grid"
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr "Di sini, anda boleh mengemaskini profil anda untuk menyesuaikan dan memperibadikan pengalaman anda."
|
msgstr "Di sini, anda boleh mengemaskini profil anda untuk menyesuaikan dan memperibadikan pengalaman anda."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Tersembunyi"
|
msgstr "Tersembunyi"
|
||||||
@ -677,7 +714,7 @@ msgstr "Tersembunyi"
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr "Sembunyi"
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr "Sembunyikan Icon"
|
msgstr "Sembunyikan Icon"
|
||||||
|
|
||||||
@ -734,7 +771,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."
|
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."
|
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."
|
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."
|
msgstr "Di bahagian ini, anda boleh menukar kata laluan anda dan mengaktifkan/menonaktifkan pengesahan dua faktor."
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ 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>."
|
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/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Maklumat"
|
msgstr "Maklumat"
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr "john.doe@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Kata Kunci"
|
msgstr "Kata Kunci"
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr "Terakhir dikemaskini {lastUpdated}"
|
msgstr "Terakhir dikemaskini {lastUpdated}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Tataletak"
|
msgstr "Tataletak"
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr "Surat"
|
msgstr "Surat"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr "Tahap"
|
msgstr "Tahap"
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr "Cerah"
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr "Tema terang atau gelap"
|
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"
|
msgid "Line Height"
|
||||||
msgstr "Tinggi Baris"
|
msgstr "Tinggi Baris"
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr "Tinggi Baris"
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr "LinkedIn, JSON Resume, etc."
|
msgstr "LinkedIn, JSON Resume, etc."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr "Senarai"
|
msgstr "Senarai"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr "Log keluar"
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr "Hilang peranti anda?"
|
msgstr "Hilang peranti anda?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr "Utama"
|
msgstr "Utama"
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr "Mac 2023"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr "Mac 2023 - Sekarang"
|
msgstr "Mac 2023 - Sekarang"
|
||||||
@ -923,7 +962,7 @@ msgstr "Mac 2023 - Sekarang"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Margin"
|
msgstr "Margin"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "Tanda-tanda terbesar"
|
msgstr "Tanda-tanda terbesar"
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr "Tanda-tanda terbesar"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "Lesen MIT"
|
msgstr "Lesen MIT"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "Modal"
|
msgstr "Modal"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr "Nama"
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Rangkaian"
|
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"
|
msgid "New Password"
|
||||||
msgstr "Kata Laluan Baru"
|
msgstr "Kata Laluan Baru"
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr "Nota: Ini akan menjadikan akaun anda kurang selamat."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Nota"
|
msgstr "Nota"
|
||||||
@ -1009,16 +1049,16 @@ msgstr "OpenAI tidak mengembalikan pilihan apa pun untuk teks anda."
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "Integrasi OpenAI"
|
msgstr "Integrasi OpenAI"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
|
||||||
msgid "OpenAI/Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: 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"
|
msgid "Options"
|
||||||
msgstr "Pilihan"
|
msgstr "Pilihan"
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr "Organisasi"
|
msgstr "Organisasi"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "Halaman"
|
msgstr "Halaman"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr "Kata Laluan"
|
msgstr "Kata Laluan"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr "PDF"
|
msgstr "PDF"
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr "Dikuasakan oleh <0>Simple Icons</0>"
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr "Warna Utama"
|
msgstr "Warna Utama"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr "Dasar Privasi"
|
msgstr "Dasar Privasi"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr "Profesional"
|
msgstr "Profesional"
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr "Awam"
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "Penerbit"
|
msgstr "Penerbit"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr "Timbulkan isu"
|
msgstr "Timbulkan isu"
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr "Timbulkan isu"
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr "Reactive Resume berkembang pesat berkat komuniti yang aktif. Projek ini
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Buat semula"
|
msgstr "Buat semula"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Keluarkan"
|
msgstr "Keluarkan"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr "Buang Halaman"
|
msgstr "Buang Halaman"
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr "Kirim semula pautan pengesahan emel"
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr "Tetapkan Semula"
|
msgstr "Tetapkan Semula"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr "Tetapkan Susunan Semula"
|
msgstr "Tetapkan Susunan Semula"
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr "Tetap Semula Zoom"
|
msgstr "Tetap Semula Zoom"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr "Resume"
|
msgstr "Resume"
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr "Bulat"
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Simpan Perubahan"
|
msgstr "Simpan Perubahan"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "Simpan di dalam computer"
|
msgstr "Simpan di dalam computer"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Disimpan"
|
msgstr "Disimpan"
|
||||||
|
|
||||||
@ -1262,15 +1300,15 @@ msgstr ""
|
|||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr ""
|
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"
|
msgid "Search for a font family"
|
||||||
msgstr "Cari keluarga fon"
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr "Cari subset fon"
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr "Cari varian font"
|
msgstr "Cari varian font"
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr "Cari bahasa"
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr "Selamatkan dengan pengesahan dua faktor"
|
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"
|
msgid "Security"
|
||||||
msgstr "Keselamatan"
|
msgstr "Keselamatan"
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr "Taja sendiri dengan Docker"
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr "Hantar Email"
|
msgstr "Hantar Email"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr "Hantar saya mesej"
|
msgstr "Hantar saya mesej"
|
||||||
|
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr "Tetapkan pengesah dua faktor pada akaun anda"
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr " Berkongsi"
|
msgstr " Berkongsi"
|
||||||
@ -1330,7 +1369,7 @@ msgstr "Tunjukkan Garis Pemisah"
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr "Paparkan Nombor Halaman"
|
msgstr "Paparkan Nombor Halaman"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Panel Sisi"
|
msgstr "Panel Sisi"
|
||||||
|
|
||||||
@ -1408,6 +1447,7 @@ msgid "Start building your resume by giving it a name."
|
|||||||
msgstr "Mula bina resume anda dengan memberinya nama."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr "Statistik"
|
msgstr "Statistik"
|
||||||
@ -1422,17 +1462,17 @@ msgstr "Simpan kod sandaran anda dengan selamat"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr "Ringkasan"
|
msgstr "Ringkasan"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr "Menyokong aplikasi dengan menderma sebanyak yang anda mampu!"
|
msgstr "Menyokong aplikasi dengan menderma sebanyak yang anda mampu!"
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr "Sokongan Resume Reaktif"
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr "Mendukung format halaman A4/Surat"
|
msgstr "Mendukung format halaman A4/Surat"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr "Sistem"
|
msgstr "Sistem"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "Templat"
|
msgstr "Templat"
|
||||||
@ -1465,15 +1514,20 @@ msgstr "Testimoni"
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr "Warna Teks"
|
msgstr "Warna Teks"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
msgstr "Kata laluan yang anda masukkan tidak sepadan"
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: 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."
|
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."
|
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/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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,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:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr "Pengesahan Dua Faktor"
|
msgstr "Pengesahan Dua Faktor"
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr "Jenis Kajian"
|
msgstr "Jenis Kajian"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr "Tipografi"
|
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"
|
msgid "Underline Links"
|
||||||
msgstr "Garis Bawah Pautan"
|
msgstr "Garis Bawah Pautan"
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr "URL"
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr "URL mesti bermula dengan https://"
|
msgstr "URL mesti bermula dengan https://"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,7 +1714,7 @@ msgstr "Versi 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Pandangan"
|
msgstr "Pandangan"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Kelihatan"
|
msgstr "Kelihatan"
|
||||||
|
|
||||||
@ -1665,11 +1728,11 @@ msgstr "Kami mengesahkan alamat emel anda hanya untuk memastikan bahawa kami bol
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr "Laman web"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Apakah yang baru dalam versi terkini"
|
msgstr "Apakah yang baru dalam versi terkini"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr ""
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Anda boleh menambah beberapa kata kunci dengan memisahkan mereka dengan koma atau menekan enter."
|
msgstr "Anda boleh menambah beberapa kata kunci dengan memisahkan mereka dengan koma atau menekan enter."
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr "Anda boleh menambah beberapa kata kunci dengan memisahkan mereka dengan
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Anda juga boleh memasukkan nama pengguna anda."
|
msgstr "Anda juga boleh memasukkan nama pengguna anda."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
msgstr "Anda boleh menggunakan API OpenAI untuk membantu anda menghasilkan kandungan, atau meningkatkan penulisan anda semasa menyusun resume anda."
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Anda boleh mengesan jumlah paparan resume anda telah diterima, atau berapa ramai orang yang telah memuat turun resume dengan membolehkan perkongsian awam."
|
msgstr "Anda boleh mengesan jumlah paparan resume anda telah diterima, atau berapa ramai orang yang telah memuat turun resume dengan membolehkan perkongsian awam."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "Anda mempunyai pilihan untuk <0>mendapatkan kunci API OpenAI anda sendiri</0>. Kunci ini membolehkan anda menggunakan API sebagaimana yang anda lihat sesuai. Atau, jika anda ingin menyahdayakan ciri-ciri KI dalam Resume Reaktif sepenuhnya, anda boleh membuang kunci itu dari tetapan anda."
|
msgstr "Anda mempunyai pilihan untuk <0>mendapatkan kunci API OpenAI anda sendiri</0>. Kunci ini membolehkan anda menggunakan API sebagaimana yang anda lihat sesuai. Atau, jika anda ingin menyahdayakan ciri-ciri KI dalam Resume Reaktif sepenuhnya, anda boleh membuang kunci itu dari tetapan anda."
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr "Anda telah menerima emel!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Akaun dan semua data anda telah berjaya dipadam. Selamat tinggal!"
|
msgstr "Akaun dan semua data anda telah berjaya dipadam. Selamat tinggal!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "Kunci API anda disimpan dengan selamat dalam storan tempatan pelayar dan hanya digunakan apabila membuat permintaan kepada OpenAI melalui SDK rasmi mereka. Kita yakin bahawa kunci anda tidak dihantar ke mana-mana pelayan luar kecuali semasa berinteraksi dengan perkhidmatan OpenAI."
|
msgstr "Kunci API anda disimpan dengan selamat dalam storan tempatan pelayar dan hanya digunakan apabila membuat permintaan kepada OpenAI melalui SDK rasmi mereka. Kita yakin bahawa kunci anda tidak dihantar ke mana-mana pelayan luar kecuali semasa berinteraksi dengan perkhidmatan OpenAI."
|
||||||
|
|
||||||
@ -1733,7 +1808,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."
|
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."
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr "Kata laluan anda telah berjaya dikemas kini."
|
msgstr "Kata laluan anda telah berjaya dikemas kini."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: ne\n"
|
"Language: ne\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:32\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Nepali\n"
|
"Language-Team: Nepali\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -30,27 +30,27 @@ msgstr ""
|
|||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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 ""
|
||||||
|
|
||||||
#: 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."
|
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||||
msgstr ""
|
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."
|
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -102,8 +102,8 @@ msgstr ""
|
|||||||
msgid "Add a custom field"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -117,7 +117,7 @@ msgstr ""
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr ""
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -152,11 +160,11 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr ""
|
msgstr "के तपाईं यो वस्तु मेटाउन निश्चित हुनुहुन्छ?"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:149
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:149
|
||||||
msgid "Are you sure you want to delete your resume?"
|
msgid "Are you sure you want to delete your resume?"
|
||||||
msgstr ""
|
msgstr "के तपाईं यो बायोडाटा मेटाउन निश्चित हुनुहुन्छ?"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:125
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:125
|
||||||
msgid "Are you sure you want to disable two-factor authentication?"
|
msgid "Are you sure you want to disable two-factor authentication?"
|
||||||
@ -172,7 +180,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94
|
#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94
|
||||||
msgid "Are you sure?"
|
msgid "Are you sure?"
|
||||||
msgstr ""
|
msgstr "तपाईं पक्का हुनुहुन्छ?"
|
||||||
|
|
||||||
#. For example, Computer Science or Business Administration
|
#. For example, Computer Science or Business Administration
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73
|
||||||
@ -191,11 +199,23 @@ msgstr ""
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
msgid "Back"
|
msgid "Back"
|
||||||
msgstr ""
|
msgstr "पछाडि"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73
|
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73
|
||||||
msgid "Background Color"
|
msgid "Background Color"
|
||||||
@ -209,7 +229,7 @@ msgstr ""
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -246,8 +266,8 @@ msgstr ""
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr ""
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr ""
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr ""
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -351,7 +371,12 @@ msgstr ""
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr ""
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -386,10 +411,10 @@ msgstr ""
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -407,11 +432,15 @@ msgstr ""
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr ""
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||||
msgid "Disable 2FA"
|
msgid "Disable 2FA"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr ""
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr ""
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr ""
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr ""
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr ""
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||||
msgid "Enable 2FA"
|
msgid "Enable 2FA"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr ""
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -544,6 +576,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -564,19 +597,19 @@ msgstr ""
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr ""
|
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"
|
msgid "Font Family"
|
||||||
msgstr ""
|
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"
|
msgid "Font Size"
|
||||||
msgstr ""
|
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"
|
msgid "Font Subset"
|
||||||
msgstr ""
|
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"
|
msgid "Font Variants"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr ""
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr ""
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr ""
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr ""
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -651,7 +688,7 @@ msgstr ""
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -677,7 +714,7 @@ msgstr ""
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr ""
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -734,7 +771,7 @@ msgstr ""
|
|||||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||||
msgstr ""
|
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."
|
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ msgid "In this section, you can delete your account and all the data associated
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr ""
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr ""
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr ""
|
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"
|
msgid "Line Height"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr ""
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr ""
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -923,7 +962,7 @@ msgstr ""
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr ""
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||||
msgid "New Password"
|
msgid "New Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1009,16 +1049,16 @@ msgstr ""
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
|
||||||
msgid "OpenAI/Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: 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"
|
msgid "Options"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr ""
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr ""
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr ""
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr ""
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr ""
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1262,15 +1300,15 @@ msgstr ""
|
|||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr ""
|
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"
|
msgid "Search for a font family"
|
||||||
msgstr ""
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr ""
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr ""
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr ""
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1330,7 +1369,7 @@ msgstr ""
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1408,6 +1447,7 @@ msgid "Start building your resume by giving it a name."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1422,17 +1462,17 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr ""
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1465,8 +1514,12 @@ msgstr ""
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: apps/client/src/services/errors/translate-error.ts:49
|
||||||
@ -1474,6 +1527,7 @@ msgid "The resume you want to update is locked, please unlock if you wish to mak
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
#: 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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr ""
|
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"
|
msgid "Underline Links"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr ""
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,7 +1714,7 @@ msgstr ""
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1665,11 +1728,11 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr ""
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr ""
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr ""
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr ""
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1733,7 +1808,7 @@ msgstr ""
|
|||||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||||
msgstr ""
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: nl\n"
|
"Language: nl\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:40\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Dutch\n"
|
"Language-Team: Dutch\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -20,7 +20,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:171
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:171
|
||||||
msgid "You have enabled two-factor authentication successfully."
|
msgid "You have enabled two-factor authentication successfully."
|
||||||
msgstr "U hebt tweefactorauthenticatie succesvol ingeschakeld."
|
msgstr "Je hebt tweefactorauthenticatie succesvol ingeschakeld."
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:57
|
#: apps/client/src/pages/home/sections/features/index.tsx:57
|
||||||
msgid "{templatesCount} resume templates to choose from"
|
msgid "{templatesCount} resume templates to choose from"
|
||||||
@ -30,27 +30,27 @@ msgstr "{templatesCount} CV-sjablonen om uit te kiezen"
|
|||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr "{value, plural, one {Kolom} other {Kolommen}}"
|
msgstr "{value, plural, one {Kolom} other {Kolommen}}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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>Ik heb Reactive Resume grotendeels zelf gebouwd in mijn vrije tijd, met veel hulp van andere geweldige open-source medewerkers.</0><1>Als u de app leuk vindt en wilt helpen om hem voor altijd gratis te houden, doneer dan iets wat u zich kunt veroorloven.</1>"
|
msgstr "<0>Ik heb Reactive Resume grotendeels zelf gebouwd in mijn vrije tijd, met veel hulp van andere geweldige open-source medewerkers.</0><1>Als je de app leuk vindt en wilt helpen om hem voor altijd gratis te houden, doneer dan iets wat jij je kunt veroorloven.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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>Ik weet zeker dat de app niet perfect is, maar dat zou ik wel graag willen.</0><1>Als u problemen ondervond bij het maken van uw cv, of een idee hebt dat u en andere gebruikers zou helpen bij het gemakkelijker maken van uw cv, stuur dan een bericht naar de repository of stuur mij een e-mail hierover.</1>"
|
msgstr "<0>Ik weet zeker dat de app niet perfect is, maar dat zou ik wel graag willen.</0><1>Als je problemen ondervond bij het maken van jouw CV, of een idee hebt dat jij en andere gebruikers zou helpen bij het gemakkelijker maken van je CV, open dan een issue in de repository of stuur mij een e-mail hierover.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 "<0>Opmerking: </0>Door gebruik te maken van de OpenAI API, erkent en aanvaardt u de <1>gebruiksvoorwaarden</1> en <2>het privacybeleid</2> van OpenAI. Houd er rekening mee dat Reactive Resume geen verantwoordelijkheid draagt voor onjuist of ongeautoriseerd gebruik van de service, en dat alle daaruit voortvloeiende gevolgen of aansprakelijkheden uitsluitend op de gebruiker rusten."
|
msgstr "<0>Opmerking: </0>Door gebruik te maken van de OpenAI API, erkent en aanvaardt u de <1>gebruiksvoorwaarden</1> en <2>het privacybeleid</2> van OpenAI. Houd er rekening mee dat Reactive Resume geen verantwoordelijkheid draagt voor onjuist of ongeautoriseerd gebruik van de service, en dat alle daaruit voortvloeiende gevolgen of aansprakelijkheden uitsluitend op de gebruiker rusten."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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>"
|
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."
|
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."
|
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."
|
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."
|
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"
|
msgid "Add a custom field"
|
||||||
msgstr "Aangepast veld toevoegen"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Een nieuw item toevoegen"
|
msgstr "Een nieuw item toevoegen"
|
||||||
@ -117,7 +117,7 @@ msgstr "Een nieuw item toevoegen"
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr "Een nieuwe sectie toevoegen"
|
msgstr "Een nieuwe sectie toevoegen"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr "Eigen Pagina toevoegen"
|
msgstr "Eigen Pagina toevoegen"
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr "Heeft u al een account?"
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr "Er is een fout opgetreden tijdens het valideren van het bestand."
|
msgstr "Er is een fout opgetreden tijdens het valideren van het bestand."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr "Er is een interne serverfout opgetreden."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr "Er is een onverwachte fout opgetreden."
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr "en nog veel meer..."
|
msgstr "en nog veel meer..."
|
||||||
@ -191,6 +199,18 @@ msgstr "Beschikbaar in {languagesCount} talen"
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr "Prijsuitreiker"
|
msgstr "Prijsuitreiker"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr "Azure API versie"
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr "Azure OpenAI Basis URL, deployment naam (model) en API versie zijn vereist bij het gebruik van Azure OpenAI."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr "Azure OpenAI Resource URL"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,7 +229,7 @@ msgstr "Back-up code"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Back-upcodes mogen alleen kleine letters of cijfers bevatten en moeten exact 10 tekens lang zijn."
|
msgstr "Back-upcodes mogen alleen kleine letters of cijfers bevatten en moeten exact 10 tekens lang zijn."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "Basis URL"
|
msgstr "Basis URL"
|
||||||
|
|
||||||
@ -246,8 +266,8 @@ msgstr "Door de gemeenschap, voor de gemeenschap."
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Annuleren"
|
msgstr "Annuleren"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr "Gewoontjes"
|
msgstr "Gewoontjes"
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr "Gewoontjes"
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr "Artboard centreren"
|
msgstr "Artboard centreren"
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr "Taal wijzigen"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr "Wachtwoord Wijzigen"
|
msgstr "Wachtwoord Wijzigen"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr "Wijzig Toon"
|
msgstr "Wijzig Toon"
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr "Kolommen"
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr "Bedrijf"
|
msgstr "Bedrijf"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr "Zelfzeker"
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Hervatten"
|
msgstr "Hervatten"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Kopiëren"
|
msgstr "Kopiëren"
|
||||||
|
|
||||||
@ -351,7 +371,12 @@ msgstr "Maak er nu één aan"
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr "Maak een Voorbeeld CV aan"
|
msgstr "Maak een Voorbeeld CV aan"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||||
|
msgid "Current Password"
|
||||||
|
msgstr "Huidige wachtwoord"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr "Aangepaste CSS"
|
msgstr "Aangepaste CSS"
|
||||||
@ -386,10 +411,10 @@ msgstr "Donker"
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Datum"
|
msgstr "Datum"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Datum of Datumbereik"
|
msgstr "Datum of Datumbereik"
|
||||||
@ -407,11 +432,15 @@ msgstr "Verwijderen"
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr "Account Verwijderen"
|
msgstr "Account Verwijderen"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr "Deployment Naam"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Beschrijving"
|
msgstr "Beschrijving"
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr "Ontwerp CV's met één of meerdere pagina's"
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr "Deactiveer"
|
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"
|
msgid "Disable 2FA"
|
||||||
msgstr "Deactiveer 2FA"
|
msgstr "Deactiveer 2FA"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr "Verwijder"
|
msgstr "Verwijder"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Documentatie"
|
msgstr "Documentatie"
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr "Documentatie"
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr "Nog geen account?"
|
msgstr "Nog geen account?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr "Weet je niet waar je moet beginnen? Lees de documentatie!"
|
msgstr "Weet je niet waar je moet beginnen? Lees de documentatie!"
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr "Weet je niet waar je moet beginnen? Lees de documentatie!"
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr "Zie je je taal niet? <0>Help de app te vertalen.</0>"
|
msgstr "Zie je je taal niet? <0>Help de app te vertalen.</0>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr "Doneer aan Reactive Resume"
|
msgstr "Doneer aan Reactive Resume"
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr "Doneer aan Reactive Resume"
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr "Download een JSON-versie van uw cv. Met dit bestand kan u in de toekomst uw cv terug importeren of delen met anderen om te bewerken."
|
msgstr "Download een JSON-versie van uw cv. Met dit bestand kan u in de toekomst uw cv terug importeren of delen met anderen om te bewerken."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
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."
|
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/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr "Download PDF"
|
msgstr "Download PDF"
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr "Een bestaand item dupliceren"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Een bestaand cv dupliceren"
|
msgstr "Een bestaand cv dupliceren"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Wijzigen"
|
msgstr "Wijzigen"
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr "Effecten"
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr "E-mail"
|
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"
|
msgid "Enable 2FA"
|
||||||
msgstr "2FA Inschakelen"
|
msgstr "2FA Inschakelen"
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr "Voer hieronder het eenmalige wachtwoord in dat u van uw authenticator-ap
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr "Voer uw e-mailadres in en wij sturen u een link om uw wachtwoord opnieuw in te stellen als het account bestaat."
|
msgstr "Voer uw e-mailadres in en wij sturen u een link om uw wachtwoord opnieuw in te stellen als het account bestaat."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr "Error {statusCode}"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr "Fouten"
|
msgstr "Fouten"
|
||||||
@ -544,6 +576,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."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr "Exporteren"
|
msgstr "Exporteren"
|
||||||
@ -558,25 +591,25 @@ msgstr "Bestandstype"
|
|||||||
|
|
||||||
#: apps/client/src/pages/home/sections/hero/index.tsx:38
|
#: apps/client/src/pages/home/sections/hero/index.tsx:38
|
||||||
msgid "Finally,"
|
msgid "Finally,"
|
||||||
msgstr "Tenslotte,"
|
msgstr "Eindelijk,"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:90
|
#: apps/client/src/components/ai-actions.tsx:90
|
||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr "Spelling en Grammatica Verbeteren"
|
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"
|
msgid "Font Family"
|
||||||
msgstr "Lettertype Familie"
|
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"
|
msgid "Font Size"
|
||||||
msgstr "Tekengrootte"
|
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"
|
msgid "Font Subset"
|
||||||
msgstr "Lettertype 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"
|
msgid "Font Variants"
|
||||||
msgstr "Lettertypevarianten"
|
msgstr "Lettertypevarianten"
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr "Lettertypevarianten"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "Hier kunt u bijvoorbeeld informatie noteren over naar welke bedrijven u deze CV hebt gestuurd, of de links naar de functiebeschrijvingen."
|
msgstr "Hier kunt u bijvoorbeeld informatie noteren over naar welke bedrijven u deze CV hebt gestuurd, of de links naar de functiebeschrijvingen."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Vergeten"
|
msgstr "Vergeten"
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr "Bent u uw wachtwoord vergeten?"
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr "Formaat"
|
msgstr "Formaat"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr "Heb je een bug gevonden of heb je een idee voor een nieuwe functie?"
|
msgstr "Heb je een bug gevonden of heb je een idee voor een nieuwe functie?"
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr "Heb je een bug gevonden of heb je een idee voor een nieuwe functie?"
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr "Gratis, voor altijd"
|
msgstr "Gratis, voor altijd"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr "Gebruiksvriendelijk"
|
msgstr "Gebruiksvriendelijk"
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr "Geef uw oude CV een nieuwe naam."
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr "Ga naar het Dashboard"
|
msgstr "Ga naar het Dashboard"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr "Ga naar de homepagina"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr "Google"
|
msgstr "Google"
|
||||||
@ -651,7 +688,7 @@ msgstr "Google"
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr "Grijswaarden"
|
msgstr "Grijswaarden"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr "Raster"
|
msgstr "Raster"
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr "Hier kunt u uw profiel bijwerken om uw ervaring aan te passen en te personaliseren."
|
msgstr "Hier kunt u uw profiel bijwerken om uw ervaring aan te passen en te personaliseren."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Verborgen"
|
msgstr "Verborgen"
|
||||||
@ -677,7 +714,7 @@ msgstr "Verborgen"
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr "Verbergen"
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr "Pictogrammen Verbergen"
|
msgstr "Pictogrammen Verbergen"
|
||||||
|
|
||||||
@ -734,7 +771,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."
|
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."
|
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."
|
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."
|
msgstr "In dit gedeelte kunt u uw wachtwoord wijzigen en verificatie met twee factoren in-/uitschakelen."
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ 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."
|
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/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Informatie"
|
msgstr "Informatie"
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr "jan.janssen@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Sleutelwoorden"
|
msgstr "Sleutelwoorden"
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr "Laatst bijgewerkt {lastUpdated}"
|
msgstr "Laatst bijgewerkt {lastUpdated}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Layout"
|
msgstr "Layout"
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr "Brief"
|
msgstr "Brief"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr "Niveau"
|
msgstr "Niveau"
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr "Licht"
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr "Licht of donker thema"
|
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"
|
msgid "Line Height"
|
||||||
msgstr "Regelafstand"
|
msgstr "Regelafstand"
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr "Regelafstand"
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr "LinkedIn, JSON CV, enz."
|
msgstr "LinkedIn, JSON CV, enz."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr "Lijst"
|
msgstr "Lijst"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr "Uitloggen"
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr "Bent u uw apparaat kwijt?"
|
msgstr "Bent u uw apparaat kwijt?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr "Algemeen"
|
msgstr "Algemeen"
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr "maart 2023"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr "maart 2023 - Heden"
|
msgstr "maart 2023 - Heden"
|
||||||
@ -923,7 +962,7 @@ msgstr "maart 2023 - Heden"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Marge"
|
msgstr "Marge"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "Maximum aantal tokens"
|
msgstr "Maximum aantal tokens"
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr "Maximum aantal tokens"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "MIT Licentie"
|
msgstr "MIT Licentie"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "Model"
|
msgstr "Model"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr "Naam"
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Netwerk"
|
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"
|
msgid "New Password"
|
||||||
msgstr "Nieuw Wachtwoord"
|
msgstr "Nieuw Wachtwoord"
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr "Let op: Dit maakt uw account minder veilig."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Aantekeningen"
|
msgstr "Aantekeningen"
|
||||||
@ -1009,16 +1049,16 @@ msgstr "OpenAI gaf geen keuzen voor uw text."
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "OpenAI-Integratie"
|
msgstr "OpenAI-Integratie"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
msgstr "OpenAI/Azure OpenAI/Ollama integratie"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr "OpenAI/Ollama API sleutel"
|
msgstr "OpenAI/Ollama API sleutel"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
|
||||||
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/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"
|
msgid "Options"
|
||||||
msgstr "Opties"
|
msgstr "Opties"
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr "Organisatie"
|
msgstr "Organisatie"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "Pagina"
|
msgstr "Pagina"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr "Pagina {pageNumber}"
|
msgstr "Pagina {pageNumber}"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr "Wachtwoord"
|
msgstr "Wachtwoord"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr "PDF"
|
msgstr "PDF"
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr "Mogelijk gemaakt door <0>Simple Icons</0>"
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr "Primaire kleur"
|
msgstr "Primaire kleur"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr "Privacy Beleid"
|
msgstr "Privacy Beleid"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr "Professioneel"
|
msgstr "Professioneel"
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr "Openbaar"
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "Uitgever"
|
msgstr "Uitgever"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr "Probleem aankaarten"
|
msgstr "Probleem aankaarten"
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr "Probleem aankaarten"
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1161,11 +1199,11 @@ msgstr "Reactive Resume heeft mensen aan een baan geholpen bij deze geweldige be
|
|||||||
|
|
||||||
#: apps/client/src/pages/home/sections/support/index.tsx:12
|
#: apps/client/src/pages/home/sections/support/index.tsx:12
|
||||||
msgid "Reactive Resume is a free and open-source project crafted mostly by me, and your support would be greatly appreciated. If you're inclined to contribute, and only if you can afford to, consider making a donation through any of the listed platforms. Additionally, donations to Reactive Resume through Open Collective are tax-exempt, as the project is fiscally hosted by Open Collective Europe."
|
msgid "Reactive Resume is a free and open-source project crafted mostly by me, and your support would be greatly appreciated. If you're inclined to contribute, and only if you can afford to, consider making a donation through any of the listed platforms. Additionally, donations to Reactive Resume through Open Collective are tax-exempt, as the project is fiscally hosted by Open Collective Europe."
|
||||||
msgstr "Reactive Resume is een gratis en open-source project dat grotendeels door mij is gemaakt, en uw steun zou zeer op prijs worden gesteld. Als u wilt bijdragen, en alleen als u het zich kunt veroorloven, overweeg dan een donatie te doen via één van de genoemde platforms. Bovendien zijn donaties aan Reactive Resume via Open Collective belastingvrij, omdat het project fiscaal gehost wordt door Open Collective Europe."
|
msgstr "Reactive Resume is een gratis en open-source project dat grotendeels door mij is gemaakt, en jouw steun zou zeer op prijs worden gesteld. Als je wilt bijdragen, en alleen als je het je kunt veroorloven, overweeg dan een donatie te doen via één van de genoemde platforms. Bovendien zijn donaties aan Reactive Resume via Open Collective belastingvrij, omdat het project fiscaal gehost wordt door Open Collective Europe."
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:107
|
#: apps/client/src/pages/home/sections/features/index.tsx:107
|
||||||
msgid "Reactive Resume is a passion project of over 3 years of hard work, and with that comes a number of re-iterated ideas and features that have been built to (near) perfection."
|
msgid "Reactive Resume is a passion project of over 3 years of hard work, and with that comes a number of re-iterated ideas and features that have been built to (near) perfection."
|
||||||
msgstr "Reactief Resume is een passieproject van meer dan 3 jaar hard werk, en daar komen een aantal ideeën en functies bij kijken die - na vele iteraties - (bijna) tot perfectie zijn uitgebouwd."
|
msgstr "Reactive Resume is een passieproject van meer dan 3 jaar hard werk, en daar komen een aantal ideeën en functies bij kijken die - na vele iteraties - (bijna) tot perfectie zijn uitgebouwd."
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/contributors/index.tsx:22
|
#: apps/client/src/pages/home/sections/contributors/index.tsx:22
|
||||||
msgid "Reactive Resume thrives thanks to its vibrant community. This project owes its progress to numerous individuals who've dedicated their time and skills. Below, we celebrate the coders who've enhanced its features on GitHub and the linguists whose translations on Crowdin have made it accessible to a broader audience."
|
msgid "Reactive Resume thrives thanks to its vibrant community. This project owes its progress to numerous individuals who've dedicated their time and skills. Below, we celebrate the coders who've enhanced its features on GitHub and the linguists whose translations on Crowdin have made it accessible to a broader audience."
|
||||||
@ -1175,12 +1213,12 @@ msgstr "Reactive Resume is succesvol dankzij de levendige gemeenschap. Dit proje
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Opnieuw"
|
msgstr "Opnieuw"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Verwijderen"
|
msgstr "Verwijderen"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr "Pagina verwijderen"
|
msgstr "Pagina verwijderen"
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr "Bevestigingslink opnieuw verzenden"
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr "Resetten"
|
msgstr "Resetten"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr "Lay-out Resetten"
|
msgstr "Lay-out Resetten"
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr "Zoom Herstellen"
|
msgstr "Zoom Herstellen"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr "CV's"
|
msgstr "CV's"
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr "Afgeronde hoeken"
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Wijzigingen Opslaan"
|
msgstr "Wijzigingen Opslaan"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "Lokaal opslaan"
|
msgstr "Lokaal opslaan"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Opgeslagen"
|
msgstr "Opgeslagen"
|
||||||
|
|
||||||
@ -1262,15 +1300,15 @@ msgstr "Scroll naar Pan"
|
|||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr "Scroll naar 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"
|
msgid "Search for a font family"
|
||||||
msgstr "Een lettertypefamilie zoeken"
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr "Zoek naar een lettertype 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"
|
msgid "Search for a font variant"
|
||||||
msgstr "Zoeken naar een lettertype-variant"
|
msgstr "Zoeken naar een lettertype-variant"
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr "Een taal zoeken"
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr "Beveiligen met tweestapsverificatie"
|
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"
|
msgid "Security"
|
||||||
msgstr "Beveiliging"
|
msgstr "Beveiliging"
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr "Zelf hosten met Docker"
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr "E-mail Verzenden"
|
msgstr "E-mail Verzenden"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr "Stuur mij een bericht"
|
msgstr "Stuur mij een bericht"
|
||||||
|
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr "Stel tweestapsverificatie in voor uw 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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr "Delen"
|
msgstr "Delen"
|
||||||
@ -1330,7 +1369,7 @@ msgstr "Toon breuklijn"
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr "Paginanummers Weergeven"
|
msgstr "Paginanummers Weergeven"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Zijbalk"
|
msgstr "Zijbalk"
|
||||||
|
|
||||||
@ -1408,6 +1447,7 @@ msgid "Start building your resume by giving it a name."
|
|||||||
msgstr "Begin het opstellen van uw CV door het een naam te geven."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr "Statistieken"
|
msgstr "Statistieken"
|
||||||
@ -1422,17 +1462,17 @@ msgstr "Bewaar uw back-upcodes veilig"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr "Overzicht"
|
msgstr "Overzicht"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr "Steun de app door te doneren naar uw vermogen!"
|
msgstr "Steun de app door te doneren naar uw vermogen!"
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr "Reactive Resume steunen"
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr "Ondersteunt A4/Brief pagina-indelingen"
|
msgstr "Ondersteunt A4/Brief pagina-indelingen"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr "Overschakelen naar donkere modus"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr "Schakel over naar lichte modus"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr "Systeem"
|
msgstr "Systeem"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "Sjabloon"
|
msgstr "Sjabloon"
|
||||||
@ -1465,15 +1514,20 @@ msgstr "Getuigenissen"
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr "Tekstkleur"
|
msgstr "Tekstkleur"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
msgstr "De ingevoerde wachtwoorden komen niet overeen."
|
msgstr "De pagina waar je naar op zoek bent, bestaat niet."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
|
msgstr "Het verzoek was ongeldig."
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: 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."
|
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."
|
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/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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,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:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr "Tweestapsverificatie"
|
msgstr "Tweestapsverificatie"
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr "Soort studie"
|
msgstr "Soort studie"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr "Typografie"
|
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"
|
msgid "Underline Links"
|
||||||
msgstr "Links Onderstrepen"
|
msgstr "Links Onderstrepen"
|
||||||
|
|
||||||
@ -1589,7 +1644,7 @@ msgstr "Een bestaande CV bijwerken"
|
|||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:212
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:212
|
||||||
msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing."
|
msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing."
|
||||||
msgstr "Upload een bestand van één van de geaccepteerde bronnen om bestaande gegevens te verwerken en te importeren in Reactieve Resume zodat u deze makkelijker kunt bewerken."
|
msgstr "Upload een bestand van één van de geaccepteerde bronnen om bestaande gegevens te verwerken en te importeren in Reactive Resume zodat je deze makkelijker kunt bewerken."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73
|
||||||
msgid "URL"
|
msgid "URL"
|
||||||
@ -1599,6 +1654,14 @@ msgstr "URL"
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr "URL moet beginnen met https://"
|
msgstr "URL moet beginnen met https://"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr "Gebruik Azure OpenAI"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr "Systeemthema gebruiken"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,7 +1714,7 @@ msgstr "Versie 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Weergaven"
|
msgstr "Weergaven"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Zichtbaar"
|
msgstr "Zichtbaar"
|
||||||
|
|
||||||
@ -1665,11 +1728,11 @@ msgstr "Wij verifiëren uw e-mailadres enkel om ervoor te zorgen dat wij u een l
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr "Website"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Wat is er nieuw in de laatste versie"
|
msgstr "Wat is er nieuw in de laatste versie"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr "U heeft geen toegang tot deze pagina."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "U kunt meerdere trefwoorden toevoegen door ze te scheiden met een komma of door op enter te drukken."
|
msgstr "U kunt meerdere trefwoorden toevoegen door ze te scheiden met een komma of door op enter te drukken."
|
||||||
|
|
||||||
@ -1692,25 +1759,33 @@ msgstr "U kunt meerdere trefwoorden toevoegen door ze te scheiden met een komma
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "U kunt ook uw gebruikersnaam invoeren."
|
msgstr "U kunt ook uw gebruikersnaam invoeren."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr "U kunt ook integreren met Ollama door de API-sleutel in te stellen op `sk-1234567890abcdef` en de Base URL op uw Ollama URL, d.w.z. `http://localhost:11434/v1`. U kunt ook modellen kiezen en de maximale tokens naar wens instellen."
|
msgstr "U kunt ook integreren met Azure OpenAI door het keuzevakje <0>Gebruik Azure OpenAI</0> en het instellen van de Resource URL naar uw Azure OpenAI bron: <1>https://your-resource. penai.azure.com</1>. Stel de implementatienaam in het Model veld in en specificeer de juiste API-versie voor uw Azure implementatie."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
msgstr "U kunt gebruik maken van de OpenAI API om tekst te genereren, of om uw schrijfvaardigheid te verbeteren bij het opstellen van uw CV."
|
msgstr "Je kunt ook integreren met Ollama door simpelweg de API-sleutel in te stellen op <0>sk-1234567890abcdef</0> en de basis-URL op je Ollama-URL, i. .<1>http://localhost:11434/v1</1>. U kunt ook modellen kiezen en modellen kiezen en de max tokens instellen zoals u wilt."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
|
msgstr "U kunt gebruik maken van de OpenAI API, Azure OpenAI, of Ollama om u te helpen content te genereren, of uw schrijven te verbeteren tijdens het samenstellen van uw reis."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Door openbaar delen in te schakelen, kunt u bijhouden hoeveel keer uw cv is bekeken en hoeveel mensen uw cv gedownload hebben."
|
msgstr "Door openbaar delen in te schakelen, kunt u bijhouden hoeveel keer uw cv is bekeken en hoeveel mensen uw cv gedownload hebben."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr "Je hebt geen rechten deze pagina te bezoeken."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "U heeft de mogelijkheid om <0>uw eigen OpenAI API-sleutel te verkrijgen</0>. Met deze sleutel kunt u de API naar eigen inzicht gebruiken. Als u de AI-functies in Reactive Resume helemaal wilt uitschakelen, kunt u de sleutel ook gewoon uit uw instellingen verwijderen."
|
msgstr "Je hebt de mogelijkheid om <0>jouw eigen OpenAI API-sleutel te verkrijgen</0>. Met deze sleutel kan je de API naar eigen inzicht gebruiken. Als je de AI-functies in Reactive Resume helemaal wilt uitschakelen, kan je de sleutel ook gewoon uit jouw instellingen verwijderen."
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:50
|
#: apps/client/src/pages/auth/verify-email/page.tsx:50
|
||||||
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
|
msgid "You should have received an email from <0>Reactive Resume</0> with a link to verify your account."
|
||||||
msgstr "U zou een e-mail van <0>Reactive Resume</0> moeten hebben ontvangen met een koppeling om uw account te verifiëren."
|
msgstr "Je zou een e-mail van <0>Reactive Resume</0> moeten hebben ontvangen met een koppeling om jouw account te verifiëren."
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:49
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:49
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
|
||||||
@ -1721,7 +1796,7 @@ msgstr "Je hebt een mail ontvangen!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Uw account en al uw gegevens zijn succesvol verwijderd. Tot ziens!"
|
msgstr "Uw account en al uw gegevens zijn succesvol verwijderd. Tot ziens!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "Uw API-sleutel wordt veilig opgeslagen in de lokale opslag van de browser en wordt alleen gebruikt bij het doen van verzoeken aan OpenAI via hun officiële SDK. U kunt erop vertrouwen dat uw sleutel niet naar een externe server wordt verzonden, behalve tijdens interactie met diensten van OpenAI."
|
msgstr "Uw API-sleutel wordt veilig opgeslagen in de lokale opslag van de browser en wordt alleen gebruikt bij het doen van verzoeken aan OpenAI via hun officiële SDK. U kunt erop vertrouwen dat uw sleutel niet naar een externe server wordt verzonden, behalve tijdens interactie met diensten van OpenAI."
|
||||||
|
|
||||||
@ -1733,7 +1808,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."
|
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."
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr "Je wachtwoord is bijgewerkt."
|
msgstr "Je wachtwoord is bijgewerkt."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: no\n"
|
"Language: no\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:40\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Norwegian\n"
|
"Language-Team: Norwegian\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -20,7 +20,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:171
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:171
|
||||||
msgid "You have enabled two-factor authentication successfully."
|
msgid "You have enabled two-factor authentication successfully."
|
||||||
msgstr "Du har aktivert tofaktorautentisering."
|
msgstr "Du har aktivert to-faktor autentisering."
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:57
|
#: apps/client/src/pages/home/sections/features/index.tsx:57
|
||||||
msgid "{templatesCount} resume templates to choose from"
|
msgid "{templatesCount} resume templates to choose from"
|
||||||
@ -30,27 +30,27 @@ msgstr "{templatesCount} CV-maler å velge mellom"
|
|||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr "{value, plural, one {Kolonne} other {Kolonner}}"
|
msgstr "{value, plural, one {Kolonne} other {Kolonner}}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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>Jeg bygde Reactive Resume for det meste alene på fritiden, med mye hjelp fra andre gode bidragsytere med åpen kildekode.</0> <1>Hvis du liker appen og ønsker å støtte å holde den gratis for alltid, vennligst doner det du har råd til å gi.</1>"
|
msgstr "<0>Jeg bygde Reactive Resume for det meste alene på fritiden, med mye hjelp fra andre gode bidragsytere med åpen kildekode.</0> <1>Hvis du liker appen og ønsker å støtte å holde den gratis for alltid, vennligst doner det du har råd til å gi.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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>Jeg er sikker på at appen ikke er perfekt, men jeg vil gjerne at den skal være det.</0><1>Hvis du har møtt på noen problemer mens du lagde CV-en din, eller har en idé som ville hjulpet deg selv eller andre brukere med å lage CV-en din mer enkelt, legg inn et problem på GitHub Repository eller send meg en e-post om det.</1>"
|
msgstr "<0>Jeg er sikker på at appen ikke er perfekt, men jeg vil gjerne at den skal være det.</0><1>Hvis du har møtt på noen problemer mens du lagde CV-en din, eller har en idé som ville hjulpet deg selv eller andre brukere med å lage CV-en din mer enkelt, legg inn et problem på GitHub Repository eller send meg en e-post om det.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 "<0>Merk:</0> Ved å bruke OpenAI API, erkjenner og godtar du <1>bruksvilkårene</1> og <2>personvernreglene</2> skissert av OpenAI. Vær oppmerksom på at Reactive Resume ikke har noe ansvar for feil eller uautorisert bruk av tjenesten, og eventuelle følgevirkninger eller ansvar hviler utelukkende på brukeren."
|
msgstr "<0>Merk:</0> Ved å bruke OpenAI API, erkjenner og godtar du <1>bruksvilkårene</1> og <2>personvernreglene</2> skissert av OpenAI. Vær oppmerksom på at Reactive Resume ikke har noe ansvar for feil eller uautorisert bruk av tjenesten, og eventuelle følgevirkninger eller ansvar hviler utelukkende på brukeren."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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>"
|
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."
|
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."
|
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."
|
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å."
|
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"
|
msgid "Add a custom field"
|
||||||
msgstr "Legg til egendefinert felt"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Legg til nytt element"
|
msgstr "Legg til nytt element"
|
||||||
@ -117,7 +117,7 @@ msgstr "Legg til nytt element"
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr "Legg til ny seksjon"
|
msgstr "Legg til ny seksjon"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr "Legg til ny side"
|
msgstr "Legg til ny side"
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr "Har du allerede en konto?"
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr "Det oppstod en feil under validering av filen."
|
msgstr "Det oppstod en feil under validering av filen."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr "Det oppstod en intern server feil."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr "En uventet feil har oppstått."
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr "og mange flere..."
|
msgstr "og mange flere..."
|
||||||
@ -148,7 +156,7 @@ msgstr "Alle som har denne lenken kan se og laste ned CVen. Del den på profilen
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:41
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:41
|
||||||
msgid "Apply Custom CSS"
|
msgid "Apply Custom CSS"
|
||||||
msgstr ""
|
msgstr "Bruk egendefinert CSS"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
@ -191,6 +199,18 @@ msgstr "Tilgjengelig på {languagesCount} språk"
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr "Priser"
|
msgstr "Priser"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr "Azure API versjon"
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr "Azure OpenAI Base URL, Distribusjonsnavn (modell) og API-versjon er påkrevd når du bruker Azure OpenAI."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr "Azure OpenAI Ressurs-URL"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,7 +229,7 @@ msgstr "Sikkerhetskopi-kode"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Sikkerhetskopi-koder kan bare inneholde små bokstaver eller tall, og må være nøyaktig 10 tegn."
|
msgstr "Sikkerhetskopi-koder kan bare inneholde små bokstaver eller tall, og må være nøyaktig 10 tegn."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "Basis-URL"
|
msgstr "Basis-URL"
|
||||||
|
|
||||||
@ -246,8 +266,8 @@ msgstr "Av fellesskapet, for fellesskapet."
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Avbryt"
|
msgstr "Avbryt"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr "Uformell"
|
msgstr "Uformell"
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr "Uformell"
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr "Sentrer Kunstbrett"
|
msgstr "Sentrer Kunstbrett"
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr "Endre språk"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr "Bytt Passord"
|
msgstr "Bytt Passord"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr "Endre Tone"
|
msgstr "Endre Tone"
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr "Kolonner"
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr "Firma"
|
msgstr "Firma"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr "Selvsikker"
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Fortsett"
|
msgstr "Fortsett"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Kopier"
|
msgstr "Kopier"
|
||||||
|
|
||||||
@ -351,10 +371,15 @@ msgstr "Opprett en nå"
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr "Opprett Eksempel-CV"
|
msgstr "Opprett Eksempel-CV"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||||
|
msgid "Current Password"
|
||||||
|
msgstr "Nåværende passord"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr ""
|
msgstr "Tilpasset CSS"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:62
|
#: apps/client/src/pages/home/sections/features/index.tsx:62
|
||||||
msgid "Custom resume sections"
|
msgid "Custom resume sections"
|
||||||
@ -386,10 +411,10 @@ msgstr "Mørk"
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Dato"
|
msgstr "Dato"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Dato eller Datoperiode"
|
msgstr "Dato eller Datoperiode"
|
||||||
@ -407,11 +432,15 @@ msgstr "Slett"
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr "Slett Konto"
|
msgstr "Slett Konto"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr "Distribusjon navn"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Beskrivelse"
|
msgstr "Beskrivelse"
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr "Design enkelt-/flerside-CV"
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr "Deaktiver"
|
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"
|
msgid "Disable 2FA"
|
||||||
msgstr "Deaktiver 2FA"
|
msgstr "Deaktiver 2FA"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr "Forkast"
|
msgstr "Forkast"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Dokumentasjon"
|
msgstr "Dokumentasjon"
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr "Dokumentasjon"
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr "Har du ikke en konto?"
|
msgstr "Har du ikke en konto?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr "Vet du ikke hvor du skal begynne? Trykk på dokumentene!"
|
msgstr "Vet du ikke hvor du skal begynne? Trykk på dokumentene!"
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr "Vet du ikke hvor du skal begynne? Trykk på dokumentene!"
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr "Ser du ikke språket ditt? <0>Hjelp med å oversette appen.</0>"
|
msgstr "Ser du ikke språket ditt? <0>Hjelp med å oversette appen.</0>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr "Doner til Reactive Resume"
|
msgstr "Doner til Reactive Resume"
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr "Doner til Reactive Resume"
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr "Last ned et JSON-øyeblikksbilde av CV-en din. Denne filen kan brukes til å importere CV-en din i fremtiden, eller kan til og med deles med andre for å samarbeide."
|
msgstr "Last ned et JSON-øyeblikksbilde av CV-en din. Denne filen kan brukes til å importere CV-en din i fremtiden, eller kan til og med deles med andre for å samarbeide."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
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."
|
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/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr "Last ned PDF"
|
msgstr "Last ned PDF"
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr "Dupliser et eksisterende element"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Dupliser en eksisterende CV"
|
msgstr "Dupliser en eksisterende CV"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Rediger"
|
msgstr "Rediger"
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr "Effekter"
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr "E-post"
|
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"
|
msgid "Enable 2FA"
|
||||||
msgstr "Aktiver 2FA"
|
msgstr "Aktiver 2FA"
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr "Skriv inn engangspassordet fra autentiseringsappen din nedenfor."
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr "Skriv inn e-postadressen din, så sender vi deg en lenke for å tilbakestille passordet ditt hvis kontoen eksisterer."
|
msgstr "Skriv inn e-postadressen din, så sender vi deg en lenke for å tilbakestille passordet ditt hvis kontoen eksisterer."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr "Feil {statusCode}"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr "Feil"
|
msgstr "Feil"
|
||||||
@ -544,6 +576,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."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr "Eksporter"
|
msgstr "Eksporter"
|
||||||
@ -564,19 +597,19 @@ msgstr "Endelig,"
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr "Fiks Staving og Grammatikk"
|
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"
|
msgid "Font Family"
|
||||||
msgstr "Skrifttype"
|
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"
|
msgid "Font Size"
|
||||||
msgstr "Skriftstørrelse"
|
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"
|
msgid "Font Subset"
|
||||||
msgstr "Skriftdelsett"
|
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"
|
msgid "Font Variants"
|
||||||
msgstr "Skriftvarianter"
|
msgstr "Skriftvarianter"
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr "Skriftvarianter"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "For eksempel kan du notere informasjon om hvilke selskaper du har sendt denne CV-en til eller lenkene til stillingsbeskrivelsene her."
|
msgstr "For eksempel kan du notere informasjon om hvilke selskaper du har sendt denne CV-en til eller lenkene til stillingsbeskrivelsene her."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Glem"
|
msgstr "Glem"
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr "Glemt ditt passord?"
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr "Format"
|
msgstr "Format"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr "Funnet en feil, eller har en idé til en ny funksjon?"
|
msgstr "Funnet en feil, eller har en idé til en ny funksjon?"
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr "Funnet en feil, eller har en idé til en ny funksjon?"
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr "Gratis, for alltid"
|
msgstr "Gratis, for alltid"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr "Vennlig"
|
msgstr "Vennlig"
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr "Gi din gamle CV et nytt navn."
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr "Gå til Kontrollpanelet"
|
msgstr "Gå til Kontrollpanelet"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr "Gå til hjem"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr "Google"
|
msgstr "Google"
|
||||||
@ -651,7 +688,7 @@ msgstr "Google"
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr "Gråtone"
|
msgstr "Gråtone"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr "Rutenett"
|
msgstr "Rutenett"
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr "Her kan du oppdatere profilen din for å tilpasse og personliggjøre opplevelsen din."
|
msgstr "Her kan du oppdatere profilen din for å tilpasse og personliggjøre opplevelsen din."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Skjult"
|
msgstr "Skjult"
|
||||||
@ -677,7 +714,7 @@ msgstr "Skjult"
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr "Skjul"
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr "Skjul Ikoner"
|
msgstr "Skjul Ikoner"
|
||||||
|
|
||||||
@ -734,7 +771,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."
|
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."
|
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."
|
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."
|
msgstr "I denne delen kan du endre passordet ditt og aktivere/deaktivere tofaktorautentisering."
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ 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>."
|
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/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Informasjon"
|
msgstr "Informasjon"
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr "ola.nordmann@eksempel.no"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Nøkkelord"
|
msgstr "Nøkkelord"
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr "Sist oppdatert {lastUpdated}"
|
msgstr "Sist oppdatert {lastUpdated}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Utforming"
|
msgstr "Utforming"
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr "Brev"
|
msgstr "Brev"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr "Nivå"
|
msgstr "Nivå"
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr "Lyst"
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr "Lyst eller mørkt tema"
|
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"
|
msgid "Line Height"
|
||||||
msgstr "Linjehøyde"
|
msgstr "Linjehøyde"
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr "Linjehøyde"
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr "LinkedIn, JSON Resume, osv."
|
msgstr "LinkedIn, JSON Resume, osv."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr "Liste"
|
msgstr "Liste"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr "Logg ut"
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr "Mistet enheten din?"
|
msgstr "Mistet enheten din?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr "Hoved"
|
msgstr "Hoved"
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr "Mars 2023"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr "Mars 2023 - Nåværende"
|
msgstr "Mars 2023 - Nåværende"
|
||||||
@ -923,7 +962,7 @@ msgstr "Mars 2023 - Nåværende"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Margin"
|
msgstr "Margin"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "Maks antall tegn"
|
msgstr "Maks antall tegn"
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr "Maks antall tegn"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "MIT-lisens"
|
msgstr "MIT-lisens"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "Modell"
|
msgstr "Modell"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr "Navn"
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Nettverk"
|
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"
|
msgid "New Password"
|
||||||
msgstr "Nytt Passord"
|
msgstr "Nytt Passord"
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr "Merk: Dette vil gjøre kontoen din mindre sikker."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Notater"
|
msgstr "Notater"
|
||||||
@ -993,7 +1033,7 @@ msgstr "Oops, serveren returnerte en feil."
|
|||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
msgstr "Åpen"
|
msgstr "Åpne"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:47
|
#: apps/client/src/pages/home/sections/features/index.tsx:47
|
||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
@ -1009,16 +1049,16 @@ msgstr "OpenAI returnerte ingen valg for teksten din."
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "OpenAI-integrasjon"
|
msgstr "OpenAI-integrasjon"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
msgstr ""
|
msgstr "OpenAI/Azure OpenAI/Ollama integrasjon"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama Integration"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr ""
|
msgstr "OpenAI/Ollama API-nøkkel"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: 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"
|
msgid "Options"
|
||||||
msgstr "Innstillinger"
|
msgstr "Innstillinger"
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr "Organisasjon"
|
msgstr "Organisasjon"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "Side"
|
msgstr "Side"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr ""
|
msgstr "Side {pageNumber}"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr "Passord"
|
msgstr "Passord"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr "PDF"
|
msgstr "PDF"
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr "Drevet av <0>Simple Icons</0>"
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr "Hovedfarge"
|
msgstr "Hovedfarge"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr "Retningslinjer for personvern"
|
msgstr "Retningslinjer for personvern"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr "Profesjonell"
|
msgstr "Profesjonell"
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr "Offentlig"
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "Utgiver"
|
msgstr "Utgiver"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr "Ta opp et problem"
|
msgstr "Ta opp et problem"
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr "Ta opp et problem"
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr "Reactive Resume trives takket være sitt pulserende fellesskap. Dette pr
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Gjør om"
|
msgstr "Gjør om"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Fjern"
|
msgstr "Fjern"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr "Fjern Side"
|
msgstr "Fjern Side"
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr "Send e-post bekreftelselenken på nytt"
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr "Tilbakestill"
|
msgstr "Tilbakestill"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr "Tilbakestill oppsett"
|
msgstr "Tilbakestill oppsett"
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr "Tilbakestill zoom"
|
msgstr "Tilbakestill zoom"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr "CV-er"
|
msgstr "CV-er"
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr "Avrundet"
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Lagre Endringer"
|
msgstr "Lagre Endringer"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "Lagre lokalt"
|
msgstr "Lagre lokalt"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Lagret"
|
msgstr "Lagret"
|
||||||
|
|
||||||
@ -1256,21 +1294,21 @@ msgstr "Poengsum"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:104
|
#: apps/client/src/pages/builder/_components/toolbar.tsx:104
|
||||||
msgid "Scroll to Pan"
|
msgid "Scroll to Pan"
|
||||||
msgstr ""
|
msgstr "Rull for å panorere"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:104
|
#: apps/client/src/pages/builder/_components/toolbar.tsx:104
|
||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr ""
|
msgstr "Scroll for å zoome"
|
||||||
|
|
||||||
#: 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"
|
msgid "Search for a font family"
|
||||||
msgstr "Søk etter en skriftfamilie"
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr "Søk etter et skriftundersett"
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr "Søk etter en skriftvariant"
|
msgstr "Søk etter en skriftvariant"
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr "Søk etter et språk"
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr "Sikker med tofaktorautentisering"
|
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"
|
msgid "Security"
|
||||||
msgstr "Sikkerhet"
|
msgstr "Sikkerhet"
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr "Selv-vert med Docker"
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr "Send E-post"
|
msgstr "Send E-post"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr "Send meg en melding"
|
msgstr "Send meg en melding"
|
||||||
|
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr "Sett opp totrinnsverifisering på kontoen din"
|
msgstr "Sett opp totrinnsverifisering på kontoen din"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr "Deling"
|
msgstr "Deling"
|
||||||
@ -1330,7 +1369,7 @@ msgstr "Vis bruddlinje"
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr "Vis sidetall"
|
msgstr "Vis sidetall"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Sidepanel"
|
msgstr "Sidepanel"
|
||||||
|
|
||||||
@ -1408,6 +1447,7 @@ msgid "Start building your resume by giving it a name."
|
|||||||
msgstr "Begynn å bygge din CV ved å gi den et navn."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr "Statistikk"
|
msgstr "Statistikk"
|
||||||
@ -1422,17 +1462,17 @@ msgstr "Lagre reservekodene dine sikkert"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr "Sammendrag"
|
msgstr "Sammendrag"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr "Støtt appen ved å donere det du kan!"
|
msgstr "Støtt appen ved å donere det du kan!"
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr "Støtter Reactive Resume"
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr "Støtter A4/Brev sideformater"
|
msgstr "Støtter A4/Brev sideformater"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr "Bytt til mørk modus"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr "Bytt til lysmodus"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr "System"
|
msgstr "System"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "Mal"
|
msgstr "Mal"
|
||||||
@ -1465,15 +1514,20 @@ msgstr "Uttalelser"
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr "Tekstfarge"
|
msgstr "Tekstfarge"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
msgstr "Passordene du har angitt stemmer ikke overens."
|
msgstr "Siden du leter etter finnes ikke."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
|
msgstr "Forespørselen var ugyldig."
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: 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."
|
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."
|
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/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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,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:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr "Tofaktorautentisering"
|
msgstr "Tofaktorautentisering"
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr "Studietype"
|
msgstr "Studietype"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr "Typografi"
|
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"
|
msgid "Underline Links"
|
||||||
msgstr "Understrek koblinger"
|
msgstr "Understrek koblinger"
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr "URL"
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr "URL må starte med https://"
|
msgstr "URL må starte med https://"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr "Bruk Azure OpenAI"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr "Bruk systemtema"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,13 +1714,13 @@ msgstr "Versjon 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Visninger"
|
msgstr "Visninger"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Synlig"
|
msgstr "Synlig"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70
|
||||||
msgid "Visit <0>Phosphor Icons</0> for a list of available icons"
|
msgid "Visit <0>Phosphor Icons</0> for a list of available icons"
|
||||||
msgstr ""
|
msgstr "Besøk <0>Fosfor Icons</0> for en liste over tilgjengelige ikoner"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
@ -1665,11 +1728,11 @@ msgstr "Vi bekrefter e-postadressen din kun for å sikre at vi kan sende deg en
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr "Nettsted"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Hva er nytt i den nyeste versjonen"
|
msgstr "Hva er nytt i den nyeste versjonen"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr "Du har ikke adgang til denne siden."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Du kan legge til flere nøkkelord ved å skille dem med et komma eller trykke enter."
|
msgstr "Du kan legge til flere nøkkelord ved å skille dem med et komma eller trykke enter."
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr "Du kan legge til flere nøkkelord ved å skille dem med et komma eller t
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Du kan også skrive inn brukernavnet ditt."
|
msgstr "Du kan også skrive inn brukernavnet ditt."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr ""
|
msgstr "Du kan også integrere med Azure OpenAI ved å aktivere <0>Bruk Azure OpenAI</0> avkrysningsboksen og sette ressursadressen til din Azure OpenAI ressurs: <1>https://your-resource. penai.azure.com</1>. Sett distribusjonsnavn i Model feltet og angi riktig API versjon for din Azure distribusjon."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
msgstr "Du kan bruke OpenAI API for å hjelpe deg med å generere innhold, eller forbedre skrivingen din mens du skriver din CV."
|
msgstr "Du kan også integrere med Ollama ved å sette API-nøkkelen til<0>sk-1234567890abcdef</0> og Base URL til din Ollama URL, i. .<1>http://localhost:11434/v1</1>. Du kan også velge modeller og sette maks tokens i henhold til din preferanse."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
|
msgstr "Du kan bruke OpenAI API, Azure OpenAI, eller Ollama for å hjelpe deg med å generere innhold, eller forbedre skrivingen din når du skriver \"gjenopptaket\"."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Du kan spore antall visninger CV-en din har mottatt, eller hvor mange personer som har lastet ned CV-en ved å aktivere offentlig deling."
|
msgstr "Du kan spore antall visninger CV-en din har mottatt, eller hvor mange personer som har lastet ned CV-en ved å aktivere offentlig deling."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr "Du har ikke tilgang til denne siden."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "Du har muligheten til å <0>skaffe din egen OpenAI API-nøkkel</0>. Denne nøkkelen gir deg mulighet til å utnytte API-en slik det passer deg. Alternativt, hvis du ønsker å deaktivere KI-funksjonene i Reactive Resume helt, kan du ganske enkelt fjerne nøkkelen fra innstillingene dine."
|
msgstr "Du har muligheten til å <0>skaffe din egen OpenAI API-nøkkel</0>. Denne nøkkelen gir deg mulighet til å utnytte API-en slik det passer deg. Alternativt, hvis du ønsker å deaktivere KI-funksjonene i Reactive Resume helt, kan du ganske enkelt fjerne nøkkelen fra innstillingene dine."
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr "Du har fått e-post!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Kontoen din og alle dataene dine er slettet. Ha det bra!"
|
msgstr "Kontoen din og alle dataene dine er slettet. Ha det bra!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "API-nøkkelen din er trygt lagret i nettleserens lokale lagring og brukes kun når du sender forespørsler til OpenAI via deres offisielle SDK. Du kan være trygg på at nøkkelen din ikke overføres til noen ekstern server bortsett fra når du samhandler med OpenAI's tjenester."
|
msgstr "API-nøkkelen din er trygt lagret i nettleserens lokale lagring og brukes kun når du sender forespørsler til OpenAI via deres offisielle SDK. Du kan være trygg på at nøkkelen din ikke overføres til noen ekstern server bortsett fra når du samhandler med OpenAI's tjenester."
|
||||||
|
|
||||||
@ -1733,7 +1808,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."
|
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."
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr "Passordet ditt har blitt oppdatert."
|
msgstr "Passordet ditt har blitt oppdatert."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: or\n"
|
"Language: or\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:32\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Odia\n"
|
"Language-Team: Odia\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -30,27 +30,27 @@ msgstr ""
|
|||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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 ""
|
||||||
|
|
||||||
#: 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."
|
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||||
msgstr ""
|
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."
|
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -102,8 +102,8 @@ msgstr ""
|
|||||||
msgid "Add a custom field"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -117,7 +117,7 @@ msgstr ""
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr ""
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -191,6 +199,18 @@ msgstr ""
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,7 +229,7 @@ msgstr ""
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -246,8 +266,8 @@ msgstr ""
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr ""
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr ""
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr ""
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -351,7 +371,12 @@ msgstr ""
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr ""
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -386,10 +411,10 @@ msgstr ""
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -407,11 +432,15 @@ msgstr ""
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr ""
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||||
msgid "Disable 2FA"
|
msgid "Disable 2FA"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr ""
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr ""
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr ""
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr ""
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr ""
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||||
msgid "Enable 2FA"
|
msgid "Enable 2FA"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr ""
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -544,6 +576,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -564,19 +597,19 @@ msgstr ""
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr ""
|
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"
|
msgid "Font Family"
|
||||||
msgstr ""
|
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"
|
msgid "Font Size"
|
||||||
msgstr ""
|
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"
|
msgid "Font Subset"
|
||||||
msgstr ""
|
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"
|
msgid "Font Variants"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr ""
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr ""
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr ""
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr ""
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -651,7 +688,7 @@ msgstr ""
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -677,7 +714,7 @@ msgstr ""
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr ""
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -734,7 +771,7 @@ msgstr ""
|
|||||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||||
msgstr ""
|
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."
|
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ msgid "In this section, you can delete your account and all the data associated
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr ""
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr ""
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr ""
|
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"
|
msgid "Line Height"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr ""
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr ""
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -923,7 +962,7 @@ msgstr ""
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr ""
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||||
msgid "New Password"
|
msgid "New Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1009,16 +1049,16 @@ msgstr ""
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
|
||||||
msgid "OpenAI/Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: 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"
|
msgid "Options"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr ""
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr ""
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr ""
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr ""
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr ""
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1262,15 +1300,15 @@ msgstr ""
|
|||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr ""
|
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"
|
msgid "Search for a font family"
|
||||||
msgstr ""
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr ""
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr ""
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr ""
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1330,7 +1369,7 @@ msgstr ""
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1408,6 +1447,7 @@ msgid "Start building your resume by giving it a name."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1422,17 +1462,17 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr ""
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1465,8 +1514,12 @@ msgstr ""
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: apps/client/src/services/errors/translate-error.ts:49
|
||||||
@ -1474,6 +1527,7 @@ msgid "The resume you want to update is locked, please unlock if you wish to mak
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
#: 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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr ""
|
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"
|
msgid "Underline Links"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr ""
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,7 +1714,7 @@ msgstr ""
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1665,11 +1728,11 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr ""
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr ""
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr ""
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr ""
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1733,7 +1808,7 @@ msgstr ""
|
|||||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||||
msgstr ""
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: pl\n"
|
"Language: pl\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:40\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Polish\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"
|
"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"
|
||||||
@ -30,27 +30,27 @@ msgstr "{templatesCount} szablonów dostępnych"
|
|||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr "{value, plural, one {Kolumna} few {Kolumny} many {Kolumny} other {Kolumny}}"
|
msgstr "{value, plural, one {Kolumna} few {Kolumny} many {Kolumny} other {Kolumny}}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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>Zbudowałem Reactive Resume głównie sam w wolnym czasie, z dużą pomocą innych wspaniałych twórców open-source.</0><1>Jeśli podoba ci się aplikacja i chcesz wesprzeć utrzymanie jej za darmo na zawsze, proszę przekazać darowiznę, na jaką możesz sobie pozwolić.</1>"
|
msgstr "<0>Zbudowałem Reactive Resume głównie sam w wolnym czasie, z dużą pomocą innych wspaniałych twórców open-source.</0><1>Jeśli podoba ci się aplikacja i chcesz wesprzeć utrzymanie jej za darmo na zawsze, proszę przekazać darowiznę, na jaką możesz sobie pozwolić.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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>Jestem pewny, że aplikacja nie jest idealna, ale chciałbym, aby taka była.</0><1>Jeśli wystąpią jakiekolwiek problemy podczas tworzenia CV lub masz pomysł, który pomógłby Tobie i innym użytkownikom w łatwiejszym tworzeniu CV, zgłoś problem w repozytorium lub wyślij mi e-mail w tej sprawie.</1>"
|
msgstr "<0>Jestem pewny, że aplikacja nie jest idealna, ale chciałbym, aby taka była.</0><1>Jeśli wystąpią jakiekolwiek problemy podczas tworzenia CV lub masz pomysł, który pomógłby Tobie i innym użytkownikom w łatwiejszym tworzeniu CV, zgłoś problem w repozytorium lub wyślij mi e-mail w tej sprawie.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 "<0>Uwaga: </0>Korzystając z interfejsu API OpenAI, użytkownik przyjmuje do wiadomości i akceptuje <1>warunki użytkowania</1> i <2>politykę prywatności</2> określone przez OpenAI. Pamiętaj, że Reactive Resume nie ponosi żadnej odpowiedzialności za niewłaściwe lub nieautoryzowane korzystanie z usługi, a wszelkie wynikające z tego reperkusje lub zobowiązania spoczywają wyłącznie na użytkowniku."
|
msgstr "<0>Uwaga: </0>Korzystając z interfejsu API OpenAI, użytkownik przyjmuje do wiadomości i akceptuje <1>warunki użytkowania</1> i <2>politykę prywatności</2> określone przez OpenAI. Pamiętaj, że Reactive Resume nie ponosi żadnej odpowiedzialności za niewłaściwe lub nieautoryzowane korzystanie z usługi, a wszelkie wynikające z tego reperkusje lub zobowiązania spoczywają wyłącznie na użytkowniku."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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>"
|
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."
|
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ą."
|
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."
|
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."
|
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"
|
msgid "Add a custom field"
|
||||||
msgstr "Dodaj niestandardowe pole"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Dodaj nowy element"
|
msgstr "Dodaj nowy element"
|
||||||
@ -117,7 +117,7 @@ msgstr "Dodaj nowy element"
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr "Dodaj nową sekcję"
|
msgstr "Dodaj nową sekcję"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr "Dodaj nową stronę"
|
msgstr "Dodaj nową stronę"
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr "Posiadasz już konto?"
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr "Wystąpił błąd podczas sprawdzania pliku."
|
msgstr "Wystąpił błąd podczas sprawdzania pliku."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr "Wystąpił wewnętrzny błąd serwera."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr "Wystąpił nieoczekiwany błąd."
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr "i wiele więcej..."
|
msgstr "i wiele więcej..."
|
||||||
@ -191,6 +199,18 @@ msgstr "Dostępne w {languagesCount} językach"
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr "Nagrodzony"
|
msgstr "Nagrodzony"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr "Wersja Azure API"
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr "Adres URL bazy Azure OpenAI, nazwa wdrożenia (model) i wersja API są wymagane podczas korzystania z Azure OpenAI."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr "Adres URL Zasobów Azure OpenAI"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,7 +229,7 @@ msgstr "Kod Zapasowy"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Kody Zapasowe mogą zawierać wyłącznie małe litery lub cyfry i muszą mieć dokładnie 10 znaków."
|
msgstr "Kody Zapasowe mogą zawierać wyłącznie małe litery lub cyfry i muszą mieć dokładnie 10 znaków."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "Podstawowy adres URL"
|
msgstr "Podstawowy adres URL"
|
||||||
|
|
||||||
@ -246,8 +266,8 @@ msgstr "Zbudowane przez społeczność dla społeczności."
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Anuluj"
|
msgstr "Anuluj"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr "Nieformalnie"
|
msgstr "Nieformalnie"
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr "Nieformalnie"
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr "Wyśrodkuj Obszar Roboczy"
|
msgstr "Wyśrodkuj Obszar Roboczy"
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr "Zmień język"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr "Zmień hasło"
|
msgstr "Zmień hasło"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr "Zmień ton"
|
msgstr "Zmień ton"
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr "Kolumny"
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr "Firma"
|
msgstr "Firma"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr "Pewny siebie"
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Dalej"
|
msgstr "Dalej"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Kopiuj"
|
msgstr "Kopiuj"
|
||||||
|
|
||||||
@ -351,7 +371,12 @@ msgstr "Stwórz teraz"
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr "Stwórz przykładowe CV"
|
msgstr "Stwórz przykładowe CV"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||||
|
msgid "Current Password"
|
||||||
|
msgstr "Obecne hasło"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr "Niestandardowy CSS"
|
msgstr "Niestandardowy CSS"
|
||||||
@ -386,10 +411,10 @@ msgstr "Ciemny"
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Data"
|
msgstr "Data"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Data lub zakres dat"
|
msgstr "Data lub zakres dat"
|
||||||
@ -407,11 +432,15 @@ msgstr "Usuń"
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr "Usuń konto"
|
msgstr "Usuń konto"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr "Nazwa wdrożenia"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Opis"
|
msgstr "Opis"
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr "Projektuj CV jedno/wielostronicowe"
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr "Wyłącz"
|
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"
|
msgid "Disable 2FA"
|
||||||
msgstr "Wyłącz uwierzytelnianie dwuskładnikowe"
|
msgstr "Wyłącz uwierzytelnianie dwuskładnikowe"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr "Odrzuć"
|
msgstr "Odrzuć"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Dokumentacja"
|
msgstr "Dokumentacja"
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr "Dokumentacja"
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr "Nie masz jeszcze konta?"
|
msgstr "Nie masz jeszcze konta?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr "Nie wiesz od czego zacząć? Przejdź do dokumentów!"
|
msgstr "Nie wiesz od czego zacząć? Przejdź do dokumentów!"
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr "Nie wiesz od czego zacząć? Przejdź do dokumentów!"
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr "Nie widzisz swojego języka? <0>Pomóż w tłumaczeniu aplikacji.</0>"
|
msgstr "Nie widzisz swojego języka? <0>Pomóż w tłumaczeniu aplikacji.</0>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr "Przekaż darowiznę na rzecz Reactive Resume"
|
msgstr "Przekaż darowiznę na rzecz Reactive Resume"
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr "Przekaż darowiznę na rzecz Reactive Resume"
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr "Proszę pobrać migawkę JSON swojego CV. Plik ten może zostać wykorzystany do zaimportowania Twojego CV w przyszłości, a nawet może zostać udostępniony innym osobom w celu współpracy."
|
msgstr "Proszę pobrać migawkę JSON swojego CV. Plik ten może zostać wykorzystany do zaimportowania Twojego CV w przyszłości, a nawet może zostać udostępniony innym osobom w celu współpracy."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
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."
|
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/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr "Pobierz PDF"
|
msgstr "Pobierz PDF"
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr "Duplikuj istniejący element"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Zduplikuj istniejące CV"
|
msgstr "Zduplikuj istniejące CV"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Edytuj"
|
msgstr "Edytuj"
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr "Efekty"
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr "E-mail"
|
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"
|
msgid "Enable 2FA"
|
||||||
msgstr "Włącz 2FA"
|
msgstr "Włącz 2FA"
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr "Wprowadź poniżej jednorazowe hasło dostarczone przez aplikację uwier
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr "Podaj swój adres e-mail, a my wyślemy Ci link umożliwiający zresetowanie hasła, jeśli konto istnieje."
|
msgstr "Podaj swój adres e-mail, a my wyślemy Ci link umożliwiający zresetowanie hasła, jeśli konto istnieje."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr "Błąd {statusCode}"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr "Błędy"
|
msgstr "Błędy"
|
||||||
@ -544,6 +576,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."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr "Eksportuj"
|
msgstr "Eksportuj"
|
||||||
@ -564,19 +597,19 @@ msgstr "Na koniec,"
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr "Popraw pisownię i gramatykę"
|
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"
|
msgid "Font Family"
|
||||||
msgstr "Czcionka"
|
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"
|
msgid "Font Size"
|
||||||
msgstr "Rozmiar Czcionki"
|
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"
|
msgid "Font Subset"
|
||||||
msgstr "Podzbiór czcionek"
|
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"
|
msgid "Font Variants"
|
||||||
msgstr "Wariant Czcionki"
|
msgstr "Wariant Czcionki"
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr "Wariant Czcionki"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "Można tu na przykład zapisać informacje o firmach, do których wysłałeś to CV, lub linki do opisów stanowisk."
|
msgstr "Można tu na przykład zapisać informacje o firmach, do których wysłałeś to CV, lub linki do opisów stanowisk."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Zapomnij"
|
msgstr "Zapomnij"
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr "Nie pamiętasz hasła?"
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr "Format"
|
msgstr "Format"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr "Znalazłeś błąd lub masz pomysł na nową funkcję?"
|
msgstr "Znalazłeś błąd lub masz pomysł na nową funkcję?"
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr "Znalazłeś błąd lub masz pomysł na nową funkcję?"
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr "Za darmo, na zawsze"
|
msgstr "Za darmo, na zawsze"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr "Przyjazny"
|
msgstr "Przyjazny"
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr "Nadaj swojemu staremu CV nową nazwę."
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr "Przejdź do Pulpitu"
|
msgstr "Przejdź do Pulpitu"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr "Przejdź do strony głównej"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr "Google"
|
msgstr "Google"
|
||||||
@ -651,7 +688,7 @@ msgstr "Google"
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr "Skala szarości"
|
msgstr "Skala szarości"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr "Siatka"
|
msgstr "Siatka"
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr "Tutaj możesz zaktualizować swój profil, aby dostosować i spersonalizować swoje doświadczenia."
|
msgstr "Tutaj możesz zaktualizować swój profil, aby dostosować i spersonalizować swoje doświadczenia."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Ukryte"
|
msgstr "Ukryte"
|
||||||
@ -677,7 +714,7 @@ msgstr "Ukryte"
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr "Ukryj"
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr "Ukryj Ikony"
|
msgstr "Ukryj Ikony"
|
||||||
|
|
||||||
@ -734,7 +771,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."
|
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."
|
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."
|
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."
|
msgstr "W tej sekcji możesz zmienić swoje hasło i włączyć/wyłączyć uwierzytelnianie dwuskładnikowe."
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ 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>."
|
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/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Informacje"
|
msgstr "Informacje"
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr "jan.kowalski@przyklad.pl"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Słowa Kluczowe"
|
msgstr "Słowa Kluczowe"
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr "Ostatnio zaktualizowane {lastUpdated}"
|
msgstr "Ostatnio zaktualizowane {lastUpdated}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Układ"
|
msgstr "Układ"
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr "List"
|
msgstr "List"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr "Poziom"
|
msgstr "Poziom"
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr "Jasny"
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr "Jasny lub ciemny motyw"
|
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"
|
msgid "Line Height"
|
||||||
msgstr "Wysokość wiersza"
|
msgstr "Wysokość wiersza"
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr "Wysokość wiersza"
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr "LinkedIn, CV JSON itp."
|
msgstr "LinkedIn, CV JSON itp."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr "Lista"
|
msgstr "Lista"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr "Wyloguj"
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr "Utracono urządzenie?"
|
msgstr "Utracono urządzenie?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr "Główne"
|
msgstr "Główne"
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr "Marzec 2023"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr "Marzec 2023 – obecnie"
|
msgstr "Marzec 2023 – obecnie"
|
||||||
@ -923,7 +962,7 @@ msgstr "Marzec 2023 – obecnie"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Marginesy"
|
msgstr "Marginesy"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "Maksymalna liczba żetonów"
|
msgstr "Maksymalna liczba żetonów"
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr "Maksymalna liczba żetonów"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "Licencja MIT"
|
msgstr "Licencja MIT"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "Model"
|
msgstr "Model"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr "Nazwa"
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Sieć"
|
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"
|
msgid "New Password"
|
||||||
msgstr "Nowe Hasło"
|
msgstr "Nowe Hasło"
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr "Uwaga: Spowoduje to zmniejszenie bezpieczeństwa Twojego konta."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Notatki"
|
msgstr "Notatki"
|
||||||
@ -1009,16 +1049,16 @@ msgstr "OpenAI nie zwróciło żadnych wyborów dla Twojego tekstu."
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "Integracja z OpenAI"
|
msgstr "Integracja z OpenAI"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
msgstr "OpenAI/Azure OpenAI/Ollama Integracja"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr "Klucz API OpenAI/Ollama"
|
msgstr "Klucz API OpenAI/Ollama"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
|
||||||
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/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"
|
msgid "Options"
|
||||||
msgstr "Opcje"
|
msgstr "Opcje"
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr "Nazwa firmy"
|
msgstr "Nazwa firmy"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "Strona"
|
msgstr "Strona"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr "Strona {pageNumber}"
|
msgstr "Strona {pageNumber}"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr "Hasło"
|
msgstr "Hasło"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr "PDF"
|
msgstr "PDF"
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr "Napędzane przez <0>Simple Icons</0>"
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr "Główny kolor"
|
msgstr "Główny kolor"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr "Polityka prywatności"
|
msgstr "Polityka prywatności"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr "Profesjonalny"
|
msgstr "Profesjonalny"
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr "Publiczny"
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "Publikujący"
|
msgstr "Publikujący"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr "Zgłoś problem"
|
msgstr "Zgłoś problem"
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr "Zgłoś problem"
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr "Reactive Resume rozwija się dzięki tętniącej życiem społeczności.
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Ponów"
|
msgstr "Ponów"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Usuń"
|
msgstr "Usuń"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr "Usuń Stronę"
|
msgstr "Usuń Stronę"
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr "Wyślij ponownie link potwierdzający e-mail"
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr "Zresetuj"
|
msgstr "Zresetuj"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr "Zresetuj Układ"
|
msgstr "Zresetuj Układ"
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr "Zresetuj Powiększenie"
|
msgstr "Zresetuj Powiększenie"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr "CV"
|
msgstr "CV"
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr "Zaokrąklony"
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Zapisz Zmiany"
|
msgstr "Zapisz Zmiany"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "Oszczędzaj lokalnie"
|
msgstr "Oszczędzaj lokalnie"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Zapisane"
|
msgstr "Zapisane"
|
||||||
|
|
||||||
@ -1262,15 +1300,15 @@ msgstr "Przewiń do Pan"
|
|||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr "Przewiń, aby powiększyć"
|
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"
|
msgid "Search for a font family"
|
||||||
msgstr "Wyszukaj czcionkę"
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr "Wyszukaj podzbiór czcionek"
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr "Wyszukaj wariant czcionki"
|
msgstr "Wyszukaj wariant czcionki"
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr "Wyszukaj język"
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr "Bezpieczeństwo dzięki uwierzytelnianiu dwuskładnikowemu"
|
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"
|
msgid "Security"
|
||||||
msgstr "Bezpieczeństwo"
|
msgstr "Bezpieczeństwo"
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr "Samodzielny host z Dockerem"
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr "Wyślij E-mail"
|
msgstr "Wyślij E-mail"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr "Wyślij mi wiadomość"
|
msgstr "Wyślij mi wiadomość"
|
||||||
|
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr "Skonfiguruj uwierzytelnianie dwuskładnikowe na swoim koncie"
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr "Udostępnianie"
|
msgstr "Udostępnianie"
|
||||||
@ -1330,7 +1369,7 @@ msgstr "Pokaż linię przerwania"
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr "Pokaż Numery Stron"
|
msgstr "Pokaż Numery Stron"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Pasek Boczny"
|
msgstr "Pasek Boczny"
|
||||||
|
|
||||||
@ -1408,6 +1447,7 @@ msgid "Start building your resume by giving it a name."
|
|||||||
msgstr "Zacznij tworzyć swoje CV, nadając mu nazwę."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr "Statystyki"
|
msgstr "Statystyki"
|
||||||
@ -1422,17 +1462,17 @@ msgstr "Przechowuj bezpiecznie swoje kody zapasowe"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr "Podsumowanie"
|
msgstr "Podsumowanie"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr "Wesprzyj aplikację, wpłacając dowolną kwotę!"
|
msgstr "Wesprzyj aplikację, wpłacając dowolną kwotę!"
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr "Wspierający Reactive Resume"
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr "Obsługuje formaty stron A4/Letter"
|
msgstr "Obsługuje formaty stron A4/Letter"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr "Przełącz na tryb ciemny"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr "Przełącz na tryb diody"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr "System"
|
msgstr "System"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "Szablon"
|
msgstr "Szablon"
|
||||||
@ -1465,15 +1514,20 @@ msgstr "Referencje"
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr "Kolor Tekstu"
|
msgstr "Kolor Tekstu"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
msgstr "Wprowadzone hasła nie są zgodne."
|
msgstr "Strona, której szukasz, nie istnieje."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
|
msgstr "Żądanie jest nieprawidłowe."
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: 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."
|
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."
|
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/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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,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:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr "Uwierzytelnianie dwuskładnikowe"
|
msgstr "Uwierzytelnianie dwuskładnikowe"
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr "Uzyskane wykształcenie"
|
msgstr "Uzyskane wykształcenie"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr "Typografia"
|
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"
|
msgid "Underline Links"
|
||||||
msgstr "Podkreśl Linki"
|
msgstr "Podkreśl Linki"
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr "Link"
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr "Link musi zaczynać się od https://"
|
msgstr "Link musi zaczynać się od https://"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr "Użyj Azure OpenAI"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr "Użyj motywu systemowego"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,7 +1714,7 @@ msgstr "Wersja 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Wyświetlenia"
|
msgstr "Wyświetlenia"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Widoczny"
|
msgstr "Widoczny"
|
||||||
|
|
||||||
@ -1665,11 +1728,11 @@ msgstr "Weryfikujemy Twój adres e-mail tylko po to, aby mieć pewność, że b
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr "Strona"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Co nowego w najnowszej wersji"
|
msgstr "Co nowego w najnowszej wersji"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr "Nie masz uprawnień do wyświetlenia tej strony."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Możesz dodać wiele słów kluczowych, oddzielając je przecinkiem lub naciskając klawisz Enter."
|
msgstr "Możesz dodać wiele słów kluczowych, oddzielając je przecinkiem lub naciskając klawisz Enter."
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr "Możesz dodać wiele słów kluczowych, oddzielając je przecinkiem lub
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Możesz także wpisać swoją nazwę użytkownika."
|
msgstr "Możesz także wpisać swoją nazwę użytkownika."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr "Można również zintegrować się z Ollamą, po prostu ustawiając klucz API na `sk-1234567890abcdef` i bazowy adres URL na adres URL Ollamy, tj. `http://localhost:11434/v1`. Mogą Państwo również wybrać modele i ustawić maksymalną liczbę tokenów zgodnie z własnymi preferencjami."
|
msgstr "Możesz również zintegrować się z Azure OpenAI poprzez włączenie <0>Użyj pola wyboru Azure OpenAI</0> i ustawienie adresu URL Zasobów na zasób Azure OpenAI: <1>https://your-resource. penai.azure.com</1>. Ustaw nazwę wdrożenia w polu Model i określ odpowiednią wersję API dla Twojego wdrożenia Azure"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
msgstr "Możesz skorzystać z interfejsu API OpenAI, aby pomóc w generowaniu treści lub ulepszaniu pisania podczas tworzenia CV."
|
msgstr "Możesz również zintegrować się z Ollamą po prostu ustawiając klucz API na<0>sk-1234567890abcdef</0> i bazowy adres URL Ollamy. i. .<1>http://localhost:11434/v1</1>. Możesz również wybrać i wybrać modele i ustawić maksymalne tokeny zgodnie z Twoimi preferencjami."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
|
msgstr "Możesz korzystać z API OpenAI, Azure OpenAI lub Ollama, aby pomóc w generowaniu treści lub ulepszyć pisanie podczas tworzenia Twojego wznowienia."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Możesz śledzić liczbę wyświetleń Twojego CV lub liczbę osób, które pobrały CV, włączając udostępnianie publiczne."
|
msgstr "Możesz śledzić liczbę wyświetleń Twojego CV lub liczbę osób, które pobrały CV, włączając udostępnianie publiczne."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr "Nie masz uprawnień do dostępu do tej strony."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "Masz możliwość <0>uzyskania własnego klucza API OpenAI</0>. Ten klucz umożliwia wykorzystanie interfejsu API według własnego uznania. Alternatywnie, jeśli chcesz całkowicie wyłączyć funkcje AI w Reactive Resume, możesz po prostu usunąć klucz ze swoich ustawień."
|
msgstr "Masz możliwość <0>uzyskania własnego klucza API OpenAI</0>. Ten klucz umożliwia wykorzystanie interfejsu API według własnego uznania. Alternatywnie, jeśli chcesz całkowicie wyłączyć funkcje AI w Reactive Resume, możesz po prostu usunąć klucz ze swoich ustawień."
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr "Wysłaliśmy do Ciebie e-mail!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Twoje konto i wszystkie dane zostały pomyślnie usunięte. Trzymaj się!"
|
msgstr "Twoje konto i wszystkie dane zostały pomyślnie usunięte. Trzymaj się!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "Twój klucz API jest bezpiecznie przechowywany w lokalnej pamięci przeglądarki i jest używany tylko podczas wysyłania żądań do OpenAI za pośrednictwem oficjalnego pakietu SDK. Możesz mieć pewność, że Twój klucz nie zostanie przesłany do żadnego serwera zewnętrznego, z wyjątkiem interakcji z usługami OpenAI."
|
msgstr "Twój klucz API jest bezpiecznie przechowywany w lokalnej pamięci przeglądarki i jest używany tylko podczas wysyłania żądań do OpenAI za pośrednictwem oficjalnego pakietu SDK. Możesz mieć pewność, że Twój klucz nie zostanie przesłany do żadnego serwera zewnętrznego, z wyjątkiem interakcji z usługami OpenAI."
|
||||||
|
|
||||||
@ -1733,7 +1808,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."
|
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."
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr "Twoje hasło zostało pomyślnie zaktualizowane."
|
msgstr "Twoje hasło zostało pomyślnie zaktualizowane."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: pt\n"
|
"Language: pt\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:40\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Portuguese, Brazilian\n"
|
"Language-Team: Portuguese, Brazilian\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -30,27 +30,27 @@ msgstr "{templatesCount} templates de currículo para serem escolhidos de"
|
|||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr "{value, plural, one {Coluna} other {Collunas}}"
|
msgstr "{value, plural, one {Coluna} other {Collunas}}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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>Eu criei o Reactive Resume basicamente sozinho durante meu tempo livre, contando com muita ajuda de outros grandes contribuidores de código aberto.</0><1>Se você gosta do aplicativo e deseja apoiar mantê-lo gratuito para sempre, doe o que puder.</1>"
|
msgstr "<0>Eu criei o Reactive Resume basicamente sozinho durante meu tempo livre, contando com muita ajuda de outros grandes contribuidores de código aberto.</0><1>Se você gosta do aplicativo e deseja apoiar mantê-lo gratuito para sempre, doe o que puder.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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>Tenho certeza de que o aplicativo não é perfeito, mas gostaria que fosse.</0> <1>Se você enfrentou algum problema ao criar seu currículo ou tem uma ideia que ajudaria você e outros usuários a criar seu currículo com mais facilidade, deixe um problema no repositório ou envie-me um e-mail sobre isso.</1>"
|
msgstr "<0>Tenho certeza de que o aplicativo não é perfeito, mas gostaria que fosse.</0> <1>Se você enfrentou algum problema ao criar seu currículo ou tem uma ideia que ajudaria você e outros usuários a criar seu currículo com mais facilidade, deixe um problema no repositório ou envie-me um e-mail sobre isso.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 "<0>Nota:</0> Ao utilizar a API OpenAI, você reconhece e aceita os <1>termos de uso</1> e <2>política de privacidade</2> definidos pela OpenAI. Observe que o Reactive Resume não se responsabiliza por qualquer utilização inadequada ou não autorizada do serviço, e quaisquer repercussões ou responsabilidades resultantes são exclusivamente do usuário."
|
msgstr "<0>Nota:</0> Ao utilizar a API OpenAI, você reconhece e aceita os <1>termos de uso</1> e <2>política de privacidade</2> definidos pela OpenAI. Observe que o Reactive Resume não se responsabiliza por qualquer utilização inadequada ou não autorizada do serviço, e quaisquer repercussões ou responsabilidades resultantes são exclusivamente do usuário."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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>"
|
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."
|
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."
|
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."
|
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."
|
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"
|
msgid "Add a custom field"
|
||||||
msgstr "Adicionar campo customizado"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Adicionar novo item"
|
msgstr "Adicionar novo item"
|
||||||
@ -117,7 +117,7 @@ msgstr "Adicionar novo item"
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr "Adicionar nova sessão"
|
msgstr "Adicionar nova sessão"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr "Adicionar Nova Página"
|
msgstr "Adicionar Nova Página"
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr "Já possui uma conta?"
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr "Ocorreu um erro ao validar o arquivo."
|
msgstr "Ocorreu um erro ao validar o arquivo."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr "Ocorreu um erro interno no servidor."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr "Um inesperado erro ocorreu."
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr "e muito mais..."
|
msgstr "e muito mais..."
|
||||||
@ -191,6 +199,18 @@ msgstr "Disponível em {languagesCount} idiomas"
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr "Premiado"
|
msgstr "Premiado"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr "Versão do Azure API"
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr "URL do Azure OpenAI, nome de implantação (modelo) e versão da API são necessários ao usar o Azure OpenAI."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr "URL de Recurso do Azure OpenAI"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,7 +229,7 @@ msgstr "Código de Segurança"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Os códigos de segurança só podem conter letras minúsculas ou números, e devem ter exatamente 10 caracteres."
|
msgstr "Os códigos de segurança só podem conter letras minúsculas ou números, e devem ter exatamente 10 caracteres."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "URL Base"
|
msgstr "URL Base"
|
||||||
|
|
||||||
@ -246,8 +266,8 @@ msgstr "Construída pela comunidade para a comunidade."
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Cancelar"
|
msgstr "Cancelar"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr "Casual"
|
msgstr "Casual"
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr "Casual"
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr "Centralizar prancheta"
|
msgstr "Centralizar prancheta"
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr "Alterar Idioma"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr "Alterar a senha"
|
msgstr "Alterar a senha"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr "Alterar tom"
|
msgstr "Alterar tom"
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr "Colunas"
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr "Empresa"
|
msgstr "Empresa"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr "Confiante"
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Continuar"
|
msgstr "Continuar"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Copiar"
|
msgstr "Copiar"
|
||||||
|
|
||||||
@ -351,7 +371,12 @@ msgstr "Criar um agora"
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr "Criar currículo de exemplo"
|
msgstr "Criar currículo de exemplo"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||||
|
msgid "Current Password"
|
||||||
|
msgstr "Senha Atual"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr "CSS personalizado"
|
msgstr "CSS personalizado"
|
||||||
@ -386,10 +411,10 @@ msgstr "Escuro"
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Data"
|
msgstr "Data"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Data ou intervalo de datas"
|
msgstr "Data ou intervalo de datas"
|
||||||
@ -407,11 +432,15 @@ msgstr "Apagar"
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr "Excluir conta"
|
msgstr "Excluir conta"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr "Nome de implantação"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Descrição"
|
msgstr "Descrição"
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr "Crie currículos de uma ou várias páginas"
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr "Desabilitar"
|
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"
|
msgid "Disable 2FA"
|
||||||
msgstr "Desativar 2FA"
|
msgstr "Desativar 2FA"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr "Descartar"
|
msgstr "Descartar"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Documentação"
|
msgstr "Documentação"
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr "Documentação"
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr "Não possui uma conta?"
|
msgstr "Não possui uma conta?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr "Não sabe por onde começar? Consulte os documentos!"
|
msgstr "Não sabe por onde começar? Consulte os documentos!"
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr "Não sabe por onde começar? Consulte os documentos!"
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr "Não está vendo seu idioma? <0>Ajude a traduzir o aplicativo.</0>"
|
msgstr "Não está vendo seu idioma? <0>Ajude a traduzir o aplicativo.</0>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr "Doe para a Reactive Resume"
|
msgstr "Doe para a Reactive Resume"
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr "Doe para a Reactive Resume"
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr "Faça o download de uma captura JSON de seu currículo. Este arquivo pode ser usado para importar seu currículo no futuro ou até mesmo pode ser compartilhado com os outros para colaborar."
|
msgstr "Faça o download de uma captura JSON de seu currículo. Este arquivo pode ser usado para importar seu currículo no futuro ou até mesmo pode ser compartilhado com os outros para colaborar."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
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."
|
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/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr "Baixar PDF"
|
msgstr "Baixar PDF"
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr "Duplicar um item existente"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Duplicar um currículo existente"
|
msgstr "Duplicar um currículo existente"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Editar"
|
msgstr "Editar"
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr "Efeitos"
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr "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"
|
msgid "Enable 2FA"
|
||||||
msgstr "Ativar 2FA"
|
msgstr "Ativar 2FA"
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr "Digite a senha de uso único fornecida pelo seu aplicativo autenticador
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr "Digite seu endereço de e-mail e enviaremos um link para redefinir sua senha, se a conta existir."
|
msgstr "Digite seu endereço de e-mail e enviaremos um link para redefinir sua senha, se a conta existir."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr "Erro {statusCode}"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr "Erros"
|
msgstr "Erros"
|
||||||
@ -544,6 +576,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."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr "Exportar"
|
msgstr "Exportar"
|
||||||
@ -564,19 +597,19 @@ msgstr "Finalmente,"
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr "Corrigir ortografia e gramática"
|
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"
|
msgid "Font Family"
|
||||||
msgstr "Família de fontes"
|
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"
|
msgid "Font Size"
|
||||||
msgstr "Tamanho da fonte"
|
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"
|
msgid "Font Subset"
|
||||||
msgstr "Subconjunto de Fontes"
|
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"
|
msgid "Font Variants"
|
||||||
msgstr "Variante da Fonte"
|
msgstr "Variante da Fonte"
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr "Variante da Fonte"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "Por exemplo, informações sobre quais empresas você enviou este currículo ou os links para as descrições do trabalho podem ser anotadas aqui."
|
msgstr "Por exemplo, informações sobre quais empresas você enviou este currículo ou os links para as descrições do trabalho podem ser anotadas aqui."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Esquecer"
|
msgstr "Esquecer"
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr "Esqueceu a sua senha?"
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr "Formatar"
|
msgstr "Formatar"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr "Encontrou um bug ou tem uma ideia para um novo recurso?"
|
msgstr "Encontrou um bug ou tem uma ideia para um novo recurso?"
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr "Encontrou um bug ou tem uma ideia para um novo recurso?"
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr "Grátis para sempre"
|
msgstr "Grátis para sempre"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr "Amigável"
|
msgstr "Amigável"
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr "Dê um novo nome ao seu currículo antigo."
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr "Ir para Dashboard"
|
msgstr "Ir para Dashboard"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr "Ir para a página inicial"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr "Google"
|
msgstr "Google"
|
||||||
@ -651,7 +688,7 @@ msgstr "Google"
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr "Escala de cinza"
|
msgstr "Escala de cinza"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr "Grid"
|
msgstr "Grid"
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr "Aqui, você pode atualizar seu perfil para customizar e personalizar sua experiência."
|
msgstr "Aqui, você pode atualizar seu perfil para customizar e personalizar sua experiência."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Oculto"
|
msgstr "Oculto"
|
||||||
@ -677,7 +714,7 @@ msgstr "Oculto"
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr "Ocultar"
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr "Ocultar ícones"
|
msgstr "Ocultar ícones"
|
||||||
|
|
||||||
@ -734,7 +771,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."
|
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."
|
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."
|
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."
|
msgstr "Nesta seção, você pode alterar sua senha e ativar/desativar a autenticação de dois fatores."
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ 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>."
|
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/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Informações"
|
msgstr "Informações"
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr "joao.silva@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Palavras-chave"
|
msgstr "Palavras-chave"
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr "Última atualização {lastUpdated}"
|
msgstr "Última atualização {lastUpdated}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Layout"
|
msgstr "Layout"
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr "Carta"
|
msgstr "Carta"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr "Nível"
|
msgstr "Nível"
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr "Claro"
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr "Tema claro ou escuro"
|
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"
|
msgid "Line Height"
|
||||||
msgstr "Altura da linha"
|
msgstr "Altura da linha"
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr "Altura da linha"
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr "LinkedIn, currículo JSON, etc."
|
msgstr "LinkedIn, currículo JSON, etc."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr "Lista"
|
msgstr "Lista"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr "Sair"
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr "Perdeu seu dispositivo?"
|
msgstr "Perdeu seu dispositivo?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr "Principal"
|
msgstr "Principal"
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr "Março de 2023"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr "Março de 2023 - Presente"
|
msgstr "Março de 2023 - Presente"
|
||||||
@ -923,7 +962,7 @@ msgstr "Março de 2023 - Presente"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Margem"
|
msgstr "Margem"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "Máximo de Tokens"
|
msgstr "Máximo de Tokens"
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr "Máximo de Tokens"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "Licença MIT"
|
msgstr "Licença MIT"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "Modelo"
|
msgstr "Modelo"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr "Nome"
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Rede"
|
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"
|
msgid "New Password"
|
||||||
msgstr "Nova Senha"
|
msgstr "Nova Senha"
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr "Observação: Esta ação tornará sua conta menos segura."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Anotações"
|
msgstr "Anotações"
|
||||||
@ -1009,16 +1049,16 @@ msgstr "OpenAI não retornou nenhuma opção para o seu texto."
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "Integração com OpenAI"
|
msgstr "Integração com OpenAI"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
msgstr "Integração OpenAI/Azure OpenAI/Ollama"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr "Chave de API da OpenAI/Ollama"
|
msgstr "Chave de API da OpenAI/Ollama"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
|
||||||
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/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"
|
msgid "Options"
|
||||||
msgstr "Opções"
|
msgstr "Opções"
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr "Organização"
|
msgstr "Organização"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "Página"
|
msgstr "Página"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr "Página {pageNumber}"
|
msgstr "Página {pageNumber}"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr "Senha"
|
msgstr "Senha"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr "PDF"
|
msgstr "PDF"
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr "Desenvolvido por <0>Simple Icons</0>"
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr "Cor Primária"
|
msgstr "Cor Primária"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr "Política de Privacidade"
|
msgstr "Política de Privacidade"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr "Profissional"
|
msgstr "Profissional"
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr "Público"
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "Editor"
|
msgstr "Editor"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr "Aponte um problema"
|
msgstr "Aponte um problema"
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr "Aponte um problema"
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr "O Reactive Resume só dá certo graças à sua comunidade vibrante. Este
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Refazer"
|
msgstr "Refazer"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Remover"
|
msgstr "Remover"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr "Remover Página"
|
msgstr "Remover Página"
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr "Reenviar link de confirmação"
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr "Redefinir"
|
msgstr "Redefinir"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr "Redefinir Layout"
|
msgstr "Redefinir Layout"
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr "Redefinir Zoom"
|
msgstr "Redefinir Zoom"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr "Currículos"
|
msgstr "Currículos"
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr "Arredondado"
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Salvar Alterações"
|
msgstr "Salvar Alterações"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "Salvar localmente"
|
msgstr "Salvar localmente"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Salvo"
|
msgstr "Salvo"
|
||||||
|
|
||||||
@ -1262,15 +1300,15 @@ msgstr "Rolar para Pan"
|
|||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr "Role para ampliar"
|
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"
|
msgid "Search for a font family"
|
||||||
msgstr "Procure uma família de fontes"
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr "Procure um subconjunto de fontes"
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr "Procure uma variante de fonte"
|
msgstr "Procure uma variante de fonte"
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr "Selecionar idioma"
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr "Protegido com autenticação em dois fatores"
|
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"
|
msgid "Security"
|
||||||
msgstr "Segurança"
|
msgstr "Segurança"
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr "Auto-hospedagem com Docker"
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr "Enviar E-mail"
|
msgstr "Enviar E-mail"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr "Envie-me uma mensagem"
|
msgstr "Envie-me uma mensagem"
|
||||||
|
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr "Configure a autenticação de dois fatores em sua conta"
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr "Compartilhamento"
|
msgstr "Compartilhamento"
|
||||||
@ -1330,7 +1369,7 @@ msgstr "Mostrar quebra de linha"
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr "Mostrar números de páginas"
|
msgstr "Mostrar números de páginas"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Barra lateral"
|
msgstr "Barra lateral"
|
||||||
|
|
||||||
@ -1408,6 +1447,7 @@ msgid "Start building your resume by giving it a name."
|
|||||||
msgstr "Comece a construir seu currículo dando um nome ao arquivo."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr "Estatísticas"
|
msgstr "Estatísticas"
|
||||||
@ -1422,17 +1462,17 @@ msgstr "Armazene seus códigos de backup de forma segura"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr "Resumo"
|
msgstr "Resumo"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr "Apoie o aplicativo doando o que puder!"
|
msgstr "Apoie o aplicativo doando o que puder!"
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr "Apoiando o Reactive Resume"
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr "Suporta formatos de página A4 e carta"
|
msgstr "Suporta formatos de página A4 e carta"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr "Mudar para Modo Escuro"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr "Alternar para Modo Claro"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr "Sistema"
|
msgstr "Sistema"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "Modelo"
|
msgstr "Modelo"
|
||||||
@ -1465,15 +1514,20 @@ msgstr "Depoimentos"
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr "Cor do texto"
|
msgstr "Cor do texto"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
msgstr "As senhas informadas não são iguais."
|
msgstr "A página que você está procurando não existe."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
|
msgstr "A solicitação é inválida."
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: 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."
|
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."
|
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/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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,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:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr "Autenticação de Dois Fatores"
|
msgstr "Autenticação de Dois Fatores"
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr "Tipo de Formação"
|
msgstr "Tipo de Formação"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr "Tipografia"
|
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"
|
msgid "Underline Links"
|
||||||
msgstr "Sublinhar links"
|
msgstr "Sublinhar links"
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr "URL"
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr "A URL deve começar com https://"
|
msgstr "A URL deve começar com https://"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr "Usar o Azure OpenAI"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr "Tema do sistema"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,7 +1714,7 @@ msgstr "Versão 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Visualizações"
|
msgstr "Visualizações"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Visível"
|
msgstr "Visível"
|
||||||
|
|
||||||
@ -1665,11 +1728,11 @@ msgstr "Verificamos seu endereço de e-mail apenas para garantir que possamos en
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr "Site"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "O que há de novo na versão mais recente"
|
msgstr "O que há de novo na versão mais recente"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr "Você não está autorizado a acessar esta página."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Você pode adicionar várias palavras-chave separando-as com vírgula ou pressionando Enter."
|
msgstr "Você pode adicionar várias palavras-chave separando-as com vírgula ou pressionando Enter."
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr "Você pode adicionar várias palavras-chave separando-as com vírgula ou
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Você também pode inserir seu nome de usuário."
|
msgstr "Você também pode inserir seu nome de usuário."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr "O senhor também pode fazer a integração com o Ollama simplesmente definindo a chave da API como `sk-1234567890abcdef` e o URL da base como o URL do Ollama, ou seja, `http://localhost:11434/v1`. O senhor também pode escolher modelos e definir o máximo de tokens de acordo com sua preferência."
|
msgstr "Você também pode integrar com o Azure OpenAI ativando a opção <0>Use o Azure OpenAI</0> e definindo a URL de Recurso para o seu recurso Azure OpenAI: <1>https://your-resource. penai.azure.com</1>. Defina o nome de implantação no campo Modelo e especifique a versão API apropriada para a sua implantação do Azure."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
msgstr "Você pode usar a API OpenAI para ajudá-lo a gerar conteúdo ou melhorar seus textos ao escrever seu currículo."
|
msgstr "Você também pode integrar com o Ollama simplesmente definindo a chave de API para<0>sk-1234567890abcdef</0> e a URL Base para a URL de Ollama, i. .<1>http://localhost:11434/v1</1>. Você também pode escolher modelos e definir o máximo de tokens como sua preferência."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
|
msgstr "Você pode fazer uso da API do OpenAI, Azure OpenAI, ou Ollama para ajudá-lo a gerar conteúdo ou melhorar sua escrita enquanto componha o seu currículo."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Você pode acompanhar o número de visualizações que seu currículo recebeu ou quantas pessoas baixaram o currículo ativando o compartilhamento público."
|
msgstr "Você pode acompanhar o número de visualizações que seu currículo recebeu ou quantas pessoas baixaram o currículo ativando o compartilhamento público."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr "Você não tem permissão para acessar esta página."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "Você tem a opção de <0>obter sua própria chave de API da OpenAI</0>. Essa chave permite que você aproveite a API como achar melhor. Se desejar desativar completamente os recursos de IA no Reactive Resume, basta remover a chave de suas configurações."
|
msgstr "Você tem a opção de <0>obter sua própria chave de API da OpenAI</0>. Essa chave permite que você aproveite a API como achar melhor. Se desejar desativar completamente os recursos de IA no Reactive Resume, basta remover a chave de suas configurações."
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr "Você recebeu um e-mail!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Sua conta e todos os seus dados foram excluídos com sucesso. Adeus!"
|
msgstr "Sua conta e todos os seus dados foram excluídos com sucesso. Adeus!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "Sua chave de API é armazenada com segurança no armazenamento local do navegador e só é utilizada ao fazer solicitações à OpenAI por meio do SDK oficial. Você pode ter certeza de que sua chave não é transmitida a nenhum servidor externo, exceto ao interagir com os serviços da OpenAI."
|
msgstr "Sua chave de API é armazenada com segurança no armazenamento local do navegador e só é utilizada ao fazer solicitações à OpenAI por meio do SDK oficial. Você pode ter certeza de que sua chave não é transmitida a nenhum servidor externo, exceto ao interagir com os serviços da OpenAI."
|
||||||
|
|
||||||
@ -1733,7 +1808,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."
|
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."
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr "Sua senha foi atualizada com sucesso."
|
msgstr "Sua senha foi atualizada com sucesso."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: pt\n"
|
"Language: pt\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:40\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Portuguese\n"
|
"Language-Team: Portuguese\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -30,27 +30,27 @@ msgstr "{templatesCount} Modelos de currículos por onde escolher"
|
|||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr "{value, plural, one {Coluna} other {Colunas}}"
|
msgstr "{value, plural, one {Coluna} other {Colunas}}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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>Eu criei o Reactive Resume principalmente sozinho durante o meu tempo livre, com muita ajuda de outros grandes contribuidores de código aberto.</0> <1>Se gosta da aplicação e deseja apoiar a mantê-la gratuita para sempre, por favor doe o que puder.</1>"
|
msgstr "<0>Eu criei o Reactive Resume principalmente sozinho durante o meu tempo livre, com muita ajuda de outros grandes contribuidores de código aberto.</0> <1>Se gosta da aplicação e deseja apoiar a mantê-la gratuita para sempre, por favor doe o que puder.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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>Tenho noção de que a aplicação não é perfeita, mas gostaria que fosse.</0> <1>Se encontrou algum problema ao criar o seu currículo ou tem uma ideia que ajudá-lo-ia a você e outros utilizadores a criar o seu currículo com mais facilidade, abra uma questão no repositório ou envie-me um e-mail.</1>"
|
msgstr "<0>Tenho noção de que a aplicação não é perfeita, mas gostaria que fosse.</0> <1>Se encontrou algum problema ao criar o seu currículo ou tem uma ideia que ajudá-lo-ia a você e outros utilizadores a criar o seu currículo com mais facilidade, abra uma questão no repositório ou envie-me um e-mail.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 "<0>Nota: </0>Ao utilizar a API da OpenAI, reconhece e aceita os <1>termos de utilização</1> e <2>a política de privacidade</2> delineados pela OpenAI. Tenha em atenção que a Reactive Resume não assume qualquer responsabilidade por qualquer utilização imprópria ou não autorizada do serviço, e quaisquer repercussões ou responsabilidades resultantes recaem exclusivamente sobre o utilizador."
|
msgstr "<0>Nota: </0>Ao utilizar a API da OpenAI, reconhece e aceita os <1>termos de utilização</1> e <2>a política de privacidade</2> delineados pela OpenAI. Tenha em atenção que a Reactive Resume não assume qualquer responsabilidade por qualquer utilização imprópria ou não autorizada do serviço, e quaisquer repercussões ou responsabilidades resultantes recaem exclusivamente sobre o utilizador."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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>"
|
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."
|
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."
|
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."
|
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."
|
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"
|
msgid "Add a custom field"
|
||||||
msgstr "Adicionar um campo personalizado"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Adicionar um novo item"
|
msgstr "Adicionar um novo item"
|
||||||
@ -117,7 +117,7 @@ msgstr "Adicionar um novo item"
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr "Adicionar uma nova secção"
|
msgstr "Adicionar uma nova secção"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr "Adicionar Nova Página"
|
msgstr "Adicionar Nova Página"
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr "Já tem uma conta?"
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr "Ocorreu um erro ao validar o ficheiro."
|
msgstr "Ocorreu um erro ao validar o ficheiro."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr "Ocorreu um erro interno no servidor."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr "Ocorreu um erro inesperado."
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr "e muitas mais..."
|
msgstr "e muitas mais..."
|
||||||
@ -191,6 +199,18 @@ msgstr "Disponível em {languagesCount} idiomas"
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr "Instituição"
|
msgstr "Instituição"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr "Versão do Azure API"
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr "URL do Azure OpenAI, nome de implantação (modelo) e versão da API são necessários ao usar o Azure OpenAI."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr "URL de Recurso do Azure OpenAI"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,7 +229,7 @@ msgstr "Código de backup"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Os códigos de backup apenas podem conter letras minúsculas ou números e devem ter exatamente 10 caracteres."
|
msgstr "Os códigos de backup apenas podem conter letras minúsculas ou números e devem ter exatamente 10 caracteres."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -246,8 +266,8 @@ msgstr "Pela comunidade, para a comunidade."
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Cancelar"
|
msgstr "Cancelar"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr "Casual"
|
msgstr "Casual"
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr "Casual"
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr "Centrar currículo"
|
msgstr "Centrar currículo"
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr "Alterar Idioma"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr "Alterar senha"
|
msgstr "Alterar senha"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr "Alterar tom"
|
msgstr "Alterar tom"
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr "Colunas"
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr "Organização"
|
msgstr "Organização"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr "Confiante"
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Continuar"
|
msgstr "Continuar"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Copiar"
|
msgstr "Copiar"
|
||||||
|
|
||||||
@ -351,7 +371,12 @@ msgstr "Crie uma agora"
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr "Criar currículo de exemplo"
|
msgstr "Criar currículo de exemplo"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||||
|
msgid "Current Password"
|
||||||
|
msgstr "Palavra-passe Atual"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr "CSS personalizado"
|
msgstr "CSS personalizado"
|
||||||
@ -386,10 +411,10 @@ msgstr "Modo escuro"
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Data"
|
msgstr "Data"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Data ou intervalo de datas"
|
msgstr "Data ou intervalo de datas"
|
||||||
@ -407,11 +432,15 @@ msgstr "Apagar"
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr "Apagar conta"
|
msgstr "Apagar conta"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr "Nome de implantação"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Descrição"
|
msgstr "Descrição"
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr "Crie currículos de uma ou várias páginas"
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr "Desativar"
|
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"
|
msgid "Disable 2FA"
|
||||||
msgstr "Desabilitar 2FA"
|
msgstr "Desabilitar 2FA"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr "Descartar"
|
msgstr "Descartar"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Documentação"
|
msgstr "Documentação"
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr "Documentação"
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr "Não tem uma conta?"
|
msgstr "Não tem uma conta?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr "Não sabe por onde começar? Consulte a documentação!"
|
msgstr "Não sabe por onde começar? Consulte a documentação!"
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr "Não sabe por onde começar? Consulte a documentação!"
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr "Não vê o seu idioma? <0>Ajude a traduzir a aplicação.</0>"
|
msgstr "Não vê o seu idioma? <0>Ajude a traduzir a aplicação.</0>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr "Faça um donativo para o Reactive Resume"
|
msgstr "Faça um donativo para o Reactive Resume"
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr "Faça um donativo para o Reactive Resume"
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr "Faça o download de uma captura JSON do seu currículo. Este arquivo pode ser usado para importar o seu currículo no futuro ou até mesmo pode ser partilhado com outras pessoas para colaboração."
|
msgstr "Faça o download de uma captura JSON do seu currículo. Este arquivo pode ser usado para importar o seu currículo no futuro ou até mesmo pode ser partilhado com outras pessoas para colaboração."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
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."
|
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/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr "Baixar PDF"
|
msgstr "Baixar PDF"
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr "Duplicar um item existente"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Duplicar um currículo existente"
|
msgstr "Duplicar um currículo existente"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Editar"
|
msgstr "Editar"
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr "Efeitos"
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr "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"
|
msgid "Enable 2FA"
|
||||||
msgstr "Habilitar 2FA"
|
msgstr "Habilitar 2FA"
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr "Introduza a palavra-passe de uso único fornecida pela sua aplicação d
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr "Introduza o seu endereço de e-mail e enviar-lhe-emos um link para redefinir a sua senha, caso a conta exista."
|
msgstr "Introduza o seu endereço de e-mail e enviar-lhe-emos um link para redefinir a sua senha, caso a conta exista."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr "Erro {statusCode}"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr "Erros"
|
msgstr "Erros"
|
||||||
@ -544,6 +576,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."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr "Exportar"
|
msgstr "Exportar"
|
||||||
@ -564,19 +597,19 @@ msgstr "Finalmente,"
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr "Corrigir ortografia e gramática"
|
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"
|
msgid "Font Family"
|
||||||
msgstr "Tipo de Letra"
|
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"
|
msgid "Font Size"
|
||||||
msgstr "Tamanho da Letra"
|
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"
|
msgid "Font Subset"
|
||||||
msgstr "Subconjunto do tipo de letra"
|
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"
|
msgid "Font Variants"
|
||||||
msgstr "Variantes da fonte"
|
msgstr "Variantes da fonte"
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr "Variantes da fonte"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "Por exemplo, informações sobre as empresas para as quais enviou este currículo ou os links para os anúncios de emprego podem ser anotadas aqui."
|
msgstr "Por exemplo, informações sobre as empresas para as quais enviou este currículo ou os links para os anúncios de emprego podem ser anotadas aqui."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Esquecer"
|
msgstr "Esquecer"
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr "Esqueceu a sua senha?"
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr "Formato"
|
msgstr "Formato"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr "Encontrou um erro ou tem uma ideia para uma nova funcionalidade?"
|
msgstr "Encontrou um erro ou tem uma ideia para uma nova funcionalidade?"
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr "Encontrou um erro ou tem uma ideia para uma nova funcionalidade?"
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr "Grátis, para sempre"
|
msgstr "Grátis, para sempre"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr "Amigável"
|
msgstr "Amigável"
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr "Dê um novo nome ao seu antigo currículo."
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr "Ir para o Dashboard"
|
msgstr "Ir para o Dashboard"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr "Ir para casa"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr "Google"
|
msgstr "Google"
|
||||||
@ -651,7 +688,7 @@ msgstr "Google"
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr "Escala de cinzas"
|
msgstr "Escala de cinzas"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr "Grelha"
|
msgstr "Grelha"
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr "Aqui, pode atualizar o seu perfil para personalizar a sua experiência."
|
msgstr "Aqui, pode atualizar o seu perfil para personalizar a sua experiência."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Oculto"
|
msgstr "Oculto"
|
||||||
@ -677,7 +714,7 @@ msgstr "Oculto"
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr "Ocultar"
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr "Ocultar ícones"
|
msgstr "Ocultar ícones"
|
||||||
|
|
||||||
@ -734,7 +771,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."
|
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."
|
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."
|
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."
|
msgstr "Nesta secção, pode alterar a sua senha e ativar/desativar a autenticação de dois fatores."
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ 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>."
|
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/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Informação"
|
msgstr "Informação"
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr "joao.silva@exemplo.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Palavras-chave"
|
msgstr "Palavras-chave"
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr "Última atualização {lastUpdated}"
|
msgstr "Última atualização {lastUpdated}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Layout"
|
msgstr "Layout"
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr "Carta"
|
msgstr "Carta"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr "Nível"
|
msgstr "Nível"
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr "Modo claro"
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr "Tema claro ou escuro"
|
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"
|
msgid "Line Height"
|
||||||
msgstr "Altura da Linha"
|
msgstr "Altura da Linha"
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr "Altura da Linha"
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr "LinkedIn, currículo JSON, etc."
|
msgstr "LinkedIn, currículo JSON, etc."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr "Lista"
|
msgstr "Lista"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr "Encerrar Sessão"
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr "Perdeu o seu dispositivo?"
|
msgstr "Perdeu o seu dispositivo?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr "Principal"
|
msgstr "Principal"
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr "Março de 2023"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr "Março de 2023 - presente"
|
msgstr "Março de 2023 - presente"
|
||||||
@ -923,7 +962,7 @@ msgstr "Março de 2023 - presente"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Margem"
|
msgstr "Margem"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "Máximo de Tokens"
|
msgstr "Máximo de Tokens"
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr "Máximo de Tokens"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "Licença MIT"
|
msgstr "Licença MIT"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "Modelo"
|
msgstr "Modelo"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr "Nome"
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Rede Social"
|
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"
|
msgid "New Password"
|
||||||
msgstr "Nova Senha"
|
msgstr "Nova Senha"
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr "Observação: isso tornará sua conta menos segura."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Notas"
|
msgstr "Notas"
|
||||||
@ -1009,16 +1049,16 @@ msgstr "OpenAI não retornou nenhuma escolha para o seu texto."
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "Integração com OpenAI"
|
msgstr "Integração com OpenAI"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
msgstr "Integração OpenAI/Azure OpenAI/Ollama"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr "Chave da API OpenAI/Ollama"
|
msgstr "Chave da API OpenAI/Ollama"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
|
||||||
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/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"
|
msgid "Options"
|
||||||
msgstr "Opções"
|
msgstr "Opções"
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr "Organização"
|
msgstr "Organização"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "Página"
|
msgstr "Página"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr "Página {pageNumber}"
|
msgstr "Página {pageNumber}"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr "Senha"
|
msgstr "Senha"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr "PDF"
|
msgstr "PDF"
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr "Desenvolvido em <0>Simple Icons</0>"
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr "Cor principal"
|
msgstr "Cor principal"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr "Política de Privacidade"
|
msgstr "Política de Privacidade"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr "Profissional"
|
msgstr "Profissional"
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr "Público"
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "Editora"
|
msgstr "Editora"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr "Reportar problema"
|
msgstr "Reportar problema"
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr "Reportar problema"
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr "O Reactive Resume prospera graças à sua comunidade vibrante. Este proj
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Refazer"
|
msgstr "Refazer"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Remover"
|
msgstr "Remover"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr "Remover página"
|
msgstr "Remover página"
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr "Reenviar link de confirmação por email"
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr "Repor"
|
msgstr "Repor"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr "Repor Layout"
|
msgstr "Repor Layout"
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr "Repor zoom"
|
msgstr "Repor zoom"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr "Currículos"
|
msgstr "Currículos"
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr "Arredondado"
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Salvar Alterações"
|
msgstr "Salvar Alterações"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "Guardar Localmente"
|
msgstr "Guardar Localmente"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Guardado"
|
msgstr "Guardado"
|
||||||
|
|
||||||
@ -1262,15 +1300,15 @@ msgstr "Desloque-se para a panorâmica"
|
|||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr "Desloque-se para o 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"
|
msgid "Search for a font family"
|
||||||
msgstr "Procure por uma família de fontes"
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr "Procure por um subconjunto de fontes"
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr "Procure por uma variante de fonte"
|
msgstr "Procure por uma variante de fonte"
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr "Pesquise por uma língua"
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr "Proteja-se com a autenticação de dois factores"
|
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"
|
msgid "Security"
|
||||||
msgstr "Segurança"
|
msgstr "Segurança"
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr "Faça auto-hospedagem com o Docker"
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr "Enviar e-mail"
|
msgstr "Enviar e-mail"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr "Envie-me uma mensagem"
|
msgstr "Envie-me uma mensagem"
|
||||||
|
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr "Configurar a autenticação de dois fatores na sua conta"
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr "Partilhar"
|
msgstr "Partilhar"
|
||||||
@ -1330,7 +1369,7 @@ msgstr "Mostrar linha de quebra"
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr "Mostrar números de página"
|
msgstr "Mostrar números de página"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Barra lateral"
|
msgstr "Barra lateral"
|
||||||
|
|
||||||
@ -1408,6 +1447,7 @@ msgid "Start building your resume by giving it a name."
|
|||||||
msgstr "Comece a criar seu currículo dando um nome a ele."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr "Estatísticas"
|
msgstr "Estatísticas"
|
||||||
@ -1422,17 +1462,17 @@ msgstr "Guarde os seus códigos de backup de forma segura"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr "Resumo"
|
msgstr "Resumo"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr "Apoie o aplicativo doando o que puder!"
|
msgstr "Apoie o aplicativo doando o que puder!"
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr "Apoiar Reactive Resume"
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr "Suporta formatos de página A4/Carta"
|
msgstr "Suporta formatos de página A4/Carta"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr "Mudar para Modo Escuro"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr "Alternar para Modo Claro"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr "Sistema"
|
msgstr "Sistema"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "Modelo"
|
msgstr "Modelo"
|
||||||
@ -1465,15 +1514,20 @@ msgstr "Testemunhos"
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr "Cor do texto"
|
msgstr "Cor do texto"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
msgstr "As senhas que inseriu não são iguais."
|
msgstr "A página que você está procurando não existe."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
|
msgstr "A solicitação era inválida."
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: 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."
|
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."
|
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/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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,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:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr "Autenticação de dois fatores"
|
msgstr "Autenticação de dois fatores"
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr "Tipo de graduação"
|
msgstr "Tipo de graduação"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr "Fontes"
|
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"
|
msgid "Underline Links"
|
||||||
msgstr "Sublinhar Links"
|
msgstr "Sublinhar Links"
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr "URL"
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr "URL deve começar com https://"
|
msgstr "URL deve começar com https://"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr "Usar o Azure OpenAI"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr "Tema do sistema"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,7 +1714,7 @@ msgstr "Versão 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Visualizações"
|
msgstr "Visualizações"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Visível"
|
msgstr "Visível"
|
||||||
|
|
||||||
@ -1665,11 +1728,11 @@ msgstr "Verificamos seu endereço de e-mail apenas para garantir que possamos en
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr "Site"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "O que há de novo na versão mais recente"
|
msgstr "O que há de novo na versão mais recente"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr "Você não está autorizado a acessar esta página."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Você pode adicionar várias palavras-chave separando-as com vírgula ou pressionando Enter."
|
msgstr "Você pode adicionar várias palavras-chave separando-as com vírgula ou pressionando Enter."
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr "Você pode adicionar várias palavras-chave separando-as com vírgula ou
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Você também pode inserir seu nome de usuário."
|
msgstr "Você também pode inserir seu nome de usuário."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr "Também pode integrar com Ollama simplesmente definindo a chave API para `sk-1234567890abcdef` e o URL de base para o seu URL Ollama, ou seja, `http://localhost:11434/v1`. Também pode escolher modelos e definir o máximo de tokens de acordo com a sua preferência."
|
msgstr "Você também pode integrar com o Azure OpenAI ativando a opção <0>Use o Azure OpenAI</0> e definindo a URL de Recurso para o seu recurso Azure OpenAI: <1>https://your-resource. penai.azure.com</1>. Defina o nome de implantação no campo Modelo e especifique a versão API apropriada para a sua implantação do Azure."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
msgstr "Você pode usar a API da OpenAI para ajudá-lo a gerar conteúdo ou melhorar sua redação ao redigir seu currículo."
|
msgstr "Você também pode integrar com o Ollama simplesmente definindo a chave de API para<0>sk-1234567890abcdef</0> e a URL Base para a URL de Ollama, i. .<1>http://localhost:11434/v1</1>. Você também pode escolher modelos e definir o máximo de tokens como sua preferência."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
|
msgstr "Você pode fazer uso da API do OpenAI, Azure OpenAI, ou Ollama para ajudá-lo a gerar conteúdo ou melhorar sua escrita enquanto componha o seu currículo."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Você pode acompanhar o número de visualizações que seu currículo recebeu ou quantas pessoas baixaram o currículo ativando o compartilhamento público."
|
msgstr "Você pode acompanhar o número de visualizações que seu currículo recebeu ou quantas pessoas baixaram o currículo ativando o compartilhamento público."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr "Você não tem permissão para acessar esta página."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "Você tem a opção de <0>obter sua própria chave de API na OpenAI</0>. Essa chave permite que você use a API conforme achar adequado. Alternativamente, se desejar desativar completamente os recursos de IA no Reactive Resume, você pode simplesmente remover a chave de suas configurações."
|
msgstr "Você tem a opção de <0>obter sua própria chave de API na OpenAI</0>. Essa chave permite que você use a API conforme achar adequado. Alternativamente, se desejar desativar completamente os recursos de IA no Reactive Resume, você pode simplesmente remover a chave de suas configurações."
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr "Você recebeu um email!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Sua conta e todos os seus dados foram excluídos com sucesso. Até outra hora!"
|
msgstr "Sua conta e todos os seus dados foram excluídos com sucesso. Até outra hora!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "Sua chave API é armazenada com segurança no armazenamento local do navegador e só é utilizada ao fazer solicitações à OpenAI por meio de seu SDK oficial. Fique ciente de que sua chave não será transmitida a nenhum servidor externo, exceto ao interagir com os serviços da OpenAI."
|
msgstr "Sua chave API é armazenada com segurança no armazenamento local do navegador e só é utilizada ao fazer solicitações à OpenAI por meio de seu SDK oficial. Fique ciente de que sua chave não será transmitida a nenhum servidor externo, exceto ao interagir com os serviços da OpenAI."
|
||||||
|
|
||||||
@ -1733,7 +1808,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."
|
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."
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr "Sua senha foi atualizada com sucesso."
|
msgstr "Sua senha foi atualizada com sucesso."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: ro\n"
|
"Language: ro\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:40\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Romanian\n"
|
"Language-Team: Romanian\n"
|
||||||
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);\n"
|
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);\n"
|
||||||
@ -30,27 +30,27 @@ msgstr "{templatesCount} șabloane de CV din care să alegeți"
|
|||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr "{value, plural, one {Coloana} other {Coloane}}"
|
msgstr "{value, plural, one {Coloana} other {Coloane}}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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>Am construit Reactive Resume în mare parte de unul singur, în timpul meu liber, cu mult ajutor din partea altor mari colaboratori open-source. /0><1>Dacă vă place aplicația și doriți să susțineți să o păstrați gratuit pentru totdeauna, vă rugăm să donați orice vă puteți permite să oferiți.</1>"
|
msgstr "<0>Am construit Reactive Resume în mare parte de unul singur, în timpul meu liber, cu mult ajutor din partea altor mari colaboratori open-source. /0><1>Dacă vă place aplicația și doriți să susțineți să o păstrați gratuit pentru totdeauna, vă rugăm să donați orice vă puteți permite să oferiți.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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>Sunt sigur că aplicația nu este perfectă, dar aș vrea să fie. /0><1>Dacă v-ați confruntat cu probleme în timp ce creați reluarea, sau aveți o idee care v-ar ajuta pe voi și pe alți utilizatori să vă creați mai ușor reluarea, plasează o problemă în depozit sau trimite-mi un e-mail despre ea. /1>"
|
msgstr "<0>Sunt sigur că aplicația nu este perfectă, dar aș vrea să fie. /0><1>Dacă v-ați confruntat cu probleme în timp ce creați reluarea, sau aveți o idee care v-ar ajuta pe voi și pe alți utilizatori să vă creați mai ușor reluarea, plasează o problemă în depozit sau trimite-mi un e-mail despre ea. /1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 "<0>Notă: </0>Utilizând API-ul OpenAI, confirmaţi şi acceptaţi termenii de utilizare </1> şi <2>politica de confidenţialitate</2> subliniaţi de OpenAI. Vă rugăm să reţineţi că Resume Reactiv nu are nici o responsabilitate pentru utilizarea incorectă sau neautorizată a serviciului, şi orice repercusiuni sau pasive care decurg exclusiv din acestea sunt suportate de utilizator."
|
msgstr "<0>Notă: </0>Utilizând API-ul OpenAI, confirmaţi şi acceptaţi termenii de utilizare </1> şi <2>politica de confidenţialitate</2> subliniaţi de OpenAI. Vă rugăm să reţineţi că Resume Reactiv nu are nici o responsabilitate pentru utilizarea incorectă sau neautorizată a serviciului, şi orice repercusiuni sau pasive care decurg exclusiv din acestea sunt suportate de utilizator."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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>"
|
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."
|
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."
|
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."
|
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."
|
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"
|
msgid "Add a custom field"
|
||||||
msgstr "Adăugarea unui câmp particularizat"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Adaugă un element nou"
|
msgstr "Adaugă un element nou"
|
||||||
@ -117,7 +117,7 @@ msgstr "Adaugă un element nou"
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr "Adaugă o nouă secţiune"
|
msgstr "Adaugă o nouă secţiune"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr "Adaugă pagină nouă"
|
msgstr "Adaugă pagină nouă"
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr "Aveți deja un cont?"
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr "A apărut o eroare în timpul validării fișierului."
|
msgstr "A apărut o eroare în timpul validării fișierului."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr "A apărut o eroare internă de server."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr "A apărut o eroare neașteptată."
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr "si multe altele..."
|
msgstr "si multe altele..."
|
||||||
@ -191,6 +199,18 @@ msgstr "Disponibil în {languagesCount} limbi"
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr "Atribuire"
|
msgstr "Atribuire"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr "Versiune API Azure"
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr "Azure OpenAI Base URL, deployment name (model), și versiunea API sunt necesare atunci când utilizați Azure OpenAI."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr "URL resurse OpenAI Azure"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,7 +229,7 @@ msgstr "Cod de rezervă"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Codurile de rezervă pot conține doar litere mici sau cifre și trebuie să aibă exact 10 caractere."
|
msgstr "Codurile de rezervă pot conține doar litere mici sau cifre și trebuie să aibă exact 10 caractere."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "URL de bază"
|
msgstr "URL de bază"
|
||||||
|
|
||||||
@ -246,8 +266,8 @@ msgstr "Construit de comunitate, pentru comunitate."
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Anulează"
|
msgstr "Anulează"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr "Cazual"
|
msgstr "Cazual"
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr "Cazual"
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr "Centrează Artboard"
|
msgstr "Centrează Artboard"
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr "Schimbă limba"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr "Schimbare parolă"
|
msgstr "Schimbare parolă"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr "Schimbați Tonul"
|
msgstr "Schimbați Tonul"
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr "Coloane"
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr "Companie"
|
msgstr "Companie"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr "Confidențialitate"
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Continuă"
|
msgstr "Continuă"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Copiază"
|
msgstr "Copiază"
|
||||||
|
|
||||||
@ -351,7 +371,12 @@ msgstr "Creați unul acum"
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr "Creați un exemplu de CV"
|
msgstr "Creați un exemplu de CV"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||||
|
msgid "Current Password"
|
||||||
|
msgstr "Parola curentă"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr "CSS personalizat"
|
msgstr "CSS personalizat"
|
||||||
@ -386,10 +411,10 @@ msgstr "Întunecat"
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Dată"
|
msgstr "Dată"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Interval dată sau dată"
|
msgstr "Interval dată sau dată"
|
||||||
@ -407,11 +432,15 @@ msgstr "Șterge"
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr "Șterge Contul"
|
msgstr "Șterge Contul"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr "Nume de desfășurare"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Descriere"
|
msgstr "Descriere"
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr "Proiectați CV-uri cu o singură sau mai multe pagini"
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr "Dezactivat"
|
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"
|
msgid "Disable 2FA"
|
||||||
msgstr "Dezactivează 2FA"
|
msgstr "Dezactivează 2FA"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr "Renunțați"
|
msgstr "Renunțați"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Documentație"
|
msgstr "Documentație"
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr "Documentație"
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr "Nu ai un cont?"
|
msgstr "Nu ai un cont?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr "Nu știi de unde să începi? Atacă documentele!"
|
msgstr "Nu știi de unde să începi? Atacă documentele!"
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr "Nu știi de unde să începi? Atacă documentele!"
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr "Nu vezi limba ta? <0>Ajută-ne să traducem aplicația.</0>"
|
msgstr "Nu vezi limba ta? <0>Ajută-ne să traducem aplicația.</0>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr "Donează pentru Reactivare Reluare"
|
msgstr "Donează pentru Reactivare Reluare"
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr "Donează pentru Reactivare Reluare"
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr "Descărcați un instantaneu JSON al CV-ului dvs. Acest fișier poate fi folosit pentru a vă importa CV-ul în viitor sau poate fi chiar partajat cu alții pentru a colabora."
|
msgstr "Descărcați un instantaneu JSON al CV-ului dvs. Acest fișier poate fi folosit pentru a vă importa CV-ul în viitor sau poate fi chiar partajat cu alții pentru a colabora."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
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ă."
|
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/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr "Descarcă PDF-ul"
|
msgstr "Descarcă PDF-ul"
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr "Duplicați un element existent"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Duplicați un CV existent"
|
msgstr "Duplicați un CV existent"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Editare"
|
msgstr "Editare"
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr "Efecte"
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr "E-mail"
|
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"
|
msgid "Enable 2FA"
|
||||||
msgstr "Activează 2FA"
|
msgstr "Activează 2FA"
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr "Introduceți mai jos parola unică furnizată de aplicația dvs. de aute
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr "Introdu adresa ta de e-mail și îți vom trimite un link pentru a-ți reseta parola dacă contul există."
|
msgstr "Introdu adresa ta de e-mail și îți vom trimite un link pentru a-ți reseta parola dacă contul există."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr "{statusCode} erori"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr "Erori"
|
msgstr "Erori"
|
||||||
@ -544,6 +576,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."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr "Exportă"
|
msgstr "Exportă"
|
||||||
@ -564,19 +597,19 @@ msgstr "În Sfârșit"
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr "Remediați ortografie și gramatică"
|
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"
|
msgid "Font Family"
|
||||||
msgstr "Familia de Fonturi"
|
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"
|
msgid "Font Size"
|
||||||
msgstr "Dimensiunea fontului"
|
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"
|
msgid "Font Subset"
|
||||||
msgstr "Subset de fonturi"
|
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"
|
msgid "Font Variants"
|
||||||
msgstr "Variante de font"
|
msgstr "Variante de font"
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr "Variante de font"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "De exemplu, informații cu privire la companiile cărora le-ați trimis acest CV sau link-urile către fișele posturilor pot fi notate aici."
|
msgstr "De exemplu, informații cu privire la companiile cărora le-ați trimis acest CV sau link-urile către fișele posturilor pot fi notate aici."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Uită"
|
msgstr "Uită"
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr "V-ați uitat parola?"
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr "Format"
|
msgstr "Format"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr "Ați găsit o eroare sau aveți o idee pentru o funcție nouă?"
|
msgstr "Ați găsit o eroare sau aveți o idee pentru o funcție nouă?"
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr "Ați găsit o eroare sau aveți o idee pentru o funcție nouă?"
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr "Gratuit pentru totdeauna"
|
msgstr "Gratuit pentru totdeauna"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr "Prietenos"
|
msgstr "Prietenos"
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr "Dă un nume reluat vechi."
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr "Du-te la tabloul de bord"
|
msgstr "Du-te la tabloul de bord"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr "Mergi la casă"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr "Google"
|
msgstr "Google"
|
||||||
@ -651,7 +688,7 @@ msgstr "Google"
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr "Grayscale"
|
msgstr "Grayscale"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr "Grilă"
|
msgstr "Grilă"
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr "Aici, vă puteți actualiza profilul pentru a vă personaliza experiența."
|
msgstr "Aici, vă puteți actualiza profilul pentru a vă personaliza experiența."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Ascuns"
|
msgstr "Ascuns"
|
||||||
@ -677,7 +714,7 @@ msgstr "Ascuns"
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr "Ascunde"
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr "Ascunde pictogramele"
|
msgstr "Ascunde pictogramele"
|
||||||
|
|
||||||
@ -734,7 +771,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."
|
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."
|
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."
|
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."
|
msgstr "În această secțiune, puteți schimba parola și activa/dezactiva autentificarea cu doi factori."
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ 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>."
|
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/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Informație"
|
msgstr "Informație"
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr "john.doe@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Cuvinte cheie"
|
msgstr "Cuvinte cheie"
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr "Ultima actualizare {lastUpdated}"
|
msgstr "Ultima actualizare {lastUpdated}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Aspect"
|
msgstr "Aspect"
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr "Scrisoare"
|
msgstr "Scrisoare"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr "Nivel"
|
msgstr "Nivel"
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr "Deschisă"
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr "Temă deschisă sau întunecată"
|
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"
|
msgid "Line Height"
|
||||||
msgstr "Înălțimea liniei"
|
msgstr "Înălțimea liniei"
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr "Înălțimea liniei"
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr "LinkedIn, Reluare JSON etc."
|
msgstr "LinkedIn, Reluare JSON etc."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr "Listă"
|
msgstr "Listă"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr "Deconectare"
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr "Ți-ai pierdut dispozitivul?"
|
msgstr "Ți-ai pierdut dispozitivul?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr "Principal"
|
msgstr "Principal"
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr "Martie 2023"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr "Martie 2023 - Prezent"
|
msgstr "Martie 2023 - Prezent"
|
||||||
@ -923,7 +962,7 @@ msgstr "Martie 2023 - Prezent"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Margine"
|
msgstr "Margine"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "Jetoane maxime"
|
msgstr "Jetoane maxime"
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr "Jetoane maxime"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "Licență MIT"
|
msgstr "Licență MIT"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "Model"
|
msgstr "Model"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr "Nume"
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Rețea"
|
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"
|
msgid "New Password"
|
||||||
msgstr "Parola Nouă"
|
msgstr "Parola Nouă"
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr "Notă: acest lucru va face contul dumneavoastră mai puțin sigur."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Notițe"
|
msgstr "Notițe"
|
||||||
@ -1009,16 +1049,16 @@ msgstr "OpenAI nu a returnat nicio alegere pentru textul dvs."
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "Integrare OpenAI"
|
msgstr "Integrare OpenAI"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
msgstr "Integrarea OpenAI/Azure OpenAI/Ollama"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr "Cheie API OpenAI/Ollama"
|
msgstr "Cheie API OpenAI/Ollama"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
|
||||||
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/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"
|
msgid "Options"
|
||||||
msgstr "Opțiuni"
|
msgstr "Opțiuni"
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr "Organizație"
|
msgstr "Organizație"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "Pagină"
|
msgstr "Pagină"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr "Pagina {pageNumber}"
|
msgstr "Pagina {pageNumber}"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr "Parolă"
|
msgstr "Parolă"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr "PDF"
|
msgstr "PDF"
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr "Oferit de <0>Icons-ul simplu</0>"
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr "Culoare primară"
|
msgstr "Culoare primară"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr "Politica de confidenţialitate"
|
msgstr "Politica de confidenţialitate"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr "Profesional"
|
msgstr "Profesional"
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr "Public"
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "Editor"
|
msgstr "Editor"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr "Ridicați o problemă"
|
msgstr "Ridicați o problemă"
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr "Ridicați o problemă"
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr "Reactiv Resume prosperă datorită comunității sale dinamice. Acest pr
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Reface"
|
msgstr "Reface"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Elimină"
|
msgstr "Elimină"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr "Elimină pagina"
|
msgstr "Elimină pagina"
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr "Retrimite link-ul de confirmare a e-mailului"
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr "Resetează"
|
msgstr "Resetează"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr "Resetează Layout"
|
msgstr "Resetează Layout"
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr "Resetați zoomul"
|
msgstr "Resetați zoomul"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr "CV-uri"
|
msgstr "CV-uri"
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr "Rotunjit"
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Salvează Modificările"
|
msgstr "Salvează Modificările"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "Salvați la nivel local"
|
msgstr "Salvați la nivel local"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Salvat"
|
msgstr "Salvat"
|
||||||
|
|
||||||
@ -1262,15 +1300,15 @@ msgstr "Derulați la Pan"
|
|||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr "Derulați pentru a mări"
|
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"
|
msgid "Search for a font family"
|
||||||
msgstr "Căutați o familie de fonturi"
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr "Căutați un subset de fonturi"
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr "Căutați o variantă de font"
|
msgstr "Căutați o variantă de font"
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr "Căutați o limbă"
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr "Securizează cu autentificarea doi factori"
|
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"
|
msgid "Security"
|
||||||
msgstr "Securitate"
|
msgstr "Securitate"
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr "Self-host cu Docker"
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr "Trimite email"
|
msgstr "Trimite email"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr "Trimite-mi un mesaj"
|
msgstr "Trimite-mi un mesaj"
|
||||||
|
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr "Configurați autentificarea cu doi factori pentru contul dvs"
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr "Partajarea"
|
msgstr "Partajarea"
|
||||||
@ -1330,7 +1369,7 @@ msgstr "Arată linia de întrerupere"
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr "Arată numerele de pagină"
|
msgstr "Arată numerele de pagină"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Bară laterală"
|
msgstr "Bară laterală"
|
||||||
|
|
||||||
@ -1408,6 +1447,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."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr "Statistici"
|
msgstr "Statistici"
|
||||||
@ -1422,17 +1462,17 @@ msgstr "Stocați codurile de rezervă în siguranță"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr "Sumar"
|
msgstr "Sumar"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr "Sprijină aplicația donând cât poți!"
|
msgstr "Sprijină aplicația donând cât poți!"
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr "Continuare suport pentru reactivare"
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr "Suportă formatele paginii A4/Scrisoarea"
|
msgstr "Suportă formatele paginii A4/Scrisoarea"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr "Comută la Modul Întunecat"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr "Comutați la Modul Lumină"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr "Sistem"
|
msgstr "Sistem"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "Șablon"
|
msgstr "Șablon"
|
||||||
@ -1465,15 +1514,20 @@ msgstr "Mărturii"
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr "Culoare text"
|
msgstr "Culoare text"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
msgstr "Parolele introduse nu coincid."
|
msgstr "Pagina pe care o cauţi nu există."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
|
msgstr "Cererea a fost invalidă."
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: 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."
|
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."
|
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/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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,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:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr "Autentificare în doi pași"
|
msgstr "Autentificare în doi pași"
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr "Tipul studiului"
|
msgstr "Tipul studiului"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr "Tipografie"
|
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"
|
msgid "Underline Links"
|
||||||
msgstr "Subliniază link-urile"
|
msgstr "Subliniază link-urile"
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr "URL"
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr "Adresa URL trebuie să înceapă cu https://"
|
msgstr "Adresa URL trebuie să înceapă cu https://"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr "Folosește Azure OpenAI"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr "Folosește tema sistemului"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,7 +1714,7 @@ msgstr "Versiunea 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Vizualizări"
|
msgstr "Vizualizări"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Vizibil"
|
msgstr "Vizibil"
|
||||||
|
|
||||||
@ -1665,11 +1728,11 @@ msgstr "Vă verificăm adresa de e-mail numai pentru a ne asigura că vă putem
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr "Website"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Ce este nou în cea mai recentă versiune"
|
msgstr "Ce este nou în cea mai recentă versiune"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr "Nu sunteți autorizat să accesați această pagină."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Puteți adăuga mai multe cuvinte cheie separându-le cu o virgulă sau apăsând enter."
|
msgstr "Puteți adăuga mai multe cuvinte cheie separându-le cu o virgulă sau apăsând enter."
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr "Puteți adăuga mai multe cuvinte cheie separându-le cu o virgulă sau
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Poți, de asemenea, să introduci numele de utilizator."
|
msgstr "Poți, de asemenea, să introduci numele de utilizator."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr "De asemenea, vă puteți integra cu Ollama prin simpla setare a cheii API la `sk-1234567890abcdef` și a URL-ului de bază la URL-ul Ollama, adică `http://localhost:11434/v1`. De asemenea, puteți alege modelele și puteți seta numărul maxim de jetoane în funcție de preferințele dvs."
|
msgstr "Poți de asemenea să integrezi cu Azure OpenAI prin activarea casetei de selectare Azure OpenAI</0> și setarea URL-ului de resurse pentru resursa OpenAI Azure: <1>https://your-resource. penai.azure.com</1>. Setați numele de implementare în câmpul Model și specificați versiunea API adecvată pentru implementarea Azore."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
msgstr "Puteți folosi API-ul OpenAI pentru a vă ajuta să generați conținut sau să vă îmbunătățiți scrisul în timp ce vă compuneți CV-ul."
|
msgstr "De asemenea, puteți integra cu Ollama pur și simplu setând API key la<0>sk-1234567890abcdef</0> și URL-ul de bază la Ollama URL, i. .<1>http://localhost:11434/v1</1>. Poți, de asemenea, alege modele și seta token-urile maxime conform preferinței tale."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
|
msgstr "Puteți utiliza OpenAI API, Azure OpenAI sau Ollama pentru a vă ajuta să generați conținut sau să vă îmbunătățiți scrisul în timp ce compuneți reluarea."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Puteți urmări numărul de vizualizări pe care le-a primit CV-ul dvs. sau câte persoane au descărcat CV-ul activând partajarea publică."
|
msgstr "Puteți urmări numărul de vizualizări pe care le-a primit CV-ul dvs. sau câte persoane au descărcat CV-ul activând partajarea publică."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr "Nu aveţi permisiunea de a accesa această pagină."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "Aveți opțiunea de a vă obține propria cheie API OpenAI. Această cheie vă permite să utilizați API-ul după cum doriți. Alternativ, dacă doriţi să dezactivaţi caracteristicile AI în Reactiv Resume complet, puteţi pur şi simplu elimina cheia din setări."
|
msgstr "Aveți opțiunea de a vă obține propria cheie API OpenAI. Această cheie vă permite să utilizați API-ul după cum doriți. Alternativ, dacă doriţi să dezactivaţi caracteristicile AI în Reactiv Resume complet, puteţi pur şi simplu elimina cheia din setări."
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr "Ai primit e-mail!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Contul și toate datele dvs. au fost șterse cu succes. La revedere!"
|
msgstr "Contul și toate datele dvs. au fost șterse cu succes. La revedere!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "API-ul dvs. este stocat în siguranță în spațiul de stocare local al browser-ului și este utilizat numai atunci când faceți cereri către OpenAI prin intermediul SDK-ului lor oficial. Asigurați-vă că cheia dvs. nu este transmisă către niciun server extern cu excepția cazului în care interacționați cu serviciile OpenAI."
|
msgstr "API-ul dvs. este stocat în siguranță în spațiul de stocare local al browser-ului și este utilizat numai atunci când faceți cereri către OpenAI prin intermediul SDK-ului lor oficial. Asigurați-vă că cheia dvs. nu este transmisă către niciun server extern cu excepția cazului în care interacționați cu serviciile OpenAI."
|
||||||
|
|
||||||
@ -1733,7 +1808,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."
|
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."
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr "Parola dumneavoastră a fost actualizată cu succes."
|
msgstr "Parola dumneavoastră a fost actualizată cu succes."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: ru\n"
|
"Language: ru\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:40\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Russian\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"
|
"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"
|
||||||
@ -24,33 +24,33 @@ msgstr "Вы успешно включили двухфакторную ауте
|
|||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:57
|
#: apps/client/src/pages/home/sections/features/index.tsx:57
|
||||||
msgid "{templatesCount} resume templates to choose from"
|
msgid "{templatesCount} resume templates to choose from"
|
||||||
msgstr "{templatesCount} шаблоны резюме на выбор"
|
msgstr "{templatesCount} шаблонов резюме на выбор"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:142
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:142
|
||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr "{value, plural, one {Столбец} few {Столбцов} many {Столбцов} other {Столбцы}}"
|
msgstr "{value, plural, one {Столбец} few {Столбцов} many {Столбцов} other {Столбцы}}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 "<0>Примечание:</0> Используя API OpenAI, вы подтверждаете и принимаете <1>условия использования.</1> и <2>политику конфиденциальности</2> изложенные OpenAI. Обратите внимание, что Reactive Resume не несет ответственности за любое ненадлежащее или несанкционированное использование услуги, и любые возникающие в результате последствия или ответственность возлагаются исключительно на пользователя."
|
msgstr "<0>Примечание:</0> Используя API OpenAI, вы подтверждаете и принимаете <1>условия использования.</1> и <2>политику конфиденциальности</2> изложенные OpenAI. Обратите внимание, что Reactive Resume не несет ответственности за любое ненадлежащее или несанкционированное использование услуги, и любые возникающие в результате последствия или ответственность возлагаются исключительно на пользователя."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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>"
|
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."
|
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||||
msgstr "<0>Двухфакторная аутентификация в настоящее время отключена.</0> Вы можете включить его, добавив приложение для аутентификации в свою учетную запись."
|
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."
|
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||||
msgstr "<0>Двухфакторная аутентификация включена.</0> Вам будет предложено ввести код каждый раз при входе в систему."
|
msgstr "<0>Двухфакторная аутентификация включена.</0> Вам будет предложено ввести код каждый раз при входе в систему."
|
||||||
|
|
||||||
@ -102,8 +102,8 @@ msgstr "Аккаунт"
|
|||||||
msgid "Add a custom field"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Добавить новый элемент"
|
msgstr "Добавить новый элемент"
|
||||||
@ -117,7 +117,7 @@ msgstr "Добавить новый элемент"
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr "Добавить новый раздел"
|
msgstr "Добавить новый раздел"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr "Добавить новую страницу"
|
msgstr "Добавить новую страницу"
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr "Уже есть аккаунт?"
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr "Произошла ошибка при загрузке файла."
|
msgstr "Произошла ошибка при загрузке файла."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr "Произошла внутренняя ошибка сервера."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr "Произошла непредвиденная ошибка."
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr "и многое другое..."
|
msgstr "и многое другое..."
|
||||||
@ -191,6 +199,18 @@ msgstr "Доступно на {languagesCount} языках"
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr "Награжден"
|
msgstr "Награжден"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr "Версия Azure API"
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr "Azure OpenAI Base URL, название установки (модель) и версия API необходимы при использовании Azure OpenAI."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr "URL ресурса OpenAI Azure"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,7 +229,7 @@ msgstr "Резервный код"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Резервные коды могут содержать только строчные буквы или цифры и должны состоять ровно из 10 символов."
|
msgstr "Резервные коды могут содержать только строчные буквы или цифры и должны состоять ровно из 10 символов."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "Базовый URL"
|
msgstr "Базовый URL"
|
||||||
|
|
||||||
@ -246,8 +266,8 @@ msgstr "Продукт сообщества для сообщества."
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Отмена"
|
msgstr "Отмена"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr "Простой"
|
msgstr "Простой"
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr "Простой"
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr "Центрировать артбоард"
|
msgstr "Центрировать артбоард"
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr "Изменить язык"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr "Изменить пароль"
|
msgstr "Изменить пароль"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr "Изменить тон"
|
msgstr "Изменить тон"
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr "Столбцы"
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr "Компания"
|
msgstr "Компания"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr "Надёжный"
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Продолжить"
|
msgstr "Продолжить"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Скопировать"
|
msgstr "Скопировать"
|
||||||
|
|
||||||
@ -351,7 +371,12 @@ msgstr "Создать сейчас"
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr "Создать Образец Резюме"
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr "Пользовательский CSS"
|
msgstr "Пользовательский CSS"
|
||||||
@ -386,10 +411,10 @@ msgstr "Темная"
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Дата"
|
msgstr "Дата"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Дата или Диапазон Дат"
|
msgstr "Дата или Диапазон Дат"
|
||||||
@ -407,11 +432,15 @@ msgstr "Удалить"
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr "Удалить Аккаунт"
|
msgstr "Удалить Аккаунт"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr "Название развертывания"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Описание"
|
msgstr "Описание"
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr "Дизайн одностраничных/многостраничных
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr "Отключить"
|
msgstr "Отключить"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||||
msgid "Disable 2FA"
|
msgid "Disable 2FA"
|
||||||
msgstr "Отключить 2FA"
|
msgstr "Отключить 2FA"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr "Отмена"
|
msgstr "Отмена"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Документация"
|
msgstr "Документация"
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr "Документация"
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr "Еще нет аккаунта?"
|
msgstr "Еще нет аккаунта?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr "Не знаете, с чего начать? Посмотрите документацию!"
|
msgstr "Не знаете, с чего начать? Посмотрите документацию!"
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr "Не знаете, с чего начать? Посмотрите док
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr "Нет вашего языка? <0>Помогите перевести приложение.</0>"
|
msgstr "Нет вашего языка? <0>Помогите перевести приложение.</0>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr "Пожертвовать Reactive Resume"
|
msgstr "Пожертвовать Reactive Resume"
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr "Пожертвовать Reactive Resume"
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr "Скачать снимок Вашего резюме в формате JSON. Этот файл можно использовать для импорта Вашего резюме в будущем или даже поделиться им с другими для совместной работы."
|
msgstr "Скачать снимок Вашего резюме в формате JSON. Этот файл можно использовать для импорта Вашего резюме в будущем или даже поделиться им с другими для совместной работы."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
msgstr "Скачать PDF-файл Вашего резюме. Этот файл можно использовать для печати резюме, отправки его рекрутерам или загрузки на сайты по поиску работы."
|
msgstr "Скачать PDF-файл Вашего резюме. Этот файл можно использовать для печати резюме, отправки его рекрутерам или загрузки на сайты по поиску работы."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr "Скачать PDF"
|
msgstr "Скачать PDF"
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr "Дублировать существующий элемент"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Дублировать существующее резюме"
|
msgstr "Дублировать существующее резюме"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Изменить"
|
msgstr "Изменить"
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr "Эффекты"
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr "Эл. почта"
|
msgstr "Эл. почта"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||||
msgid "Enable 2FA"
|
msgid "Enable 2FA"
|
||||||
msgstr "Включить 2FA"
|
msgstr "Включить 2FA"
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr "Введите ниже одноразовый пароль из ваш
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr "Введите свой адрес эл. почты, и мы пришлем вам ссылку для сброса пароля, если такой аккаунт существует."
|
msgstr "Введите свой адрес эл. почты, и мы пришлем вам ссылку для сброса пароля, если такой аккаунт существует."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr "Ошибка {statusCode}"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr "Ошибки"
|
msgstr "Ошибки"
|
||||||
@ -544,6 +576,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
|||||||
msgstr "Изучите шаблоны, доступные в Reactive Resume, и просмотрите резюме, созданные с их помощью. Они также могут послужить примерами для создания вашего следующего резюме."
|
msgstr "Изучите шаблоны, доступные в Reactive Resume, и просмотрите резюме, созданные с их помощью. Они также могут послужить примерами для создания вашего следующего резюме."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr "Экспорт"
|
msgstr "Экспорт"
|
||||||
@ -564,19 +597,19 @@ msgstr "Наконец-то,"
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr "Исправить орфографию и грамматику"
|
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"
|
msgid "Font Family"
|
||||||
msgstr "Семейство шрифтов"
|
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"
|
msgid "Font Size"
|
||||||
msgstr "Размер шрифта"
|
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"
|
msgid "Font Subset"
|
||||||
msgstr "Подгруппа шрифтов"
|
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"
|
msgid "Font Variants"
|
||||||
msgstr "Вариант шрифта"
|
msgstr "Вариант шрифта"
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr "Вариант шрифта"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "Например, здесь можно записать информацию о том, в какие компании вы отправили это резюме, или ссылки на описания вакансий."
|
msgstr "Например, здесь можно записать информацию о том, в какие компании вы отправили это резюме, или ссылки на описания вакансий."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Удалить"
|
msgstr "Удалить"
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr "Забыли ваш пароль?"
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr "Формат"
|
msgstr "Формат"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr "Нашли ошибку или у вас есть идея для новой функции?"
|
msgstr "Нашли ошибку или у вас есть идея для новой функции?"
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr "Нашли ошибку или у вас есть идея для нов
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr "Бесплатно, навсегда"
|
msgstr "Бесплатно, навсегда"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr "Дружелюбно"
|
msgstr "Дружелюбно"
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr "Дайте своему старому резюме новое имя."
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr "На главную"
|
msgstr "На главную"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr "Перейти на главную"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr "Google"
|
msgstr "Google"
|
||||||
@ -651,7 +688,7 @@ msgstr "Google"
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr "Монохром"
|
msgstr "Монохром"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr "Плитка"
|
msgstr "Плитка"
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr "Здесь вы можете обновить свой профиль, чтобы настроить и персонализировать свой опыт."
|
msgstr "Здесь вы можете обновить свой профиль, чтобы настроить и персонализировать свой опыт."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Скрытый"
|
msgstr "Скрытый"
|
||||||
@ -677,7 +714,7 @@ msgstr "Скрытый"
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr "Скрыть"
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr "Скрывать иконки"
|
msgstr "Скрывать иконки"
|
||||||
|
|
||||||
@ -734,7 +771,7 @@ msgstr "Улучшить написание"
|
|||||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||||
msgstr "Если вы не можете отсканировать QR-код, скопируйте эту ссылку в свое приложение-аутентификатор."
|
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."
|
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||||
msgstr "В этом разделе вы можете изменить свой пароль и включить/выключить двухфакторную аутентификацию."
|
msgstr "В этом разделе вы можете изменить свой пароль и включить/выключить двухфакторную аутентификацию."
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ msgid "In this section, you can delete your account and all the data associated
|
|||||||
msgstr "В этом разделе вы можете удалить свою учетную запись и все данные, связанные с аккаунтом, но имейте в виду, что <0>это действие необратимо</0>."
|
msgstr "В этом разделе вы можете удалить свою учетную запись и все данные, связанные с аккаунтом, но имейте в виду, что <0>это действие необратимо</0>."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Информация"
|
msgstr "Информация"
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr "ivan.ivanovich@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Ключевые слова"
|
msgstr "Ключевые слова"
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr "Последнее обновление {lastUpdated}"
|
msgstr "Последнее обновление {lastUpdated}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Макет"
|
msgstr "Макет"
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr "Letter"
|
msgstr "Letter"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr "Уровень"
|
msgstr "Уровень"
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr "Светлая"
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr "Светлая или темная тема"
|
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"
|
msgid "Line Height"
|
||||||
msgstr "Высота строки"
|
msgstr "Высота строки"
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr "Высота строки"
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr "LinkedIn, JSON Resume и т.д."
|
msgstr "LinkedIn, JSON Resume и т.д."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr "Список"
|
msgstr "Список"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr "Выйти"
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr "Потеряли устройство?"
|
msgstr "Потеряли устройство?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr "Главная"
|
msgstr "Главная"
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr "Март 2023"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr "Март 2023 - настоящее время"
|
msgstr "Март 2023 - настоящее время"
|
||||||
@ -923,7 +962,7 @@ msgstr "Март 2023 - настоящее время"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Отступ"
|
msgstr "Отступ"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "Максимум токенов"
|
msgstr "Максимум токенов"
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr "Максимум токенов"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "Лицензия MIT"
|
msgstr "Лицензия MIT"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "Модель"
|
msgstr "Модель"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr "Имя"
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Сеть"
|
msgstr "Сеть"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||||
msgid "New Password"
|
msgid "New Password"
|
||||||
msgstr "Новый пароль"
|
msgstr "Новый пароль"
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr "Примечание: Это сделает вашу учетную запись менее безопасной."
|
msgstr "Примечание: Это сделает вашу учетную запись менее безопасной."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Заметки"
|
msgstr "Заметки"
|
||||||
@ -1009,16 +1049,16 @@ msgstr "OpenAI не вернул никаких вариантов для ваш
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "Интеграция OpenAI"
|
msgstr "Интеграция OpenAI"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
msgstr "Интеграция OpenAI/Azure OpenAI/Ollama"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr "Ключ API OpenAI/Ollama"
|
msgstr "Ключ API OpenAI/Ollama"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
|
||||||
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/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"
|
msgid "Options"
|
||||||
msgstr "Настройки"
|
msgstr "Настройки"
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr "Организация"
|
msgstr "Организация"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "Страница"
|
msgstr "Страница"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr "Страница {pageNumber}"
|
msgstr "Страница {pageNumber}"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr "Пароль"
|
msgstr "Пароль"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr "PDF"
|
msgstr "PDF"
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr "Разработано с помощью <0>Simple Icons</0>"
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr "Основной цвет"
|
msgstr "Основной цвет"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr "Политика конфиденциальности"
|
msgstr "Политика конфиденциальности"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr "Профессиональный"
|
msgstr "Профессиональный"
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr "Открытый"
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "Издатель"
|
msgstr "Издатель"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr "Поднять проблему"
|
msgstr "Поднять проблему"
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr "Поднять проблему"
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr "Reactive Resume процветает благодаря своему а
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Повторить"
|
msgstr "Повторить"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Удалить"
|
msgstr "Удалить"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr "Удалить страницу"
|
msgstr "Удалить страницу"
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr "Отправить ссылку для подтверждения пов
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr "Сброс"
|
msgstr "Сброс"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr "Сбросить макет"
|
msgstr "Сбросить макет"
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr "Сбросить масштаб"
|
msgstr "Сбросить масштаб"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr "Резюме"
|
msgstr "Резюме"
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr "Скруглённая"
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Сохранить изменения"
|
msgstr "Сохранить изменения"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "Сохранить локально"
|
msgstr "Сохранить локально"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Сохранено"
|
msgstr "Сохранено"
|
||||||
|
|
||||||
@ -1262,15 +1300,15 @@ msgstr "Прокрутите до панорамирования"
|
|||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr "Прокрутка для увеличения"
|
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"
|
msgid "Search for a font family"
|
||||||
msgstr "Поиск семейства шрифтов"
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr "Поиск подгруппы шрифта"
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr "Поиск варианта шрифта"
|
msgstr "Поиск варианта шрифта"
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr "Поиск языка"
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr "Защита с помощью двухфакторной аутентификации"
|
msgstr "Защита с помощью двухфакторной аутентификации"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "Безопасность"
|
msgstr "Безопасность"
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr "Хостинг на Docker"
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr "Отправить эл. письмо"
|
msgstr "Отправить эл. письмо"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr "Отправить мне сообщение"
|
msgstr "Отправить мне сообщение"
|
||||||
|
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr "Настройте двухфакторную аутентификацию на своей учетной записи"
|
msgstr "Настройте двухфакторную аутентификацию на своей учетной записи"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr "Поделиться"
|
msgstr "Поделиться"
|
||||||
@ -1330,7 +1369,7 @@ msgstr "Показать линию разрыва"
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr "Показать номера страниц"
|
msgstr "Показать номера страниц"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Боковая панель"
|
msgstr "Боковая панель"
|
||||||
|
|
||||||
@ -1408,6 +1447,7 @@ msgid "Start building your resume by giving it a name."
|
|||||||
msgstr "Начните составлять свое резюме, дав ему название."
|
msgstr "Начните составлять свое резюме, дав ему название."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr "Статистика"
|
msgstr "Статистика"
|
||||||
@ -1422,17 +1462,17 @@ msgstr "Храните коды резервного копирования в
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr "Краткое содержание"
|
msgstr "Краткое содержание"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr "Поддержите приложение, пожертвовав сколько можете!"
|
msgstr "Поддержите приложение, пожертвовав сколько можете!"
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr "Поддержите Reactive Resume"
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr "Поддержка формата страниц A4/Letter"
|
msgstr "Поддержка формата страниц A4/Letter"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr "Переключиться в темный режим"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr "Переключиться в легкий режим"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr "Системная"
|
msgstr "Системная"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "Шаблон"
|
msgstr "Шаблон"
|
||||||
@ -1465,15 +1514,20 @@ msgstr "Отзывы"
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr "Цвет текста"
|
msgstr "Цвет текста"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
msgstr "Введенные вами пароли не совпадают."
|
msgstr "Страница, которую вы ищете, не существует."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
|
msgstr "Некорректный запрос."
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: 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."
|
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||||
msgstr "Резюме, которое Вы хотите обновить, заблокировано, пожалуйста, разблокируйте его, если хотите внести в него какие-либо изменения."
|
msgstr "Резюме, которое Вы хотите обновить, заблокировано, пожалуйста, разблокируйте его, если хотите внести в него какие-либо изменения."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
#: 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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,7 @@ msgstr "Отслеживание просмотров и загрузок"
|
|||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr "Двухфакторная аутентификация"
|
msgstr "Двухфакторная аутентификация"
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr "Форма обучения"
|
msgstr "Форма обучения"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr "Типография"
|
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"
|
msgid "Underline Links"
|
||||||
msgstr "Подчеркивать ссылки"
|
msgstr "Подчеркивать ссылки"
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr "URL"
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr "URL должен начинаться с https://"
|
msgstr "URL должен начинаться с https://"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr "Использовать Azure OpenAI"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr "Использовать системную тему"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,7 +1714,7 @@ msgstr "Версия 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Просмотры"
|
msgstr "Просмотры"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Видимый"
|
msgstr "Видимый"
|
||||||
|
|
||||||
@ -1665,11 +1728,11 @@ msgstr "Мы подтверждаем ваш адрес эл. почты, тол
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr "Сайт"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Что нового в последней версии"
|
msgstr "Что нового в последней версии"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr "Вы не авторизованы для доступа к этой странице."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Вы можете добавить несколько ключевых слов, разделив их запятой или нажав Enter."
|
msgstr "Вы можете добавить несколько ключевых слов, разделив их запятой или нажав Enter."
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr "Вы можете добавить несколько ключевых
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Вы также можете ввести свое имя пользователя."
|
msgstr "Вы также можете ввести свое имя пользователя."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr "Вы также можете интегрироваться с Ollama, просто задав API-ключ `sk-1234567890abcdef` и базовый URL - URL Вашего Ollama, т.е. `http://localhost:11434/v1`. Вы также можете выбирать модели и устанавливать максимальное количество токенов в соответствии с Вашими предпочтениями."
|
msgstr "Вы также можете интегрироваться с Azure OpenAI, включив опцию <0>Использовать Azure OpenAI</0> и установив URL ресурса на Лазурный Лазурный ресурс: <1>https://your-resource. penai.azure.com</1>. Установите имя установки в поле Модель и укажите соответствующую версию API для установки Azure."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
msgstr "Вы можете использовать API OpenAI, чтобы сгенерировать контент или улучшить текст при составлении резюме."
|
msgstr "Вы также можете интегрироваться с Ollama просто установив API-ключ на<0>sk-1234567890abcdef</0> и базовый URL-адрес вашего Ollama URL, i. .<1>http://localhost:11434/v1</1>. Вы также можете выбрать и выбрать модели и установить максимальный токен в соответствии с вашими предпочтениями."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
|
msgstr "Вы можете использовать OpenAI API, Azure OpenAI, или Ollama, чтобы помочь вам создать контент, или улучшить вашу работу при составлении вашего резюме."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Вы можете отслеживать количество просмотров вашего резюме и количество людей, скачавших его, включив общий доступ."
|
msgstr "Вы можете отслеживать количество просмотров вашего резюме и количество людей, скачавших его, включив общий доступ."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr "У вас нет доступа к этой странице."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "У вас есть возможность <0>получить свой собственный ключ API OpenAI</0>. Этот ключ позволит использовать API по своему усмотрению. В качестве альтернативы, если вы хотите полностью отключить AI функции в Reactive Resume, вы можете просто удалить ключ из своих настроек."
|
msgstr "У вас есть возможность <0>получить свой собственный ключ API OpenAI</0>. Этот ключ позволит использовать API по своему усмотрению. В качестве альтернативы, если вы хотите полностью отключить AI функции в Reactive Resume, вы можете просто удалить ключ из своих настроек."
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr "Вы получили письмо!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Учетная запись и все ваши данные были успешно удалены. До свидания!"
|
msgstr "Учетная запись и все ваши данные были успешно удалены. До свидания!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "Ваш ключ API надежно хранится в локальном хранилище браузера и используется только при запросах к OpenAI через их официальный SDK. Будьте уверены, в том, что ключ не передается ни на какой внешний сервер, за исключением случаев взаимодействия с сервисами OpenAI."
|
msgstr "Ваш ключ API надежно хранится в локальном хранилище браузера и используется только при запросах к OpenAI через их официальный SDK. Будьте уверены, в том, что ключ не передается ни на какой внешний сервер, за исключением случаев взаимодействия с сервисами OpenAI."
|
||||||
|
|
||||||
@ -1733,7 +1808,7 @@ msgstr "Ваш адрес эл. почты был успешно подтвер
|
|||||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||||
msgstr "Ваш ключ API OpenAI еще не установлен. Пожалуйста, включите интеграцию OpenAI в настройках вашего аккаунта."
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr "Ваш пароль был успешно обновлен."
|
msgstr "Ваш пароль был успешно обновлен."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: sk\n"
|
"Language: sk\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:40\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Slovak\n"
|
"Language-Team: Slovak\n"
|
||||||
"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n"
|
"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n"
|
||||||
@ -30,27 +30,27 @@ msgstr "{templatesCount} šablóny životopisov na výber"
|
|||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr "{value, plural, one {Stĺpec} other {Stĺpce}}"
|
msgstr "{value, plural, one {Stĺpec} other {Stĺpce}}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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 som vytvoril väčšinou sám vo svojom voľnom čase s veľkou pomocou ďalších skvelých prispievateľov do open-source.</0><1>Ak sa vám aplikácia páči a chcete ju podporiť, aby zostala navždy bezplatná, darujte, čo si môžete dovoliť.</1>"
|
msgstr "<0>Reactive Resume som vytvoril väčšinou sám vo svojom voľnom čase s veľkou pomocou ďalších skvelých prispievateľov do open-source.</0><1>Ak sa vám aplikácia páči a chcete ju podporiť, aby zostala navždy bezplatná, darujte, čo si môžete dovoliť.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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>Som si istý, že aplikácia nie je dokonalá, ale chcel by som, aby bola.</0><1>Ak ste sa pri vytváraní životopisu stretli s nejakými problémami alebo máte nápad, ktorý by vám a ostatným používateľom pomohol pri jednoduchšom vytváraní životopisu, napíšte o tom do úložiska alebo mi pošlite e-mail.</1>"
|
msgstr "<0>Som si istý, že aplikácia nie je dokonalá, ale chcel by som, aby bola.</0><1>Ak ste sa pri vytváraní životopisu stretli s nejakými problémami alebo máte nápad, ktorý by vám a ostatným používateľom pomohol pri jednoduchšom vytváraní životopisu, napíšte o tom do úložiska alebo mi pošlite e-mail.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 "<0>Poznámka: </0>Používaním rozhrania API OpenAI beriete na vedomie a akceptujete <1>podmienky používania</1> a <2>zásady ochrany osobných údajov</2> uvedené spoločnosťou OpenAI. Upozorňujeme, že spoločnosť Reactive Resume nenesie žiadnu zodpovednosť za akékoľvek nesprávne alebo neoprávnené používanie služby a akékoľvek následky alebo zodpovednosť za ne nesie výlučne používateľ."
|
msgstr "<0>Poznámka: </0>Používaním rozhrania API OpenAI beriete na vedomie a akceptujete <1>podmienky používania</1> a <2>zásady ochrany osobných údajov</2> uvedené spoločnosťou OpenAI. Upozorňujeme, že spoločnosť Reactive Resume nenesie žiadnu zodpovednosť za akékoľvek nesprávne alebo neoprávnené používanie služby a akékoľvek následky alebo zodpovednosť za ne nesie výlučne používateľ."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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>"
|
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."
|
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."
|
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."
|
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."
|
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"
|
msgid "Add a custom field"
|
||||||
msgstr "Pridanie vlastného poľa"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Pridanie novej položky"
|
msgstr "Pridanie novej položky"
|
||||||
@ -117,7 +117,7 @@ msgstr "Pridanie novej položky"
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr "Pridanie novej sekcie"
|
msgstr "Pridanie novej sekcie"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr "Pridať novú stránku"
|
msgstr "Pridať novú stránku"
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr "Už máte účet?"
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr "Pri overovaní súboru došlo k chybe."
|
msgstr "Pri overovaní súboru došlo k chybe."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr "Vyskytla sa interná chyba servera."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr "Vyskytla sa neočakávaná chyba."
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr "a mnoho ďalších..."
|
msgstr "a mnoho ďalších..."
|
||||||
@ -191,6 +199,18 @@ msgstr "K dispozícii v {languagesCount} jazykoch"
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr "Udeľovateľ"
|
msgstr "Udeľovateľ"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr "Verzia rozhrania Azure API"
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr "Pri používaní Azure OpenAI sa vyžaduje základná adresa URL, názov nasadenia (model) a verzia API."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr "Adresa URL zdroja Azure OpenAI"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,7 +229,7 @@ msgstr "Záložný kód"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Záložné kódy môžu obsahovať len malé písmená alebo číslice a musia mať presne 10 znakov."
|
msgstr "Záložné kódy môžu obsahovať len malé písmená alebo číslice a musia mať presne 10 znakov."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "Základná adresa URL"
|
msgstr "Základná adresa URL"
|
||||||
|
|
||||||
@ -246,8 +266,8 @@ msgstr "Od komunity, pre komunitu."
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Zrušiť"
|
msgstr "Zrušiť"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr "Príležitostné"
|
msgstr "Príležitostné"
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr "Príležitostné"
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr "Stredová umelecká doska"
|
msgstr "Stredová umelecká doska"
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr "Zmena jazyka"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr "Zmena hesla"
|
msgstr "Zmena hesla"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr "Zmena tónu"
|
msgstr "Zmena tónu"
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr "Stĺpce"
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr "Spoločnosť"
|
msgstr "Spoločnosť"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr "Sebavedomé"
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Pokračovať"
|
msgstr "Pokračovať"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Kopírovať"
|
msgstr "Kopírovať"
|
||||||
|
|
||||||
@ -351,7 +371,12 @@ msgstr "Vytvorte si ho teraz"
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr "Vytvorenie vzorového životopisu"
|
msgstr "Vytvorenie vzorového životopisu"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||||
|
msgid "Current Password"
|
||||||
|
msgstr "Aktuálne heslo"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr "Vlastné CSS"
|
msgstr "Vlastné CSS"
|
||||||
@ -386,10 +411,10 @@ msgstr "Dark"
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Dátum"
|
msgstr "Dátum"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Dátum alebo rozsah dátumov"
|
msgstr "Dátum alebo rozsah dátumov"
|
||||||
@ -407,11 +432,15 @@ msgstr "Odstrániť"
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr "Odstrániť účet"
|
msgstr "Odstrániť účet"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr "Názov nasadenia"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Popis"
|
msgstr "Popis"
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr "Navrhovanie jednostranných/ viacstranových životopisov"
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr "Zakázať"
|
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"
|
msgid "Disable 2FA"
|
||||||
msgstr "Zakázanie funkcie 2FA"
|
msgstr "Zakázanie funkcie 2FA"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr "Vyradiť"
|
msgstr "Vyradiť"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Dokumentácia"
|
msgstr "Dokumentácia"
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr "Dokumentácia"
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr "Nemáte účet?"
|
msgstr "Nemáte účet?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr "Neviete, kde začať? Prejdite na dokumenty!"
|
msgstr "Neviete, kde začať? Prejdite na dokumenty!"
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr "Neviete, kde začať? Prejdite na dokumenty!"
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr "Nevidíte svoj jazyk? <0>Pomôžte preložiť aplikáciu.</0>"
|
msgstr "Nevidíte svoj jazyk? <0>Pomôžte preložiť aplikáciu.</0>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr "Darujte Reaktívny životopis"
|
msgstr "Darujte Reaktívny životopis"
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr "Darujte Reaktívny životopis"
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr "Stiahnite si snímku JSON svojho životopisu. Tento súbor môžete použiť na importovanie svojho životopisu v budúcnosti alebo ho môžete dokonca zdieľať s ostatnými na spoluprácu."
|
msgstr "Stiahnite si snímku JSON svojho životopisu. Tento súbor môžete použiť na importovanie svojho životopisu v budúcnosti alebo ho môžete dokonca zdieľať s ostatnými na spoluprácu."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
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."
|
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/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr "Stiahnuť PDF"
|
msgstr "Stiahnuť PDF"
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr "Duplikovať existujúcu položku"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Duplikovať existujúci životopis"
|
msgstr "Duplikovať existujúci životopis"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Upraviť"
|
msgstr "Upraviť"
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr "Účinky"
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr "E-mail"
|
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"
|
msgid "Enable 2FA"
|
||||||
msgstr "Povolenie 2FA"
|
msgstr "Povolenie 2FA"
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr "Nižšie zadajte jednorazové heslo, ktoré vám poskytla aplikácia aut
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr "Zadajte svoju e-mailovú adresu a my vám pošleme odkaz na obnovenie hesla, ak konto existuje."
|
msgstr "Zadajte svoju e-mailovú adresu a my vám pošleme odkaz na obnovenie hesla, ak konto existuje."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr "Chyba {statusCode}"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr "Chyby"
|
msgstr "Chyby"
|
||||||
@ -544,6 +576,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."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr "Export"
|
msgstr "Export"
|
||||||
@ -564,19 +597,19 @@ msgstr "Nakoniec,"
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr "Oprava pravopisu a gramatiky"
|
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"
|
msgid "Font Family"
|
||||||
msgstr "Rodina písiem"
|
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"
|
msgid "Font Size"
|
||||||
msgstr "Veľkosť písma"
|
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"
|
msgid "Font Subset"
|
||||||
msgstr "Podskupina písiem"
|
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"
|
msgid "Font Variants"
|
||||||
msgstr "Varianty písma"
|
msgstr "Varianty písma"
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr "Varianty písma"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "Tu si môžete zapísať napríklad informácie o tom, ktorým spoločnostiam ste poslali tento životopis, alebo odkazy na opisy pracovných miest."
|
msgstr "Tu si môžete zapísať napríklad informácie o tom, ktorým spoločnostiam ste poslali tento životopis, alebo odkazy na opisy pracovných miest."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Zabudnite na"
|
msgstr "Zabudnite na"
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr "Zabudli ste heslo?"
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr "Formát"
|
msgstr "Formát"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr "Našli ste chybu alebo máte nápad na novú funkciu?"
|
msgstr "Našli ste chybu alebo máte nápad na novú funkciu?"
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr "Našli ste chybu alebo máte nápad na novú funkciu?"
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr "Zadarmo, navždy"
|
msgstr "Zadarmo, navždy"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr "Friendly"
|
msgstr "Friendly"
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr "Dajte svojmu starému životopisu nové meno."
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr "Prejsť na prístrojový panel"
|
msgstr "Prejsť na prístrojový panel"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr "Prejsť na domov"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr "Google"
|
msgstr "Google"
|
||||||
@ -651,7 +688,7 @@ msgstr "Google"
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr "Odtiene sivej"
|
msgstr "Odtiene sivej"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr "Sieť"
|
msgstr "Sieť"
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr "Tu môžete aktualizovať svoj profil a prispôsobiť si ho."
|
msgstr "Tu môžete aktualizovať svoj profil a prispôsobiť si ho."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Skryté"
|
msgstr "Skryté"
|
||||||
@ -677,7 +714,7 @@ msgstr "Skryté"
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr "Skryť"
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr "Skryť ikony"
|
msgstr "Skryť ikony"
|
||||||
|
|
||||||
@ -734,7 +771,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."
|
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."
|
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."
|
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."
|
msgstr "V tejto časti môžete zmeniť heslo a povoliť/povoliť dvojfaktorové overovanie."
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ 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>."
|
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/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Informácie"
|
msgstr "Informácie"
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr "john.doe@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Kľúčové slová"
|
msgstr "Kľúčové slová"
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr "Posledná aktualizácia {lastUpdated}"
|
msgstr "Posledná aktualizácia {lastUpdated}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Rozloženie"
|
msgstr "Rozloženie"
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr "List"
|
msgstr "List"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr "Úroveň"
|
msgstr "Úroveň"
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr "Svetlo"
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr "Svetlá alebo tmavá téma"
|
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"
|
msgid "Line Height"
|
||||||
msgstr "Výška riadku"
|
msgstr "Výška riadku"
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr "Výška riadku"
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr "LinkedIn, JSON Resume atď."
|
msgstr "LinkedIn, JSON Resume atď."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr "Zoznam"
|
msgstr "Zoznam"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr "Odhlásenie"
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr "Stratili ste zariadenie?"
|
msgstr "Stratili ste zariadenie?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr "Hlavná stránka"
|
msgstr "Hlavná stránka"
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr "marec 2023"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr "marec 2023 - súčasnosť"
|
msgstr "marec 2023 - súčasnosť"
|
||||||
@ -923,7 +962,7 @@ msgstr "marec 2023 - súčasnosť"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Marža"
|
msgstr "Marža"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "Maximálny počet žetónov"
|
msgstr "Maximálny počet žetónov"
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr "Maximálny počet žetónov"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "Licencia MIT"
|
msgstr "Licencia MIT"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "Model"
|
msgstr "Model"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr "Názov"
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Sieť"
|
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"
|
msgid "New Password"
|
||||||
msgstr "Nové heslo"
|
msgstr "Nové heslo"
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr "Poznámka: Tým sa vaše konto stane menej bezpečným."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Poznámky"
|
msgstr "Poznámky"
|
||||||
@ -1009,16 +1049,16 @@ msgstr "Aplikácia OpenAI nevrátila žiadne možnosti pre váš text."
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "Integrácia OpenAI"
|
msgstr "Integrácia OpenAI"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
msgstr "Integrácia OpenAI/Azure OpenAI/Ollama"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr "Kľúč API OpenAI/Ollama"
|
msgstr "Kľúč API OpenAI/Ollama"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
|
||||||
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/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"
|
msgid "Options"
|
||||||
msgstr "Možnosti"
|
msgstr "Možnosti"
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr "Organizácia"
|
msgstr "Organizácia"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "Strana"
|
msgstr "Strana"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr "Strana {pageNumber}"
|
msgstr "Strana {pageNumber}"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr "Heslo"
|
msgstr "Heslo"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr "PDF"
|
msgstr "PDF"
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr "Poháňané <0>jednoduchými ikonami</0>"
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr "Primárna farba"
|
msgstr "Primárna farba"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr "Zásady ochrany osobných údajov"
|
msgstr "Zásady ochrany osobných údajov"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr "Profesionálne"
|
msgstr "Profesionálne"
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr "Verejnosť"
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "Vydavateľ"
|
msgstr "Vydavateľ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr "Upozorniť na problém"
|
msgstr "Upozorniť na problém"
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr "Upozorniť na problém"
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr "Reactive Resume sa darí vďaka živej komunite. Tento projekt vďačí
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Redo"
|
msgstr "Redo"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Odstránenie stránky"
|
msgstr "Odstránenie stránky"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr "Odstrániť stránku"
|
msgstr "Odstrániť stránku"
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr "Opätovné odoslanie prepojenia na potvrdenie e-mailu"
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr "Obnovenie"
|
msgstr "Obnovenie"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr "Obnovenie rozloženia"
|
msgstr "Obnovenie rozloženia"
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr "Obnovenie priblíženia"
|
msgstr "Obnovenie priblíženia"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr "Životopisy"
|
msgstr "Životopisy"
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr "Zaoblené"
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Uloženie zmien"
|
msgstr "Uloženie zmien"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "Uložiť lokálne"
|
msgstr "Uložiť lokálne"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Uložené"
|
msgstr "Uložené"
|
||||||
|
|
||||||
@ -1262,15 +1300,15 @@ msgstr "Posuňte sa na Pan"
|
|||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr "Posúvanie na zväčšenie"
|
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"
|
msgid "Search for a font family"
|
||||||
msgstr "Vyhľadanie rodiny písiem"
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr "Vyhľadanie podmnožiny písma"
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr "Vyhľadanie variantu písma"
|
msgstr "Vyhľadanie variantu písma"
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr "Vyhľadávanie jazyka"
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr "Zabezpečenie pomocou dvojfaktorového overovania"
|
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"
|
msgid "Security"
|
||||||
msgstr "Zabezpečenie"
|
msgstr "Zabezpečenie"
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr "Vlastný hostiteľ pomocou nástroja Docker"
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr "Odoslať e-mail"
|
msgstr "Odoslať e-mail"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr "Pošlite mi správu"
|
msgstr "Pošlite mi správu"
|
||||||
|
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr "Nastavenie dvojfaktorového overovania na svojom konte"
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr "Zdieľanie"
|
msgstr "Zdieľanie"
|
||||||
@ -1330,7 +1369,7 @@ msgstr "Zobraziť čiaru prestávky"
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr "Zobraziť čísla strán"
|
msgstr "Zobraziť čísla strán"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Bočný panel"
|
msgstr "Bočný panel"
|
||||||
|
|
||||||
@ -1408,6 +1447,7 @@ msgid "Start building your resume by giving it a name."
|
|||||||
msgstr "Svoj životopis začnite tvoriť tak, že mu dáte meno."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr "Štatistika"
|
msgstr "Štatistika"
|
||||||
@ -1422,17 +1462,17 @@ msgstr "Bezpečné ukladanie záložných kódov"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr "Zhrnutie"
|
msgstr "Zhrnutie"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr "Podporte aplikáciu darovaním toho, čo môžete!"
|
msgstr "Podporte aplikáciu darovaním toho, čo môžete!"
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr "Podporný reaktívny životopis"
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr "Podporuje formáty strán A4/Letter"
|
msgstr "Podporuje formáty strán A4/Letter"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr "Prepnutie do tmavého režimu"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr "Prepnutie do režimu svetla"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr "Systém"
|
msgstr "Systém"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "Šablóna"
|
msgstr "Šablóna"
|
||||||
@ -1465,15 +1514,20 @@ msgstr "Skúsenosti"
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr "Farba textu"
|
msgstr "Farba textu"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
msgstr "Zadané heslá sa nezhodujú."
|
msgstr "Stránka, ktorú hľadáte, neexistuje."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
|
msgstr "Žiadosť bola neplatná."
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: 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."
|
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."
|
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/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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,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:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr "Dvojfaktorové overovanie"
|
msgstr "Dvojfaktorové overovanie"
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr "Typ štúdie"
|
msgstr "Typ štúdie"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr "Typografia"
|
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"
|
msgid "Underline Links"
|
||||||
msgstr "Podčiarknite odkazy"
|
msgstr "Podčiarknite odkazy"
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr "ADRESA URL"
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr "Adresa URL musí začínať https://"
|
msgstr "Adresa URL musí začínať https://"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr "Používanie Azure OpenAI"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr "Použitie systémovej témy"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,7 +1714,7 @@ msgstr "Verzia 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Zobrazenia"
|
msgstr "Zobrazenia"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Viditeľné"
|
msgstr "Viditeľné"
|
||||||
|
|
||||||
@ -1665,11 +1728,11 @@ msgstr "Vašu e-mailovú adresu overujeme len preto, aby sme vám mohli poslať
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr "Webová lokalita"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Novinky v najnovšej verzii"
|
msgstr "Novinky v najnovšej verzii"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr "Nemáte oprávnenie na prístup na túto stránku."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Môžete pridať viacero kľúčových slov tak, že ich oddelíte čiarkou alebo stlačíte kláves enter."
|
msgstr "Môžete pridať viacero kľúčových slov tak, že ich oddelíte čiarkou alebo stlačíte kláves enter."
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr "Môžete pridať viacero kľúčových slov tak, že ich oddelíte čiar
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Môžete tiež zadať svoje používateľské meno."
|
msgstr "Môžete tiež zadať svoje používateľské meno."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr "Môžete sa tiež integrovať s Ollama jednoducho nastavením kľúča API na `sk-1234567890abcdef` a základnej adresy URL na vašu adresu URL Ollama, t. j. `http://localhost:11434/v1`. Môžete si tiež vybrať modely a nastaviť maximálne tokeny podľa svojich preferencií."
|
msgstr "Môžete sa tiež integrovať s Azure OpenAI tak, že začiarknete políčko <0>Použiť Azure OpenAI</0> a nastavíte adresu URL zdroja na váš zdroj Azure OpenAI: <1>https://your-resource.openai.azure.com</1>. Nastavte názov nasadenia v poli Model a zadajte príslušnú verziu API pre vaše nasadenie Azure."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
msgstr "Rozhranie API OpenAI môžete využiť na pomoc pri vytváraní obsahu alebo na zlepšenie písania pri písaní životopisu."
|
msgstr "Môžete sa tiež integrovať so službou Ollama jednoduchým nastavením kľúča API<0>tosk-1234567890abcdef</0> a základnej adresy URL na vašu adresu URL Ollama, t. j.<1>http://localhost:11434/v1.</1> Môžete si tiež vybrať modely a nastaviť maximálne tokeny podľa vašich preferencií."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
|
msgstr "Môžete využiť rozhranie API OpenAI, Azure OpenAI alebo Ollama, ktoré vám pomôžu pri vytváraní obsahu, alebo zlepšiť písanie pri písaní životopisu."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Ak povolíte verejné zdieľanie, môžete sledovať počet zobrazení vášho životopisu alebo počet ľudí, ktorí si ho stiahli."
|
msgstr "Ak povolíte verejné zdieľanie, môžete sledovať počet zobrazení vášho životopisu alebo počet ľudí, ktorí si ho stiahli."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr "Nemáte oprávnenie na prístup na túto stránku."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "Máte možnosť <0>získať vlastný kľúč API od OpenAI</0>. Tento kľúč vám umožňuje využívať API podľa vlastného uváženia. Prípadne, ak chcete funkcie umelej inteligencie v Reactive Resume úplne vypnúť, môžete jednoducho odstrániť kľúč z nastavení."
|
msgstr "Máte možnosť <0>získať vlastný kľúč API od OpenAI</0>. Tento kľúč vám umožňuje využívať API podľa vlastného uváženia. Prípadne, ak chcete funkcie umelej inteligencie v Reactive Resume úplne vypnúť, môžete jednoducho odstrániť kľúč z nastavení."
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr "Máte poštu!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Vaše konto a všetky vaše údaje boli úspešne odstránené. Zbohom!"
|
msgstr "Vaše konto a všetky vaše údaje boli úspešne odstránené. Zbohom!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "Váš kľúč API je bezpečne uložený v miestnom úložisku prehliadača a používa sa len pri zadávaní požiadaviek na OpenAI prostredníctvom ich oficiálneho SDK. Môžete si byť istí, že váš kľúč sa neprenáša na žiadny externý server okrem prípadov, keď komunikujete so službami OpenAI."
|
msgstr "Váš kľúč API je bezpečne uložený v miestnom úložisku prehliadača a používa sa len pri zadávaní požiadaviek na OpenAI prostredníctvom ich oficiálneho SDK. Môžete si byť istí, že váš kľúč sa neprenáša na žiadny externý server okrem prípadov, keď komunikujete so službami OpenAI."
|
||||||
|
|
||||||
@ -1733,7 +1808,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."
|
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."
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr "Vaše heslo bolo úspešne aktualizované."
|
msgstr "Vaše heslo bolo úspešne aktualizované."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: sq\n"
|
"Language: sq\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:32\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Albanian\n"
|
"Language-Team: Albanian\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -30,27 +30,27 @@ msgstr "{templatesCount} shabllone të CV-së"
|
|||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr "{value, plural, one {Kolonë} other {Kolona}}"
|
msgstr "{value, plural, one {Kolonë} other {Kolona}}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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 ""
|
||||||
|
|
||||||
#: 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."
|
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||||
msgstr ""
|
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."
|
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -102,8 +102,8 @@ msgstr "Llogaria"
|
|||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr "Shto një fushë të personalizuar"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Shto një vlerë të re"
|
msgstr "Shto një vlerë të re"
|
||||||
@ -117,7 +117,7 @@ msgstr "Shto një vlerë të re"
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr "Shto një rubrikë të re"
|
msgstr "Shto një rubrikë të re"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr "Shto një faqe të re"
|
msgstr "Shto një faqe të re"
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr "Posedoni një llogari?"
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr "Ndodhi një gabim gjatë verifikimit të skedarit."
|
msgstr "Ndodhi një gabim gjatë verifikimit të skedarit."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr "dhe shume te tjera..."
|
msgstr "dhe shume te tjera..."
|
||||||
@ -191,6 +199,18 @@ msgstr "E ofruar në {languagesCount} gjuhë"
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr "Dhurues"
|
msgstr "Dhurues"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,7 +229,7 @@ msgstr "Kodi rezervë"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Kodet rezervë mund të përmbajnë vetëm shkronja të vogla ose numra dhe duhet të kenë saktësisht 10 karaktere."
|
msgstr "Kodet rezervë mund të përmbajnë vetëm shkronja të vogla ose numra dhe duhet të kenë saktësisht 10 karaktere."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -246,8 +266,8 @@ msgstr "Nga komuniteti, për komunitetin."
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Anulo"
|
msgstr "Anulo"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr "Jo formale"
|
msgstr "Jo formale"
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr "Jo formale"
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr "Centro panelin"
|
msgstr "Centro panelin"
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr "Ndrysho fjalëkalimin"
|
msgstr "Ndrysho fjalëkalimin"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr "Kolonat"
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr "Kompania"
|
msgstr "Kompania"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr "Të sigurt"
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Vazhdo"
|
msgstr "Vazhdo"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Kopjo"
|
msgstr "Kopjo"
|
||||||
|
|
||||||
@ -351,7 +371,12 @@ msgstr "Regjistrohu"
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr "Krijo një CV nga shembujt"
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -386,10 +411,10 @@ msgstr "E errët"
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Data"
|
msgstr "Data"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Data ose intervali"
|
msgstr "Data ose intervali"
|
||||||
@ -407,11 +432,15 @@ msgstr "Fshi"
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr "Fshi llogarinë"
|
msgstr "Fshi llogarinë"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Përshkrimi"
|
msgstr "Përshkrimi"
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr ""
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr "Çaktivizo"
|
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"
|
msgid "Disable 2FA"
|
||||||
msgstr "Çaktivizo vërtetimin me dy faktorë"
|
msgstr "Çaktivizo vërtetimin me dy faktorë"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr "Braktis"
|
msgstr "Braktis"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Dokumentacioni"
|
msgstr "Dokumentacioni"
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr "Dokumentacioni"
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr "Nuk keni akoma një llogari?"
|
msgstr "Nuk keni akoma një llogari?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr "Nuk dini ku të filloni? Shiko dokumentacionin!"
|
msgstr "Nuk dini ku të filloni? Shiko dokumentacionin!"
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr "Nuk dini ku të filloni? Shiko dokumentacionin!"
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr "Nuk e shihni gjuhën tuaj? <0>Ndihmoni në përkthimin e aplikacionit.</0>"
|
msgstr "Nuk e shihni gjuhën tuaj? <0>Ndihmoni në përkthimin e aplikacionit.</0>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr "Dhuro në Reactive Resume"
|
msgstr "Dhuro në Reactive Resume"
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr "Dhuro në Reactive Resume"
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr "Shkarkoni një CV-në tuaj në formatin JSON. Ky skedar mund të përdoret për të importuar CV-në tuaj në të ardhmen, madje edhe mund të ndahet me të tjerët për të bashkëpunuar."
|
msgstr "Shkarkoni një CV-në tuaj në formatin JSON. Ky skedar mund të përdoret për të importuar CV-në tuaj në të ardhmen, madje edhe mund të ndahet me të tjerët për të bashkëpunuar."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
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."
|
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/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr "Shkarko PDF"
|
msgstr "Shkarko PDF"
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr "Dupliko një vlerë ekzistuese"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Dyfisho një CV ekzistuese"
|
msgstr "Dyfisho një CV ekzistuese"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Përpuno"
|
msgstr "Përpuno"
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr "Efektet"
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr "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"
|
msgid "Enable 2FA"
|
||||||
msgstr "Aktivizo vërtetimin me dy faktorë"
|
msgstr "Aktivizo vërtetimin me dy faktorë"
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr "Jep fjalkalimin njëpërdorimësh nga aplikacioni authenticator."
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr "Jepni adresën tuaj të emailit dhe ne do t'ju dërgojmë një link për të ndryshuar fjalëkalimin nëse llogaria ekziston."
|
msgstr "Jepni adresën tuaj të emailit dhe ne do t'ju dërgojmë një link për të ndryshuar fjalëkalimin nëse llogaria ekziston."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr "Problemet"
|
msgstr "Problemet"
|
||||||
@ -544,6 +576,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."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr "Exporto"
|
msgstr "Exporto"
|
||||||
@ -564,19 +597,19 @@ msgstr "Së fundi,"
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr "Rregulloni drejtshkrimin dhe gramatikën"
|
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"
|
msgid "Font Family"
|
||||||
msgstr ""
|
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"
|
msgid "Font Size"
|
||||||
msgstr "Madhësia e germave"
|
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"
|
msgid "Font Subset"
|
||||||
msgstr ""
|
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"
|
msgid "Font Variants"
|
||||||
msgstr "Varianti i germave"
|
msgstr "Varianti i germave"
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr "Varianti i germave"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Harro"
|
msgstr "Harro"
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr "Keni harruar fjalëkalimin?"
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr "Formati"
|
msgstr "Formati"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr "Keni gjetur një gabim, apo keni një ide për një veçori të re?"
|
msgstr "Keni gjetur një gabim, apo keni një ide për një veçori të re?"
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr "Keni gjetur një gabim, apo keni një ide për një veçori të re?"
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr "Falas, përgjithmonë"
|
msgstr "Falas, përgjithmonë"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr "Miqësor"
|
msgstr "Miqësor"
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr "Jepini CV-së tuaj të vjetër një emër të ri."
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr "Shko te paneli kryesor"
|
msgstr "Shko te paneli kryesor"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr "Google"
|
msgstr "Google"
|
||||||
@ -651,7 +688,7 @@ msgstr "Google"
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr "Nuancat gri"
|
msgstr "Nuancat gri"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr "Këtu mund të përditësoni profilin tuaj për të personalizuar përvojën tuaj."
|
msgstr "Këtu mund të përditësoni profilin tuaj për të personalizuar përvojën tuaj."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "E fshehur"
|
msgstr "E fshehur"
|
||||||
@ -677,7 +714,7 @@ msgstr "E fshehur"
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr "Fshih"
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr "Fshih ikonat"
|
msgstr "Fshih ikonat"
|
||||||
|
|
||||||
@ -734,7 +771,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."
|
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."
|
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."
|
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ë."
|
msgstr "Në këtë seksion, ju mund të ndryshoni fjalëkalimin tuaj dhe të aktivizoni/çaktivizoni vërtetimin me dy faktorë."
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ 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>."
|
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/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Informacion"
|
msgstr "Informacion"
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr "filan.fisteku@shembull.al"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Fjalët kyçe"
|
msgstr "Fjalët kyçe"
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr "Përditësuar së fundmi me {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/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr "Niveli"
|
msgstr "Niveli"
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr "E çelët"
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr "Pamje e çelët apo e errët"
|
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"
|
msgid "Line Height"
|
||||||
msgstr "Lartësia e rreshtit"
|
msgstr "Lartësia e rreshtit"
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr "Lartësia e rreshtit"
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr "LinkedIn, JSON CV, etj."
|
msgstr "LinkedIn, JSON CV, etj."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr "Listë"
|
msgstr "Listë"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr "Çkyçu"
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr "Keni humbur pajisjen tuaj?"
|
msgstr "Keni humbur pajisjen tuaj?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr "Mars 2023"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr "Mars 2023 - tani"
|
msgstr "Mars 2023 - tani"
|
||||||
@ -923,7 +962,7 @@ msgstr "Mars 2023 - tani"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Largësia e kufinjëve"
|
msgstr "Largësia e kufinjëve"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "Licenca MIT"
|
msgstr "Licenca MIT"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr "Emri"
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Rrjeti"
|
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"
|
msgid "New Password"
|
||||||
msgstr "Fjalëkalim i ri"
|
msgstr "Fjalëkalim i ri"
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr "Kujdes: Kjo mund ta zvoglojë sigurinë e llogarisë tuaj."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Shënime"
|
msgstr "Shënime"
|
||||||
@ -1009,16 +1049,16 @@ msgstr "OpenAI nuk gjeti asnjë zgjedhje për tekstin tuaj."
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "Integrimi me OpenAI"
|
msgstr "Integrimi me OpenAI"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
|
||||||
msgid "OpenAI/Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: 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"
|
msgid "Options"
|
||||||
msgstr "Mundësitë"
|
msgstr "Mundësitë"
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr "Organizata"
|
msgstr "Organizata"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "Faqja"
|
msgstr "Faqja"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr "Fjalëkalimi"
|
msgstr "Fjalëkalimi"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr "PDF"
|
msgstr "PDF"
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr "Mundësuar nga <0>Simple Icons</0>"
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr "Ngjyra kryesore"
|
msgstr "Ngjyra kryesore"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr "Profesional"
|
msgstr "Profesional"
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr "Publik"
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "Botues"
|
msgstr "Botues"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr "Krijo një Issue në GitHub"
|
msgstr "Krijo një Issue në GitHub"
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr "Krijo një Issue në GitHub"
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr ""
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Ribëj"
|
msgstr "Ribëj"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Fshi"
|
msgstr "Fshi"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr "Fshi faqen"
|
msgstr "Fshi faqen"
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr "Ridërgo linun për konfirmimit të emailit"
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr "Rivendos"
|
msgstr "Rivendos"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr "Kthe madhësinë si në fillim"
|
msgstr "Kthe madhësinë si në fillim"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr "CV-të"
|
msgstr "CV-të"
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr "E rrumbullakësuar"
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Ruaj ndryshimet"
|
msgstr "Ruaj ndryshimet"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1262,15 +1300,15 @@ msgstr ""
|
|||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr ""
|
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"
|
msgid "Search for a font family"
|
||||||
msgstr "Kërkoni një familje të shkronjave"
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr "Kërkoni një nëngrup shkronjash"
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr "Kërkoni një variant të shkronjave"
|
msgstr "Kërkoni një variant të shkronjave"
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr "Kërkoni një gjuhë"
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr "Sigurohuni duke përdorur vërtetim me dy faktorë"
|
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"
|
msgid "Security"
|
||||||
msgstr "Siguria"
|
msgstr "Siguria"
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr ""
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr "Dërgo emailin"
|
msgstr "Dërgo emailin"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr "Më dërgo një mesazh"
|
msgstr "Më dërgo një mesazh"
|
||||||
|
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr "Konfiguro vërtetimin me dy faktorë në llogarinë tuaj"
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr "Shpërndarja"
|
msgstr "Shpërndarja"
|
||||||
@ -1330,7 +1369,7 @@ msgstr "Shfaq fundin e faqes"
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr "Shfaq numrin e faqes"
|
msgstr "Shfaq numrin e faqes"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Shiriti anësor"
|
msgstr "Shiriti anësor"
|
||||||
|
|
||||||
@ -1408,6 +1447,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."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr "Statistikat"
|
msgstr "Statistikat"
|
||||||
@ -1422,17 +1462,17 @@ msgstr "Ruani kodet rezervë në mënyrë të sigurt"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr "Përmbledhja"
|
msgstr "Përmbledhja"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr "Mbështetni aplikacionin duke dhuruar atë që mundeni!"
|
msgstr "Mbështetni aplikacionin duke dhuruar atë që mundeni!"
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr "Mbështet Reactive Resume"
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr "Mbështet formatet e faqeve A4"
|
msgstr "Mbështet formatet e faqeve A4"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr "Sistemi"
|
msgstr "Sistemi"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "Shabllon"
|
msgstr "Shabllon"
|
||||||
@ -1465,15 +1514,20 @@ msgstr "Dëshmitë"
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr "Ngjyra e tekstit"
|
msgstr "Ngjyra e tekstit"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
msgstr "Fjalëkalimet nuk përputhen."
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: 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."
|
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."
|
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/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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,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:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr "Vërtetimi me dy faktorë"
|
msgstr "Vërtetimi me dy faktorë"
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr "Lloji i studimit"
|
msgstr "Lloji i studimit"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr "Tipografia"
|
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"
|
msgid "Underline Links"
|
||||||
msgstr "Nënvizoni linket"
|
msgstr "Nënvizoni linket"
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr "Linku"
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr "Linku duhet të fillojë me https://"
|
msgstr "Linku duhet të fillojë me https://"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,7 +1714,7 @@ msgstr "Versioni 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Shikime"
|
msgstr "Shikime"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "E dukshme"
|
msgstr "E dukshme"
|
||||||
|
|
||||||
@ -1665,11 +1728,11 @@ msgstr "Ne e verifikojmë adresën tuaj të emailit vetëm për t'u siguruar që
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr "Faqja e internetit"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Çfarë ka të re në versionin e fundit"
|
msgstr "Çfarë ka të re në versionin e fundit"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr ""
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Mund të shtoni fjalë kyçe duke i ndarë me presje ose duke shtypur enter."
|
msgstr "Mund të shtoni fjalë kyçe duke i ndarë me presje ose duke shtypur enter."
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr "Mund të shtoni fjalë kyçe duke i ndarë me presje ose duke shtypur en
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Ju gjithashtu mund të jepni emrin tuaj të përdoruesit."
|
msgstr "Ju gjithashtu mund të jepni emrin tuaj të përdoruesit."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
msgstr "Ju mund të përdorni OpenAI API për t'ju ndihmuar të krijoni përmbajtje ose ta përmirësoni shkrimin tuaj gjatë hartimit të CV-së tuaj."
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Ju mund të gjurmoni numrin e shikimeve dhe shkarkimeve që ka marrë CV-ja juaj duke e shpërndarë atë me publikun."
|
msgstr "Ju mund të gjurmoni numrin e shikimeve dhe shkarkimeve që ka marrë CV-ja juaj duke e shpërndarë atë me publikun."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr "Keni mesazhe të palexuara!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Llogaria juaj dhe të gjitha të dhënat tuaja janë fshirë me sukses."
|
msgstr "Llogaria juaj dhe të gjitha të dhënat tuaja janë fshirë me sukses."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1733,7 +1808,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."
|
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."
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr "Fjalëkalimi juaj u përditësua."
|
msgstr "Fjalëkalimi juaj u përditësua."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: sr\n"
|
"Language: sr\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:32\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Serbian (Cyrillic)\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"
|
"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"
|
||||||
@ -30,27 +30,27 @@ msgstr ""
|
|||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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 ""
|
||||||
|
|
||||||
#: 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."
|
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||||
msgstr ""
|
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."
|
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -102,8 +102,8 @@ msgstr ""
|
|||||||
msgid "Add a custom field"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -117,7 +117,7 @@ msgstr ""
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr ""
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr "."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -191,6 +199,18 @@ msgstr ""
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,7 +229,7 @@ msgstr ""
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -246,8 +266,8 @@ msgstr "Од заједнице, за заједницу."
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Откажи"
|
msgstr "Откажи"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr ""
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr ""
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr "Компанија"
|
msgstr "Компанија"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr ""
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -351,7 +371,12 @@ msgstr "Направи један сада"
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr "Направи пример резимеа"
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -386,10 +411,10 @@ msgstr "Тамна"
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Датум"
|
msgstr "Датум"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Датум или опсег датума"
|
msgstr "Датум или опсег датума"
|
||||||
@ -407,11 +432,15 @@ msgstr "Обриши"
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr "Обриши налог"
|
msgstr "Обриши налог"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Опис"
|
msgstr "Опис"
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr "Дизајнирајте једностране/вишестране р
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr "Онемогући"
|
msgstr "Онемогући"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||||
msgid "Disable 2FA"
|
msgid "Disable 2FA"
|
||||||
msgstr "Онемогући двофакторску аутентификацију"
|
msgstr "Онемогући двофакторску аутентификацију"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr "Одбаци"
|
msgstr "Одбаци"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Документација"
|
msgstr "Документација"
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr "Документација"
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr "Немате налог?"
|
msgstr "Немате налог?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr "Не знате одакле да почнете? Погледајте документацију!"
|
msgstr "Не знате одакле да почнете? Погледајте документацију!"
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr "Не знате одакле да почнете? Погледајте
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr "Не видите свој језик? <0>Помозите у превођењу апликације.</0>"
|
msgstr "Не видите свој језик? <0>Помозите у превођењу апликације.</0>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr "Донирајте Реактивном Резимеу"
|
msgstr "Донирајте Реактивном Резимеу"
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr "Донирајте Реактивном Резимеу"
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr "Преузми PDF"
|
msgstr "Преузми PDF"
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr "Дуплирај постојећу ставку"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Дуплирај постојећи резиме"
|
msgstr "Дуплирај постојећи резиме"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Измени"
|
msgstr "Измени"
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr "Ефекти"
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||||
msgid "Enable 2FA"
|
msgid "Enable 2FA"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr ""
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -544,6 +576,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -564,19 +597,19 @@ msgstr ""
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr ""
|
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"
|
msgid "Font Family"
|
||||||
msgstr ""
|
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"
|
msgid "Font Size"
|
||||||
msgstr ""
|
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"
|
msgid "Font Subset"
|
||||||
msgstr ""
|
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"
|
msgid "Font Variants"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr ""
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr ""
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr ""
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr "Дајте свом старом резимеу ново име."
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr "Иди на контролну таблу"
|
msgstr "Иди на контролну таблу"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr "Google"
|
msgstr "Google"
|
||||||
@ -651,7 +688,7 @@ msgstr "Google"
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr "Сиви тонови"
|
msgstr "Сиви тонови"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr "Мрежа"
|
msgstr "Мрежа"
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr "Овде можете ажурирати свој профил да бисте прилагодили и персонализовали своје корисничко искуство."
|
msgstr "Овде можете ажурирати свој профил да бисте прилагодили и персонализовали своје корисничко искуство."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Сакривено"
|
msgstr "Сакривено"
|
||||||
@ -677,7 +714,7 @@ msgstr "Сакривено"
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr "Сакриј"
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr "Сакриј иконе"
|
msgstr "Сакриј иконе"
|
||||||
|
|
||||||
@ -734,7 +771,7 @@ msgstr "Побољшајте писање"
|
|||||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||||
msgstr "Уколико нисте у могућности да скенирате овај QR код, такође можете ископирати-налепити овај линк у своју апликацију за аутентификацију."
|
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."
|
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||||
msgstr "У овом одељку можете променити своју лозинку и омогућити/онемогућити двофакторску аутентикацију."
|
msgstr "У овом одељку можете променити своју лозинку и омогућити/онемогућити двофакторску аутентикацију."
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ msgid "In this section, you can delete your account and all the data associated
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr ""
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr "Ниво"
|
msgstr "Ниво"
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr ""
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr "Светла или тамна тема"
|
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"
|
msgid "Line Height"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr ""
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr ""
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -923,7 +962,7 @@ msgstr ""
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr ""
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||||
msgid "New Password"
|
msgid "New Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1009,16 +1049,16 @@ msgstr ""
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
|
||||||
msgid "OpenAI/Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: 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"
|
msgid "Options"
|
||||||
msgstr "Опције"
|
msgstr "Опције"
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr ""
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr ""
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr ""
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr ""
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr ""
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1262,15 +1300,15 @@ msgstr ""
|
|||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr ""
|
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"
|
msgid "Search for a font family"
|
||||||
msgstr ""
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr ""
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr ""
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr ""
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1330,7 +1369,7 @@ msgstr ""
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1408,6 +1447,7 @@ msgid "Start building your resume by giving it a name."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1422,17 +1462,17 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr ""
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1465,8 +1514,12 @@ msgstr ""
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: apps/client/src/services/errors/translate-error.ts:49
|
||||||
@ -1474,6 +1527,7 @@ msgid "The resume you want to update is locked, please unlock if you wish to mak
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
#: 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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr ""
|
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"
|
msgid "Underline Links"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr ""
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,7 +1714,7 @@ msgstr ""
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1665,11 +1728,11 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr ""
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr ""
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr ""
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr ""
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1733,7 +1808,7 @@ msgstr ""
|
|||||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||||
msgstr ""
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: sv\n"
|
"Language: sv\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:40\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Swedish\n"
|
"Language-Team: Swedish\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -30,27 +30,27 @@ msgstr "{templatesCount} CV-mallar att välja mellan"
|
|||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr "{value, plural, one {Kolumn} other {Kolumner}}"
|
msgstr "{value, plural, one {Kolumn} other {Kolumner}}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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>Jag byggde Reactive Resume mestadels själv på min fritid, med mycket hjälp från andra fantastiska bidragsgivare med öppen källkod.</0> <1>Om du gillar appen och vill stödja att hålla den gratis för alltid, vänligen donera vad du har råd att ge.</1>"
|
msgstr "<0>Jag byggde Reactive Resume mestadels själv på min fritid, med mycket hjälp från andra fantastiska bidragsgivare med öppen källkod.</0> <1>Om du gillar appen och vill stödja att hålla den gratis för alltid, vänligen donera vad du har råd att ge.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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>Jag är säker på att appen inte är perfekt, men jag vill att den ska vara det.</0> <1>Om du stötte på några problem när du skapade ditt CV, eller har en idé som skulle hjälpa dig och andra användare att skapa ditt CV enklare, släpp ett problem på repo:t eller skicka ett e-postmeddelande till mig om det.</1>"
|
msgstr "<0>Jag är säker på att appen inte är perfekt, men jag vill att den ska vara det.</0> <1>Om du stötte på några problem när du skapade ditt CV, eller har en idé som skulle hjälpa dig och andra användare att skapa ditt CV enklare, släpp ett problem på repo:t eller skicka ett e-postmeddelande till mig om det.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 "<0>Obs! </0>Genom att använda OpenAI API:et, godkänner och accepterar du <1>användarvillkoren</1> och <2>integritetspolicyn</2> som beskrivs av OpenAI. Observera att Reactive Resume inte bär något ansvar för felaktigt eller obehörigt utnyttjande av tjänsten, och eventuella återverkningar eller ansvar vilar enbart på användaren."
|
msgstr "<0>Obs! </0>Genom att använda OpenAI API:et, godkänner och accepterar du <1>användarvillkoren</1> och <2>integritetspolicyn</2> som beskrivs av OpenAI. Observera att Reactive Resume inte bär något ansvar för felaktigt eller obehörigt utnyttjande av tjänsten, och eventuella återverkningar eller ansvar vilar enbart på användaren."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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>"
|
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."
|
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."
|
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."
|
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."
|
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"
|
msgid "Add a custom field"
|
||||||
msgstr "Lägga till ett anpassat fält"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Lägg till ett nytt objekt"
|
msgstr "Lägg till ett nytt objekt"
|
||||||
@ -117,7 +117,7 @@ msgstr "Lägg till ett nytt objekt"
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr "Lägg till ett nytt avsnitt"
|
msgstr "Lägg till ett nytt avsnitt"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr "Lägg till ny sida"
|
msgstr "Lägg till ny sida"
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr "Har du redan ett konto?"
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr "Ett fel inträffade när filen validerades."
|
msgstr "Ett fel inträffade när filen validerades."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr "Ett internt serverfel uppstod."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr "Ett oväntat fel uppstod."
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr "och många fler..."
|
msgstr "och många fler..."
|
||||||
@ -191,6 +199,18 @@ msgstr "Tillgänglig på {languagesCount} språk"
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr "Utdelare"
|
msgstr "Utdelare"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr "Azure API-version"
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr "Azure OpenAI Base URL, distributionsnamn (modell) och API-version krävs när du använder Azure OpenAI."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr "Azure OpenAI Resurs-URL"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,7 +229,7 @@ msgstr "Reservkod"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Säkerhetskopieringskoder får endast innehålla små bokstäver eller siffror och måste bestå av exakt 10 tecken."
|
msgstr "Säkerhetskopieringskoder får endast innehålla små bokstäver eller siffror och måste bestå av exakt 10 tecken."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "Bas-URL"
|
msgstr "Bas-URL"
|
||||||
|
|
||||||
@ -246,8 +266,8 @@ msgstr "Av gemenskapen, för gemenskapen."
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Avbryt"
|
msgstr "Avbryt"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr "Tillfällig"
|
msgstr "Tillfällig"
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr "Tillfällig"
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr "Centrera ritbordet"
|
msgstr "Centrera ritbordet"
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr "Ändra språk"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr "Ändra lösenord"
|
msgstr "Ändra lösenord"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr "Ändra ton"
|
msgstr "Ändra ton"
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr "Kolumner"
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr "Företag"
|
msgstr "Företag"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr "Självsäker"
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Fortsätt"
|
msgstr "Fortsätt"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Kopiera"
|
msgstr "Kopiera"
|
||||||
|
|
||||||
@ -351,7 +371,12 @@ msgstr "Skapa ett nu"
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr "Skapa ett exempel på CV"
|
msgstr "Skapa ett exempel på CV"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||||
|
msgid "Current Password"
|
||||||
|
msgstr "Befintligt Lösenord"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr "Anpassad CSS"
|
msgstr "Anpassad CSS"
|
||||||
@ -386,10 +411,10 @@ msgstr "Mörk"
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Datum"
|
msgstr "Datum"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Datum eller datumintervall"
|
msgstr "Datum eller datumintervall"
|
||||||
@ -407,11 +432,15 @@ msgstr "Radera"
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr "Radera konto"
|
msgstr "Radera konto"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr "Namn på utplacering"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Beskrivning"
|
msgstr "Beskrivning"
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr "Designa CV:n på en eller flera sidor"
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr "Inaktivera"
|
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"
|
msgid "Disable 2FA"
|
||||||
msgstr "Inaktivera 2FA"
|
msgstr "Inaktivera 2FA"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr "Kasta"
|
msgstr "Kasta"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Dokumentation"
|
msgstr "Dokumentation"
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr "Dokumentation"
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr "Har du inget konto?"
|
msgstr "Har du inget konto?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr "Vet du inte var du ska börja? Besök dokumentationen!"
|
msgstr "Vet du inte var du ska börja? Besök dokumentationen!"
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr "Vet du inte var du ska börja? Besök dokumentationen!"
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr "Ser du inte ditt språk? <0>Hjälp med att översätta appen.</0>"
|
msgstr "Ser du inte ditt språk? <0>Hjälp med att översätta appen.</0>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr "Donera till Reactive Resume"
|
msgstr "Donera till Reactive Resume"
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr "Donera till Reactive Resume"
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr "Ladda ner en JSON-ögonblicksbild av ditt CV. Den här filen kan användas för att importera ditt CV i framtiden, eller kan till och med delas med andra för att samarbeta."
|
msgstr "Ladda ner en JSON-ögonblicksbild av ditt CV. Den här filen kan användas för att importera ditt CV i framtiden, eller kan till och med delas med andra för att samarbeta."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
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."
|
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/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr "Ladda ner PDF"
|
msgstr "Ladda ner PDF"
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr "Duplicera ett befintligt objekt"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Duplicera ett befintligt CV"
|
msgstr "Duplicera ett befintligt CV"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Redigera"
|
msgstr "Redigera"
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr "Effekter"
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr "E-post"
|
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"
|
msgid "Enable 2FA"
|
||||||
msgstr "Aktivera 2FA"
|
msgstr "Aktivera 2FA"
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr "Ange engångslösenordet från din autentiseringsapp nedan."
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr "Ange din e-postadress så skickar vi en länk för att återställa ditt lösenord om kontot finns."
|
msgstr "Ange din e-postadress så skickar vi en länk för att återställa ditt lösenord om kontot finns."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr "Fel {statusCode}"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr "Fel"
|
msgstr "Fel"
|
||||||
@ -544,6 +576,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."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr "Exportera"
|
msgstr "Exportera"
|
||||||
@ -564,19 +597,19 @@ msgstr "Äntligen,"
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr "Fixa stavning och grammatik"
|
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"
|
msgid "Font Family"
|
||||||
msgstr "Typsnittsfamilj"
|
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"
|
msgid "Font Size"
|
||||||
msgstr "Textstorlek"
|
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"
|
msgid "Font Subset"
|
||||||
msgstr "Typsnittsundergrupp"
|
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"
|
msgid "Font Variants"
|
||||||
msgstr "Typsnittsvarianter"
|
msgstr "Typsnittsvarianter"
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr "Typsnittsvarianter"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "Exempelvis kan information om vilka företag du skickat detta CV till eller länkarna till jobbeskrivningarna noteras här."
|
msgstr "Exempelvis kan information om vilka företag du skickat detta CV till eller länkarna till jobbeskrivningarna noteras här."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Glöm"
|
msgstr "Glöm"
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr "Glömt ditt lösenord?"
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr "Format"
|
msgstr "Format"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr "Hittade du en bugg eller har du en idé om en ny funktion?"
|
msgstr "Hittade du en bugg eller har du en idé om en ny funktion?"
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr "Hittade du en bugg eller har du en idé om en ny funktion?"
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr "Gratis, för alltid"
|
msgstr "Gratis, för alltid"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr "Vänlig"
|
msgstr "Vänlig"
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr "Ge ditt gamla CV ett nytt namn."
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr "Gå till dashboard"
|
msgstr "Gå till dashboard"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr "Gå till startsidan"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr "Google"
|
msgstr "Google"
|
||||||
@ -651,7 +688,7 @@ msgstr "Google"
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr "Gråskala"
|
msgstr "Gråskala"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr "Rutnät"
|
msgstr "Rutnät"
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr "Här kan du uppdatera din profil för att anpassa och personifiera din upplevelse."
|
msgstr "Här kan du uppdatera din profil för att anpassa och personifiera din upplevelse."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Dolt"
|
msgstr "Dolt"
|
||||||
@ -677,7 +714,7 @@ msgstr "Dolt"
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr "Dölj"
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr "Dölj ikoner"
|
msgstr "Dölj ikoner"
|
||||||
|
|
||||||
@ -734,7 +771,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."
|
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."
|
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."
|
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."
|
msgstr "I det här avsnittet kan du ändra ditt lösenord och aktivera/inaktivera tvåfaktorsautentisering."
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ 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>."
|
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/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Information"
|
msgstr "Information"
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr "sven.svensson@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Nyckelord"
|
msgstr "Nyckelord"
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr "Senast uppdaterad {lastUpdated}"
|
msgstr "Senast uppdaterad {lastUpdated}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Layout"
|
msgstr "Layout"
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr "Brev"
|
msgstr "Brev"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr "Nivå"
|
msgstr "Nivå"
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr "Ljus"
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr "Ljust eller mörkt tema"
|
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"
|
msgid "Line Height"
|
||||||
msgstr "Radavstånd"
|
msgstr "Radavstånd"
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr "Radavstånd"
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr "LinkedIn, JSON CV, osv."
|
msgstr "LinkedIn, JSON CV, osv."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr "Lista"
|
msgstr "Lista"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr "Logga ut"
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr "Har du tappat bort din enhet?"
|
msgstr "Har du tappat bort din enhet?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr "Huvud"
|
msgstr "Huvud"
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr "mars 2023"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr "mars 2023 - nutid"
|
msgstr "mars 2023 - nutid"
|
||||||
@ -923,7 +962,7 @@ msgstr "mars 2023 - nutid"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Marginal"
|
msgstr "Marginal"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "Högsta antal tokens"
|
msgstr "Högsta antal tokens"
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr "Högsta antal tokens"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "MIT-licens"
|
msgstr "MIT-licens"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "Modell"
|
msgstr "Modell"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr "Namn"
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Nätverk"
|
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"
|
msgid "New Password"
|
||||||
msgstr "Nytt lösenord"
|
msgstr "Nytt lösenord"
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr "Obs! Detta kommer att göra ditt konto mindre säkert."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Anteckningar"
|
msgstr "Anteckningar"
|
||||||
@ -1009,16 +1049,16 @@ msgstr "OpenAI returnerade inga val för din text."
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "OpenAI-integration"
|
msgstr "OpenAI-integration"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
msgstr "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr "OpenAI/Ollama API-nyckel"
|
msgstr "OpenAI/Ollama API-nyckel"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
|
||||||
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/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"
|
msgid "Options"
|
||||||
msgstr "Inställningar"
|
msgstr "Inställningar"
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr "Organisation"
|
msgstr "Organisation"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "Sida"
|
msgstr "Sida"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr "Sidan {pageNumber}"
|
msgstr "Sidan {pageNumber}"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr "Lösenord"
|
msgstr "Lösenord"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr "PDF"
|
msgstr "PDF"
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr "Drivs av <0>Simple Icons</0>"
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr "Primärfärg"
|
msgstr "Primärfärg"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr "Integritetspolicy"
|
msgstr "Integritetspolicy"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr "Professionell"
|
msgstr "Professionell"
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr "Offentlig"
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "Utgivare"
|
msgstr "Utgivare"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr "Lyfta en fråga"
|
msgstr "Lyfta en fråga"
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr "Lyfta en fråga"
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr "Reactive Resume trivs tack vare sin livfulla gemenskap. Projektet har m
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Gör om"
|
msgstr "Gör om"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Ta bort"
|
msgstr "Ta bort"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr "Ta bort sida"
|
msgstr "Ta bort sida"
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr "Skicka e-postbekräftelselänk igen"
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr "Återställ"
|
msgstr "Återställ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr "Återställ layout"
|
msgstr "Återställ layout"
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr "Återställ zoom"
|
msgstr "Återställ zoom"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr "CV"
|
msgstr "CV"
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr "Avrundad"
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Spara ändringar"
|
msgstr "Spara ändringar"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "Spara lokalt"
|
msgstr "Spara lokalt"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Sparad"
|
msgstr "Sparad"
|
||||||
|
|
||||||
@ -1262,15 +1300,15 @@ msgstr "Bläddra till Pan"
|
|||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr "Bläddra till 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"
|
msgid "Search for a font family"
|
||||||
msgstr "Sök efter en typsnittsfamilj"
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr "Sök efter en typsnittsundergrupp"
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr "Sök efter en typsnittsvariant"
|
msgstr "Sök efter en typsnittsvariant"
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr "Sök efter ett språk"
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr "Säker med tvåfaktorsautentisering"
|
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"
|
msgid "Security"
|
||||||
msgstr "Säkerhet"
|
msgstr "Säkerhet"
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr "Självvärd med Docker"
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr "Skicka e-post"
|
msgstr "Skicka e-post"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr "Skicka ett meddelande till mig"
|
msgstr "Skicka ett meddelande till mig"
|
||||||
|
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr "Ställ in tvåfaktorsautentisering på ditt konto"
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr "Delning"
|
msgstr "Delning"
|
||||||
@ -1330,7 +1369,7 @@ msgstr "Visa radbrytning"
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr "Visa sidnummer"
|
msgstr "Visa sidnummer"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Sidofält"
|
msgstr "Sidofält"
|
||||||
|
|
||||||
@ -1408,6 +1447,7 @@ msgid "Start building your resume by giving it a name."
|
|||||||
msgstr "Börja bygga ditt CV genom att ge det ett namn."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr "Statistik"
|
msgstr "Statistik"
|
||||||
@ -1422,17 +1462,17 @@ msgstr "Lagra dina reservkoder säkert"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr "Sammanfattning"
|
msgstr "Sammanfattning"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr "Stöd appen genom att donera vad du kan!"
|
msgstr "Stöd appen genom att donera vad du kan!"
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr "Stödjer Reactive Resume"
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr "Stöder A4/Brev-sidformat"
|
msgstr "Stöder A4/Brev-sidformat"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr "Växla till mörkt läge"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr "Växla till ljusläge"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr "System"
|
msgstr "System"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "Mall"
|
msgstr "Mall"
|
||||||
@ -1465,15 +1514,20 @@ msgstr "Vittnesmål"
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr "Textfärg"
|
msgstr "Textfärg"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
msgstr "Lösenorden du angav stämmer inte överens."
|
msgstr "Sidan du letar efter finns inte."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
|
msgstr "Begäran är ogiltig."
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: 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."
|
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."
|
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/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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,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:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr "Tvåfaktorsautentisering"
|
msgstr "Tvåfaktorsautentisering"
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr "Typ av studie"
|
msgstr "Typ av studie"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr "Typografi"
|
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"
|
msgid "Underline Links"
|
||||||
msgstr "Understryk länkar"
|
msgstr "Understryk länkar"
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr "URL"
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr "URL måste börja med https://"
|
msgstr "URL måste börja med https://"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr "Använd Azure OpenAI"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr "Använd systemtema"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,7 +1714,7 @@ msgstr "Version 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Visningar"
|
msgstr "Visningar"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Synlig"
|
msgstr "Synlig"
|
||||||
|
|
||||||
@ -1665,11 +1728,11 @@ msgstr "Vi verifierar din e-postadress endast för att säkerställa att vi kan
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr "Webbplats"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Vad är nytt i den senaste versionen"
|
msgstr "Vad är nytt i den senaste versionen"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr "Du saknar behörighet att komma åt den här sidan."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Du kan lägga till flera nyckelord genom att separera dem med ett kommatecken eller trycka på enter."
|
msgstr "Du kan lägga till flera nyckelord genom att separera dem med ett kommatecken eller trycka på enter."
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr "Du kan lägga till flera nyckelord genom att separera dem med ett kommat
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Du kan också ange ditt användarnamn."
|
msgstr "Du kan också ange ditt användarnamn."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr "Du kan också integrera med Ollama helt enkelt genom att ställa in API-nyckeln till `sk-1234567890abcdef` och bas-URL:en till din Ollama-URL, dvs `http://localhost:11434/v1`. Du kan också välja och vraka bland modeller och ställa in max-tokens enligt dina önskemål."
|
msgstr "Du kan också integrera med Azure OpenAI genom att aktivera kryssrutan <0>Använd Azure OpenAI</0> och ställa in resurs-URL till din Azure OpenAI-resurs: <1>https://your-resource. penai.azure.com</1>. Ställ in distributionsnamnet i modellfältet och ange lämplig API-version för din Azure distribution."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
msgstr "Du kan använda OpenAI API:et för att hjälpa dig att skapa innehåll eller förbättra ditt skrivande medan du skriver ditt CV."
|
msgstr "Du kan också integrera med Ollama genom att ställa in API-nyckeln till<0>sk-1234567890abcdef</0> och bas-URL till din Ollama URL, dvs .<1>http://localhost:11434/v1</1>. Du kan också välja och välja modeller och ställa in max polletter enligt dina önskemål."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
|
msgstr "Du kan använda OpenAI API, Azure OpenAI, eller Ollama för att hjälpa dig att generera innehåll eller förbättra ditt skrivande samtidigt som du skriver ditt CV."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Du kan spåra antalet visningar ditt CV har fått, eller hur många personer som har laddat ner CV:t genom att aktivera offentlig delning."
|
msgstr "Du kan spåra antalet visningar ditt CV har fått, eller hur många personer som har laddat ner CV:t genom att aktivera offentlig delning."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr "Du har inte behörighet att komma åt denna sida."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "Du har möjlighet att <0>skaffa din egen OpenAI API-nyckel</0>. Den här nyckeln ger dig möjlighet att utnyttja API:et som du vill. Alternativt, om du vill inaktivera AI-funktionerna i Reactive Resume helt och hållet, kan du helt enkelt ta bort nyckeln från dina inställningar."
|
msgstr "Du har möjlighet att <0>skaffa din egen OpenAI API-nyckel</0>. Den här nyckeln ger dig möjlighet att utnyttja API:et som du vill. Alternativt, om du vill inaktivera AI-funktionerna i Reactive Resume helt och hållet, kan du helt enkelt ta bort nyckeln från dina inställningar."
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr "Du har fått mail!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Ditt konto och alla dina uppgifter har tagits bort. Hej då!"
|
msgstr "Ditt konto och alla dina uppgifter har tagits bort. Hej då!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "Din API-nyckel lagras säkert i webbläsarens lokala lagring och används endast när du gör förfrågningar till OpenAI via deras officiella SDK. Du kan vara säker på att din nyckel inte överförs till någon extern server förutom när du interagerar med OpenAI:s tjänster."
|
msgstr "Din API-nyckel lagras säkert i webbläsarens lokala lagring och används endast när du gör förfrågningar till OpenAI via deras officiella SDK. Du kan vara säker på att din nyckel inte överförs till någon extern server förutom när du interagerar med OpenAI:s tjänster."
|
||||||
|
|
||||||
@ -1733,7 +1808,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."
|
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."
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr "Ditt lösenord har uppdaterats."
|
msgstr "Ditt lösenord har uppdaterats."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: th\n"
|
"Language: th\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:40\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Thai\n"
|
"Language-Team: Thai\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
@ -20,7 +20,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:171
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:171
|
||||||
msgid "You have enabled two-factor authentication successfully."
|
msgid "You have enabled two-factor authentication successfully."
|
||||||
msgstr "เปิดใช้งานการยืนยันตัวตนแบบสองปัจจัย (2FA) สำเร็จ"
|
msgstr "เปิดใช้งานการยืนยันตัวตนแบบสองปัจจัยสำเร็จ"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:57
|
#: apps/client/src/pages/home/sections/features/index.tsx:57
|
||||||
msgid "{templatesCount} resume templates to choose from"
|
msgid "{templatesCount} resume templates to choose from"
|
||||||
@ -30,27 +30,27 @@ msgstr "มีเทมเพลตเรซูเม่ {templatesCount} แบ
|
|||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr "{value, plural, one {คอลัมน์} other {คอลัมน์}}"
|
msgstr "{value, plural, one {คอลัมน์} other {คอลัมน์}}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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 ด้วยตัวเองเป็นส่วนใหญ่ในเวลาว่าง และได้รับความช่วยเหลือมากมายจากนักพัฒนาโอเพนซอร์สคนอื่นๆ</0><1>ถ้าเกิดว่าคุณชอบแอปนี้และอยากสนับสนุนให้มันฟรีตลอดไป โปรดบริจาคเงินช่วยตามกำลังด้วยนะครับ</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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>ถ้าคุณเจอปัญหาใดๆ ระหว่างที่สร้างเรซูเม่ หรือมีไอเดียดีๆ ที่จะช่วยให้คุณและคนอื่นๆ สร้างเรซูเม่ได้ง่ายขึ้น ให้เปิด issue มาที่ repository ของแอปหรือส่งอีเมลหาผมได้เลยครับ</1>"
|
msgstr "<0>ผมมั่นใจว่าแอปยังไม่สมบูรณ์ดี แต่ผมก็อยากให้มันเป็นอย่างนั้น</0><1>ถ้าคุณเจอปัญหาใดๆ ระหว่างที่สร้างเรซูเม่ หรือมีไอเดียดีๆ ที่จะช่วยให้คุณและคนอื่นๆ สร้างเรซูเม่ได้ง่ายขึ้น ให้เปิด issue มาที่ repository ของแอปหรือส่งอีเมลหาผมได้เลยครับ</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 "<0>หมายเหตุ: </0>การใช้ OpenAI API หมายความว่า คุณรับรู้และยอมรับ<1>ข้อกำหนดการใช้บริการ</1>และ<2>นโยบายความเป็นส่วนตัว</2>ของ OpenAI โปรดทราบว่า Reactive Resume ไม่รับผิดชอบการใช้บริการที่ไม่เหมาะสมหรือไม่ได้รับการอนุญาต และความรับผิดชอบเป็นของผู้ใช้แต่เพียงผู้เดียว"
|
msgstr "<0>หมายเหตุ: </0>การใช้ OpenAI API หมายความว่า คุณรับรู้และยอมรับ<1>ข้อกำหนดการใช้บริการ</1>และ<2>นโยบายความเป็นส่วนตัว</2>ของ OpenAI โปรดทราบว่า Reactive Resume ไม่รับผิดชอบการใช้บริการที่ไม่เหมาะสมหรือไม่ได้รับการอนุญาต และความรับผิดชอบเป็นของผู้ใช้แต่เพียงผู้เดียว"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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>"
|
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."
|
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||||
msgstr "<0>การยืนยันตัวตนแบบสองขั้นตอนยังไม่ได้เปิดใช้งาน</0> คุณสามารถเปิดใช้งานได้โดยการเพิ่มแอปยืนยันตัวตนลงในบัญชีของคุณ"
|
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."
|
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||||
msgstr "<0>การยืนยันตัวตนแบบสองขั้นตอนเปิดใช้งานแล้ว</0> คุณจะถูกขอให้กรอกรหัสทุกครั้งที่คุณเข้าสู่ระบบ"
|
msgstr "<0>การยืนยันตัวตนแบบสองขั้นตอนเปิดใช้งานแล้ว</0> คุณจะถูกขอให้กรอกรหัสทุกครั้งที่คุณเข้าสู่ระบบ"
|
||||||
|
|
||||||
@ -102,8 +102,8 @@ msgstr "บัญชี"
|
|||||||
msgid "Add a custom field"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "เพิ่มรายการใหม่"
|
msgstr "เพิ่มรายการใหม่"
|
||||||
@ -117,7 +117,7 @@ msgstr "เพิ่มรายการใหม่"
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr "เพิ่มส่วนใหม่"
|
msgstr "เพิ่มส่วนใหม่"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr "เพิ่มหน้าใหม่"
|
msgstr "เพิ่มหน้าใหม่"
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr "มีบัญชีแล้วใช่หรือไม่?"
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr "เกิดข้อผิดพลาดขณะตรวจสอบไฟล์"
|
msgstr "เกิดข้อผิดพลาดขณะตรวจสอบไฟล์"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr "เกิดข้อผิดพลาดภายในเซิร์ฟเวอร์"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr "เกิดข้อผิดพลาดที่ไม่คาดคิด"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr "และอีกมากมายๆ..."
|
msgstr "และอีกมากมายๆ..."
|
||||||
@ -148,7 +156,7 @@ msgstr "ทุกคนที่มีลิงค์นี้สามารถ
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:41
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:41
|
||||||
msgid "Apply Custom CSS"
|
msgid "Apply Custom CSS"
|
||||||
msgstr ""
|
msgstr "ใช้งาน CSS ที่กำหนดเอง"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
@ -191,6 +199,18 @@ msgstr "มีให้บริการใน {languagesCount} ภาษา"
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr "ผู้มอบรางวัล"
|
msgstr "ผู้มอบรางวัล"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr "เวอร์ชัน API ของ Azure"
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr "จำเป็นต้องใช้ URL ฐานของ Azure OpenAI ชื่อการปรับใช้ (โมเดล) และเวอร์ชัน API เมื่อใช้ Azure OpenAI"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr "URL ทรัพยากร Azure OpenAI"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,7 +229,7 @@ msgstr "รหัสสำรอง"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "รหัสสำรองอาจมีเฉพาะตัวอักษรพิมพ์เล็กหรือตัวเลขเท่านั้น และต้องมีจำนวนอักษร 10 ตัวเท่านั้น"
|
msgstr "รหัสสำรองอาจมีเฉพาะตัวอักษรพิมพ์เล็กหรือตัวเลขเท่านั้น และต้องมีจำนวนอักษร 10 ตัวเท่านั้น"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "Base URL"
|
msgstr "Base URL"
|
||||||
|
|
||||||
@ -246,8 +266,8 @@ msgstr "โดยชุมชน เพื่อชุมชน"
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "ยกเลิก"
|
msgstr "ยกเลิก"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr "สบายๆ"
|
msgstr "สบายๆ"
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr "สบายๆ"
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr "จัดหน้าไว้ตรงกลาง"
|
msgstr "จัดหน้าไว้ตรงกลาง"
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr "เปลี่ยนภาษา"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr "เปลี่ยนรหัสผ่าน"
|
msgstr "เปลี่ยนรหัสผ่าน"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr "เปลี่ยนโทน"
|
msgstr "เปลี่ยนโทน"
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr "คอลัมน์"
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr "บริษัท"
|
msgstr "บริษัท"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr "มั่นใจ"
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "ทำต่อ"
|
msgstr "ทำต่อ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "คัดลอก"
|
msgstr "คัดลอก"
|
||||||
|
|
||||||
@ -351,10 +371,15 @@ msgstr "สร้างตอนนี้เลย"
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr "สร้างเรซูเม่ตัวอย่าง"
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr ""
|
msgstr "CSS ที่กำหนดเอง"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:62
|
#: apps/client/src/pages/home/sections/features/index.tsx:62
|
||||||
msgid "Custom resume sections"
|
msgid "Custom resume sections"
|
||||||
@ -386,10 +411,10 @@ msgstr "มืด"
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "วันที่"
|
msgstr "วันที่"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "วันที่หรือช่วงวันที่"
|
msgstr "วันที่หรือช่วงวันที่"
|
||||||
@ -407,11 +432,15 @@ msgstr "ลบ"
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr "ลบบัญชี"
|
msgstr "ลบบัญชี"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr "ชื่อการปรับใช้"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "รายละเอียด"
|
msgstr "รายละเอียด"
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr "ออกแบบเรซูเม่หน้าเดียว/ห
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr "ปิดใช้งาน"
|
msgstr "ปิดใช้งาน"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||||
msgid "Disable 2FA"
|
msgid "Disable 2FA"
|
||||||
msgstr "ปิดใช้งาน 2FA"
|
msgstr "ปิดใช้งาน 2FA"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr "ยกเลิก"
|
msgstr "ยกเลิก"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "เอกสารอ้างอิง"
|
msgstr "เอกสารอ้างอิง"
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr "เอกสารอ้างอิง"
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr "ยังไม่มีบัญชีเหรอ?"
|
msgstr "ยังไม่มีบัญชีเหรอ?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr "ไม่รู้จะเริ่มจากที่ไหนเหรอ? กดอ่านคู่มือเลย!"
|
msgstr "ไม่รู้จะเริ่มจากที่ไหนเหรอ? กดอ่านคู่มือเลย!"
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr "ไม่รู้จะเริ่มจากที่ไหนเห
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr "ไม่เห็นภาษาของคุณเหรอ? <0>ช่วยแปลแอป</0>"
|
msgstr "ไม่เห็นภาษาของคุณเหรอ? <0>ช่วยแปลแอป</0>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr "บริจาคให้กับ Reactive Resume"
|
msgstr "บริจาคให้กับ Reactive Resume"
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr "บริจาคให้กับ Reactive Resume"
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr "ดาวน์โหลดสแน็ปช็อต JSON ของเรซูเม่ของคุณ ไฟล์นี้สามารถใช้นำเข้าเรซูเม่ของคุณได้ในอนาคต หรือสามารถแชร์กับผู้อื่นเพื่อทำงานร่วมกันได้"
|
msgstr "ดาวน์โหลดสแน็ปช็อต JSON ของเรซูเม่ของคุณ ไฟล์นี้สามารถใช้นำเข้าเรซูเม่ของคุณได้ในอนาคต หรือสามารถแชร์กับผู้อื่นเพื่อทำงานร่วมกันได้"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
msgstr "ดาวน์โหลด PDF เรซูเม่ของคุณ ไฟล์นี้สามารถใช้เพื่อพิมพ์เรซูเม่ของคุณ ส่งให้ผู้สรรหาบุคลากร หรืออัพโหลดบนพอร์ทัลรับสมัครงาน"
|
msgstr "ดาวน์โหลด PDF เรซูเม่ของคุณ ไฟล์นี้สามารถใช้เพื่อพิมพ์เรซูเม่ของคุณ ส่งให้ผู้สรรหาบุคลากร หรืออัพโหลดบนพอร์ทัลรับสมัครงาน"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr "ดาวน์โหลด PDF"
|
msgstr "ดาวน์โหลด PDF"
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr "คัดลอกรายการที่มีอยู่"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "คัดลอกเรซูเม่ที่มีอยู่"
|
msgstr "คัดลอกเรซูเม่ที่มีอยู่"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "แก้ไข"
|
msgstr "แก้ไข"
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr "เอฟเฟกต์"
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr "อีเมล"
|
msgstr "อีเมล"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||||
msgid "Enable 2FA"
|
msgid "Enable 2FA"
|
||||||
msgstr "เปิดใช้งาน 2FA"
|
msgstr "เปิดใช้งาน 2FA"
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr "ป้อนรหัสผ่านแบบครั้งเดีย
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr "ป้อนที่อยู่อีเมลของคุณ และเราจะส่งลิงก์ให้คุณรีเซ็ตรหัสผ่านหากบัญชีนั้นมีอยู่"
|
msgstr "ป้อนที่อยู่อีเมลของคุณ และเราจะส่งลิงก์ให้คุณรีเซ็ตรหัสผ่านหากบัญชีนั้นมีอยู่"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr "Error {statusCode}"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr "ข้อผิดพลาด"
|
msgstr "ข้อผิดพลาด"
|
||||||
@ -544,6 +576,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
|||||||
msgstr "สำรวจเทมเพลตที่มีให้ใช้ใน Reactive Resume และดูเรซูเม่ที่สร้างขึ้นจากเทมเพลตนั้น พวกมันยังสามารถเป็นตัวอย่างเพื่อช่วยในการสร้างเรซูเม่ของคุณต่อไป"
|
msgstr "สำรวจเทมเพลตที่มีให้ใช้ใน Reactive Resume และดูเรซูเม่ที่สร้างขึ้นจากเทมเพลตนั้น พวกมันยังสามารถเป็นตัวอย่างเพื่อช่วยในการสร้างเรซูเม่ของคุณต่อไป"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr "ส่งออก"
|
msgstr "ส่งออก"
|
||||||
@ -564,19 +597,19 @@ msgstr "ในที่สุด"
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr "แก้ไขการสะกดและไวยากรณ์"
|
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"
|
msgid "Font Family"
|
||||||
msgstr "ตระกูลฟอนต์"
|
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"
|
msgid "Font Size"
|
||||||
msgstr "ขนาดฟอนต์"
|
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"
|
msgid "Font Subset"
|
||||||
msgstr "ฟอนต์ย่อย"
|
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"
|
msgid "Font Variants"
|
||||||
msgstr "รูปแบบฟอนต์"
|
msgstr "รูปแบบฟอนต์"
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr "รูปแบบฟอนต์"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "ตัวอย่างเช่น ข้อมูลเกี่ยวกับบริษัทที่คุณส่งเรซูเม่นี้ให้หรือลิงก์ไปยังรายละเอียดงานสามารถเขียนไว้ได้ที่นี่"
|
msgstr "ตัวอย่างเช่น ข้อมูลเกี่ยวกับบริษัทที่คุณส่งเรซูเม่นี้ให้หรือลิงก์ไปยังรายละเอียดงานสามารถเขียนไว้ได้ที่นี่"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "ลืม"
|
msgstr "ลืม"
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr "ลืมรหัสผ่านของคุณใช่หรือ
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr "รูปแบบ"
|
msgstr "รูปแบบ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr "เจอบัค หรือมีไอเดียเกี่ยวกับฟีเจอร์ใหม่หรือเปล่า?"
|
msgstr "เจอบัค หรือมีไอเดียเกี่ยวกับฟีเจอร์ใหม่หรือเปล่า?"
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr "เจอบัค หรือมีไอเดียเกี่ย
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr "ฟรี ตลอดไป"
|
msgstr "ฟรี ตลอดไป"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr "เป็นกันเอง"
|
msgstr "เป็นกันเอง"
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr "ตั้งชื่อใหม่ให้เรซูเม่เก
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr "ไปที่แดชบอร์ด"
|
msgstr "ไปที่แดชบอร์ด"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr "กลับหน้าแรก"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr "Google"
|
msgstr "Google"
|
||||||
@ -651,7 +688,7 @@ msgstr "Google"
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr "ขาวดำ"
|
msgstr "ขาวดำ"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr "ตาราง"
|
msgstr "ตาราง"
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr "คุณสามารถอัปเดตโปรไฟล์เพื่อปรับแต่งประสบการณ์ของคุณได้ที่นี่"
|
msgstr "คุณสามารถอัปเดตโปรไฟล์เพื่อปรับแต่งประสบการณ์ของคุณได้ที่นี่"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "ซ่อนไว้"
|
msgstr "ซ่อนไว้"
|
||||||
@ -677,7 +714,7 @@ msgstr "ซ่อนไว้"
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr "ซ่อน"
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr "ซ่อนไอคอน"
|
msgstr "ซ่อนไอคอน"
|
||||||
|
|
||||||
@ -734,7 +771,7 @@ msgstr "ปรับปรุงการเขียน"
|
|||||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||||
msgstr "ในกรณีที่คุณไม่สามารถสแกนโค้ด QR นี้ได้ คุณสามารถคัดลอกและวางลิงก์นี้ลงในแอปยืนยันตัวตนของคุณได้"
|
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."
|
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||||
msgstr "ในส่วนนี้ คุณสามารถเปลี่ยนรหัสผ่านของคุณและเปิด/ปิดการใช้งานการยืนยันตัวตนแบบสองขั้นตอนได้"
|
msgstr "ในส่วนนี้ คุณสามารถเปลี่ยนรหัสผ่านของคุณและเปิด/ปิดการใช้งานการยืนยันตัวตนแบบสองขั้นตอนได้"
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ msgid "In this section, you can delete your account and all the data associated
|
|||||||
msgstr "ในส่วนนี้ คุณสามารถลบบัญชีของคุณและข้อมูลทั้งหมดที่เกี่ยวข้องกับผู้ใช้ของคุณได้ แต่โปรดจำไว้ว่า <0>การทำเช่นนี้ไม่สามารถย้อนคืนข้อมูลได้</0>"
|
msgstr "ในส่วนนี้ คุณสามารถลบบัญชีของคุณและข้อมูลทั้งหมดที่เกี่ยวข้องกับผู้ใช้ของคุณได้ แต่โปรดจำไว้ว่า <0>การทำเช่นนี้ไม่สามารถย้อนคืนข้อมูลได้</0>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "ข้อมูล"
|
msgstr "ข้อมูล"
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr "somchai.niranam@example.th"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "คีย์เวิร์ด"
|
msgstr "คีย์เวิร์ด"
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr "อัปเดตล่าสุด {lastUpdated}"
|
msgstr "อัปเดตล่าสุด {lastUpdated}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "เค้าโครง"
|
msgstr "เค้าโครง"
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr "จดหมาย"
|
msgstr "จดหมาย"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr "ระดับ"
|
msgstr "ระดับ"
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr "สว่าง"
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr "ธีมสว่างหรือมืด"
|
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"
|
msgid "Line Height"
|
||||||
msgstr "ความสูงของเส้น"
|
msgstr "ความสูงของเส้น"
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr "ความสูงของเส้น"
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr "LinkedIn, เรซูเม่ JSON ฯลฯ"
|
msgstr "LinkedIn, เรซูเม่ JSON ฯลฯ"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr "รายการ"
|
msgstr "รายการ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr "ออกจากระบบ"
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr "อุปกรณ์ของคุณสูญหายใช่ไหม?"
|
msgstr "อุปกรณ์ของคุณสูญหายใช่ไหม?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr "ส่วนหลัก"
|
msgstr "ส่วนหลัก"
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr "มีนาคม 2566"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr "มีนาคม 2566 - ปัจจุบัน"
|
msgstr "มีนาคม 2566 - ปัจจุบัน"
|
||||||
@ -923,7 +962,7 @@ msgstr "มีนาคม 2566 - ปัจจุบัน"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "ระยะขอบ"
|
msgstr "ระยะขอบ"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "Max Tokens"
|
msgstr "Max Tokens"
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr "Max Tokens"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "ใบอนุญาต MIT"
|
msgstr "ใบอนุญาต MIT"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "โมเดล"
|
msgstr "โมเดล"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr "ชื่อ"
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "ชื่อเว็บไซต์"
|
msgstr "ชื่อเว็บไซต์"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||||
msgid "New Password"
|
msgid "New Password"
|
||||||
msgstr "รหัสผ่านใหม่"
|
msgstr "รหัสผ่านใหม่"
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr "หมายเหตุ: บัญชีของคุณจะปลอดภัยน้อยลงหากทำเช่นนี้"
|
msgstr "หมายเหตุ: บัญชีของคุณจะปลอดภัยน้อยลงหากทำเช่นนี้"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "โน้ต"
|
msgstr "โน้ต"
|
||||||
@ -1009,16 +1049,16 @@ msgstr "OpenAI ไม่ได้ส่งตัวเลือกใดๆ ใ
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "การใช้ระบบ OpenAI"
|
msgstr "การใช้ระบบ OpenAI"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
msgstr ""
|
msgstr "การผสานรวม OpenAI/Azure กับ OpenAI/Ollama"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama Integration"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr ""
|
msgstr "API คีย์ของ OpenAI/Ollama"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: 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"
|
msgid "Options"
|
||||||
msgstr "การตั้งค่า"
|
msgstr "การตั้งค่า"
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr "องค์กร"
|
msgstr "องค์กร"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "หน้า"
|
msgstr "หน้า"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr ""
|
msgstr "หน้า {pageNumber}"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr "รหัสผ่าน"
|
msgstr "รหัสผ่าน"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr "PDF"
|
msgstr "PDF"
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr "ขับเคลื่อนโดย <0>Simple Icons</0>"
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr "สีหลัก"
|
msgstr "สีหลัก"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr "นโยบายความเป็นส่วนตัว"
|
msgstr "นโยบายความเป็นส่วนตัว"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr "มืออาชีพ"
|
msgstr "มืออาชีพ"
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr "สาธารณะ"
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "สำนักพิมพ์"
|
msgstr "สำนักพิมพ์"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr "แจ้งปัญหา"
|
msgstr "แจ้งปัญหา"
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr "แจ้งปัญหา"
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr "Reactive Resume ประสบความสำเร็จได้
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "ทำใหม่"
|
msgstr "ทำใหม่"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "ลบออก"
|
msgstr "ลบออก"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr "ลบหน้า"
|
msgstr "ลบหน้า"
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr "ส่งลิงก์ยืนยันอีเมลอีกคร
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr "รีเซ็ต"
|
msgstr "รีเซ็ต"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr "รีเซ็ตเค้าโครง"
|
msgstr "รีเซ็ตเค้าโครง"
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr "รีเซ็ตการซูม"
|
msgstr "รีเซ็ตการซูม"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr "เรซูเม่"
|
msgstr "เรซูเม่"
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr "โค้งมน"
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "บันทึกการเปลี่ยนแปลง"
|
msgstr "บันทึกการเปลี่ยนแปลง"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "บันทึกในเบราว์เซอร์"
|
msgstr "บันทึกในเบราว์เซอร์"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "บันทึกสำเร็จ"
|
msgstr "บันทึกสำเร็จ"
|
||||||
|
|
||||||
@ -1256,21 +1294,21 @@ msgstr "เกรด"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:104
|
#: apps/client/src/pages/builder/_components/toolbar.tsx:104
|
||||||
msgid "Scroll to Pan"
|
msgid "Scroll to Pan"
|
||||||
msgstr ""
|
msgstr "เลื่อนเพื่อขยับ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:104
|
#: apps/client/src/pages/builder/_components/toolbar.tsx:104
|
||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr ""
|
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"
|
msgid "Search for a font family"
|
||||||
msgstr "ค้นหาฟอนต์"
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr "ค้นหาฟอนต์ย่อย"
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr "ค้นหารูปแบบฟอนต์"
|
msgstr "ค้นหารูปแบบฟอนต์"
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr "ค้นหาภาษา"
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr "รักษาความปลอดภัยด้วยการยืนยันตัวตนสองขั้นตอน"
|
msgstr "รักษาความปลอดภัยด้วยการยืนยันตัวตนสองขั้นตอน"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "ความปลอดภัย"
|
msgstr "ความปลอดภัย"
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr "โฮสต์ด้วยตนเองบน Docker"
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr "ส่งอีเมล"
|
msgstr "ส่งอีเมล"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr "ส่งข้อความหาผม"
|
msgstr "ส่งข้อความหาผม"
|
||||||
|
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr "ตั้งค่าการยืนยันตัวตนแบบสองขั้นตอนบนบัญชีของคุณ"
|
msgstr "ตั้งค่าการยืนยันตัวตนแบบสองขั้นตอนบนบัญชีของคุณ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr "การแชร์"
|
msgstr "การแชร์"
|
||||||
@ -1330,7 +1369,7 @@ msgstr "แสดงเส้นแบ่ง"
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr "แสดงเลขหน้า"
|
msgstr "แสดงเลขหน้า"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "แถบด้านข้าง"
|
msgstr "แถบด้านข้าง"
|
||||||
|
|
||||||
@ -1408,6 +1447,7 @@ msgid "Start building your resume by giving it a name."
|
|||||||
msgstr "เริ่มสร้างเรซูเม่ของคุณด้วยการตั้งชื่อ"
|
msgstr "เริ่มสร้างเรซูเม่ของคุณด้วยการตั้งชื่อ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr "สถิติ"
|
msgstr "สถิติ"
|
||||||
@ -1422,17 +1462,17 @@ msgstr "เก็บรหัสสำรองของคุณให้ปล
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr "ภาพรวม"
|
msgstr "ภาพรวม"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr "สนับสนุนแอปด้วยการบริจาคเงินตามกำลังของคุณ!"
|
msgstr "สนับสนุนแอปด้วยการบริจาคเงินตามกำลังของคุณ!"
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr "สนับสนุน Reactive Resume"
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr "รองรับหน้ากระดาษแบบ A4/จดหมาย"
|
msgstr "รองรับหน้ากระดาษแบบ A4/จดหมาย"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr "เปลี่ยนเป็นโหมดมืด"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr "เปลี่ยนเป็นโหมดสว่าง"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr "ระบบ"
|
msgstr "ระบบ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "เทมเพลต"
|
msgstr "เทมเพลต"
|
||||||
@ -1465,15 +1514,20 @@ msgstr "คำรับรอง"
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr "สีตัวอักษร"
|
msgstr "สีตัวอักษร"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
msgstr "คุณกรอกรหัสผ่านไม่ตรงกัน"
|
msgstr "ไม่มีหน้าที่คุณกำลังมองหาอยู่"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
|
msgstr "คำขอที่ส่งไปผิดพลาด"
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: 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."
|
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||||
msgstr "เรซูเม่ที่คุณต้องการอัปเดตถูกล็อกแล้ว โปรดปลดล็อกหากคุณต้องการทำการเปลี่ยนแปลงใดๆ กับเรซูเม่นั้น"
|
msgstr "เรซูเม่ที่คุณต้องการอัปเดตถูกล็อกแล้ว โปรดปลดล็อกหากคุณต้องการทำการเปลี่ยนแปลงใดๆ กับเรซูเม่นั้น"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
#: 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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,7 @@ msgstr "ติดตามยอดดูและยอดดาวน์โห
|
|||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr "การยืนยันตัวตนแบบสองขั้นตอน"
|
msgstr "การยืนยันตัวตนแบบสองขั้นตอน"
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr "ระดับการศึกษา"
|
msgstr "ระดับการศึกษา"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr "แบบอักษร"
|
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"
|
msgid "Underline Links"
|
||||||
msgstr "ขีดเส้นใต้ลิงก์"
|
msgstr "ขีดเส้นใต้ลิงก์"
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr "URL"
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr "URL ต้องขึ้นต้นด้วย https://"
|
msgstr "URL ต้องขึ้นต้นด้วย https://"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr "ใช้ Azure OpenAI"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr "ใช้ธีมระบบ"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,13 +1714,13 @@ msgstr "เวอร์ชั่น 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "ยอดดู"
|
msgstr "ยอดดู"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "มองเห็นได้"
|
msgstr "มองเห็นได้"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70
|
||||||
msgid "Visit <0>Phosphor Icons</0> for a list of available icons"
|
msgid "Visit <0>Phosphor Icons</0> for a list of available icons"
|
||||||
msgstr ""
|
msgstr "ไปที่ <0>Phosphor Icons</0> เพื่อดูรายการไอคอนที่ใช้ได้"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
@ -1665,11 +1728,11 @@ msgstr "เราตรวจสอบที่อยู่อีเมลขอ
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr "เว็บไซต์"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "มีอะไรใหม่ในเวอร์ชั่นล่าสุด"
|
msgstr "มีอะไรใหม่ในเวอร์ชั่นล่าสุด"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr "คุณไม่มีสิทธิเข้าถึงหน้านี้"
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "คุณสามารถเพิ่มคีย์เวิร์ดได้หลายคำโดยคั่นด้วยเครื่องหมายจุลภาคหรือกด Enter"
|
msgstr "คุณสามารถเพิ่มคีย์เวิร์ดได้หลายคำโดยคั่นด้วยเครื่องหมายจุลภาคหรือกด Enter"
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr "คุณสามารถเพิ่มคีย์เวิร์ด
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "คุณสามารถป้อนชื่อผู้ใช้ของคุณได้ด้วย"
|
msgstr "คุณสามารถป้อนชื่อผู้ใช้ของคุณได้ด้วย"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr ""
|
msgstr "คุณยังสามารถผสานการทำงานกับ Azure OpenAI ได้โดยการเปิดใช้งานช่องทำเครื่องหมาย<0>\"ใช้ Azure OpenAI</0>\" และตั้งค่า Resource URL เป็นทรัพยากร Azure OpenAI ของคุณ:<1>https://your-resource.openai.azure.com</1>. ตั้งชื่อการPLOYMENT ในช่อง Model และระบุเวอร์ชัน API ที่เหมาะสมสำหรับการPLOYMENT ของคุณใน Azure."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
msgstr "คุณสามารถใช้ OpenAI API เพื่อช่วยคุณสร้างเนื้อหาหรือปรับปรุงการเขียนของคุณขณะที่เขียนเรซูเม่ได้"
|
msgstr "คุณยังสามารถผสานการทำงานกับ Ollama ได้โดยง่ายเพียงแค่ตั้งค่า API key<0>เป็น tosk-1234567890abcdef</0>และ Base URL เป็น URL ของ Ollama ของคุณ<1>เช่นhttp://localhost:11434/v1</1>. คุณยังสามารถเลือกและกำหนดโมเดลตามที่คุณต้องการได้ และตั้งค่าจำนวน token สูงสุดตามที่คุณต้องการได้เช่นกัน."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
|
msgstr "คุณสามารถใช้ OpenAI API, Azure OpenAI หรือ Ollama เพื่อช่วยสร้างเนื้อหาหรือปรับปรุงการเขียนของคุณขณะกำลังเขียนประวัติย่อได้"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "คุณสามารถติดตามยอดดูเรซูเม่ของคุณได้ หรือดูว่ามีคนดาวน์โหลดเรซูเม่ที่เปิดเป็นสาธารณะไว้กี่คน"
|
msgstr "คุณสามารถติดตามยอดดูเรซูเม่ของคุณได้ หรือดูว่ามีคนดาวน์โหลดเรซูเม่ที่เปิดเป็นสาธารณะไว้กี่คน"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr "คุณไม่ได้รับอนุญาตให้เข้าถึงหน้านี้"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "คุณมีตัวเลือกในการ<0>ขอคีย์ OpenAI API ของคุณเอง</0> คีย์นี้ช่วยให้คุณใช้ประโยชน์จาก API ได้ตามที่คุณต้องการ กลับกัน หากคุณต้องการปิดการใช้งานคุณสมบัติ AI ใน Reactive Resume โดยสิ้นเชิง คุณแค่ลบคีย์ออกจากการตั้งค่าของคุณได้เลย"
|
msgstr "คุณมีตัวเลือกในการ<0>ขอคีย์ OpenAI API ของคุณเอง</0> คีย์นี้ช่วยให้คุณใช้ประโยชน์จาก API ได้ตามที่คุณต้องการ กลับกัน หากคุณต้องการปิดการใช้งานคุณสมบัติ AI ใน Reactive Resume โดยสิ้นเชิง คุณแค่ลบคีย์ออกจากการตั้งค่าของคุณได้เลย"
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr "เมลเข้าแล้ว!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "บัญชีของคุณและข้อมูลทั้งหมดของคุณถูกลบเรียบร้อยแล้ว ลาก่อนนะ!"
|
msgstr "บัญชีของคุณและข้อมูลทั้งหมดของคุณถูกลบเรียบร้อยแล้ว ลาก่อนนะ!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "คีย์ API ของคุณถูกจัดเก็บไว้อย่างปลอดภัยในพื้นที่จัดเก็บภายในเบราว์เซอร์ และจะเรียกใช้เมื่อมีการส่งคำขอไปยัง OpenAI ผ่านทาง SDK ทางการเท่านั้น ขอให้มั่นใจได้ว่าคีย์ของคุณจะไม่ถูกส่งไปยังเซิร์ฟเวอร์ภายนอกใดๆ ยกเว้นเมื่อมีการโต้ตอบกับบริการของ OpenAI"
|
msgstr "คีย์ API ของคุณถูกจัดเก็บไว้อย่างปลอดภัยในพื้นที่จัดเก็บภายในเบราว์เซอร์ และจะเรียกใช้เมื่อมีการส่งคำขอไปยัง OpenAI ผ่านทาง SDK ทางการเท่านั้น ขอให้มั่นใจได้ว่าคีย์ของคุณจะไม่ถูกส่งไปยังเซิร์ฟเวอร์ภายนอกใดๆ ยกเว้นเมื่อมีการโต้ตอบกับบริการของ OpenAI"
|
||||||
|
|
||||||
@ -1733,7 +1808,7 @@ msgstr "ที่อยู่อีเมลของคุณได้รับ
|
|||||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||||
msgstr "คีย์ API ของ OpenAI ของคุณยังไม่ได้ตั้งค่า โปรดไปที่การตั้งค่าบัญชีของคุณเพื่อเปิดใช้งานการใช้ระบบ OpenAI"
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr "รหัสผ่านของคุณได้รับการอัปเดตเรียบร้อยแล้ว"
|
msgstr "รหัสผ่านของคุณได้รับการอัปเดตเรียบร้อยแล้ว"
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: tr\n"
|
"Language: tr\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:40\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Turkish\n"
|
"Language-Team: Turkish\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -30,27 +30,27 @@ msgstr "Aralarından seçim yapabileceğiniz {templatesCount} özgeçmiş şablo
|
|||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr "{value, plural, one {Sütun} other {Sütunlar}}"
|
msgstr "{value, plural, one {Sütun} other {Sütunlar}}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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'u boş zamanlarımda çoğunlukla kendi başıma ve diğer açık kaynak katkıcıları ile geliştirdim.</0><1>Eğer uygulamayı beğendiyseniz ve ücretsiz kalmasını desteklemek istiyorsanız, elinizden geldiğince bağışta bulunabilirsiniz.</1>"
|
msgstr "<0> Reactive Resume'u boş zamanlarımda çoğunlukla kendi başıma ve diğer açık kaynak katkıcıları ile geliştirdim.</0><1>Eğer uygulamayı beğendiyseniz ve ücretsiz kalmasını desteklemek istiyorsanız, elinizden geldiğince bağışta bulunabilirsiniz.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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>Uygulamanın kusursuz olmadığının farkındayım, fakat daha da iyi olmasını istiyorum.</0><1>Eğer Cv'nizi oluştururken bir hata ile karşılaşırsanız veya size ve diğer kullanıcılara kolaylık sağlayacak bir fikriniz varsa, projenin repository'sine bir issue bırakın veya bununla ilgili bana bir e-posta gönderin.</1>"
|
msgstr "<0>Uygulamanın kusursuz olmadığının farkındayım, fakat daha da iyi olmasını istiyorum.</0><1>Eğer Cv'nizi oluştururken bir hata ile karşılaşırsanız veya size ve diğer kullanıcılara kolaylık sağlayacak bir fikriniz varsa, projenin repository'sine bir issue bırakın veya bununla ilgili bana bir e-posta gönderin.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 "<0>Not:</0> OpenAI API'sını kullanarak, OpenAI tarafından belirlenen <1>kullanım şartlarını</1> ve <2>gizlilik politikasını</2> onaylamış ve kabul etmiş olursunuz. Lütfen Reactive Resume'un hizmetinin yanlış veya izinsiz kullanımından kaynaklanan herhangi bir sorumluluğu üstlenmediğini ve ortaya çıkabilecek sonuçların veya yükümlülüklerin tamamen kullanıcıya ait olduğunu unutmayın."
|
msgstr "<0>Not:</0> OpenAI API'sını kullanarak, OpenAI tarafından belirlenen <1>kullanım şartlarını</1> ve <2>gizlilik politikasını</2> onaylamış ve kabul etmiş olursunuz. Lütfen Reactive Resume'un hizmetinin yanlış veya izinsiz kullanımından kaynaklanan herhangi bir sorumluluğu üstlenmediğini ve ortaya çıkabilecek sonuçların veya yükümlülüklerin tamamen kullanıcıya ait olduğunu unutmayın."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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>"
|
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."
|
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."
|
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."
|
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."
|
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"
|
msgid "Add a custom field"
|
||||||
msgstr "Özel alan ekle"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Yeni bir Öğe Ekle"
|
msgstr "Yeni bir Öğe Ekle"
|
||||||
@ -117,7 +117,7 @@ msgstr "Yeni bir Öğe Ekle"
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr "Yeni bir bölüm ekle"
|
msgstr "Yeni bir bölüm ekle"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr "Yeni Sayfa Ekle"
|
msgstr "Yeni Sayfa Ekle"
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr "Zaten bir hesabınız mı var?"
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr "Dosya doğrulanırken bir hata oluştu."
|
msgstr "Dosya doğrulanırken bir hata oluştu."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr "Dahili bir sunucu hatası oluştu."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr "Beklenmedik bir hata meydana geldi."
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr "ve daha fazlası..."
|
msgstr "ve daha fazlası..."
|
||||||
@ -191,6 +199,18 @@ msgstr "{languagesCount} dillerinde mevcuttur"
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr "Ödüllendirici"
|
msgstr "Ödüllendirici"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr "Azure API Sürümü"
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr "Azure OpenAI kullanılırken Azure OpenAI Temel URL'si, dağıtım adı (model) ve API sürümü gereklidir."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr "Azure OpenAI Kaynak URL'si"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,7 +229,7 @@ msgstr "Yedekleme kodu"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Yedekleme kodları yalnızca küçük harf veya rakamlar içerebilir ve tam olarak 10 karakterden oluşmalıdır."
|
msgstr "Yedekleme kodları yalnızca küçük harf veya rakamlar içerebilir ve tam olarak 10 karakterden oluşmalıdır."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "Temel URL"
|
msgstr "Temel URL"
|
||||||
|
|
||||||
@ -246,8 +266,8 @@ msgstr "Topluluk tarafından topluluk için oluşturuldu."
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Reddet"
|
msgstr "Reddet"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr "Sıradan"
|
msgstr "Sıradan"
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr "Sıradan"
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr "Çalışma Panosu'nu Ortala"
|
msgstr "Çalışma Panosu'nu Ortala"
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr "Dil Değiştir"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr "Şifre Değiştir"
|
msgstr "Şifre Değiştir"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr "Tonu Değiştir"
|
msgstr "Tonu Değiştir"
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr "Sütunlar"
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr "Şirket"
|
msgstr "Şirket"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr "Kendinden Emin"
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Devam et"
|
msgstr "Devam et"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Kopyala"
|
msgstr "Kopyala"
|
||||||
|
|
||||||
@ -351,7 +371,12 @@ msgstr "Hemen bir tane oluştur"
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr "Örnek özgeçmiş oluştur"
|
msgstr "Örnek özgeçmiş oluştur"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||||
|
msgid "Current Password"
|
||||||
|
msgstr "Geçerli Parola"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr "Özel CSS"
|
msgstr "Özel CSS"
|
||||||
@ -386,10 +411,10 @@ msgstr "Karanlık"
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Tarih"
|
msgstr "Tarih"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Tarih veya Tarih Aralığı"
|
msgstr "Tarih veya Tarih Aralığı"
|
||||||
@ -407,11 +432,15 @@ msgstr "Sil"
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr "Hesabı Sil"
|
msgstr "Hesabı Sil"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr "Dağıtım Adı"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Açıklama"
|
msgstr "Açıklama"
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr "Tek/çok sayfalı özgeçmiş tasarlayın"
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr "Devre dışı bırak"
|
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"
|
msgid "Disable 2FA"
|
||||||
msgstr "2FA'yı devre dışı bırak"
|
msgstr "2FA'yı devre dışı bırak"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr "Vazgeç"
|
msgstr "Vazgeç"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Dökümantasyon"
|
msgstr "Dökümantasyon"
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr "Dökümantasyon"
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr "Hesabınız yok mu?"
|
msgstr "Hesabınız yok mu?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr "Nereden başlayacağınızı bilmiyor musunuz? Dokümanlara göz atın!"
|
msgstr "Nereden başlayacağınızı bilmiyor musunuz? Dokümanlara göz atın!"
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr "Nereden başlayacağınızı bilmiyor musunuz? Dokümanlara göz atın!"
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr "Dilinizi göremiyor musunuz? <0>Uygulamanın çevrilmesine yardımcı olun.</0>"
|
msgstr "Dilinizi göremiyor musunuz? <0>Uygulamanın çevrilmesine yardımcı olun.</0>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr "Reaktif Özgeçmiş'e Bağış Yapın"
|
msgstr "Reaktif Özgeçmiş'e Bağış Yapın"
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr "Reaktif Özgeçmiş'e Bağış Yapın"
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr "Özgeçmişinizin bir JSON versiyonunu indirin. Bu dosya gelecekte özgeçmişinizi içe aktarmak için kullanılabilir veya işbirliği yapmak için başkalarıyla paylaşılabilir."
|
msgstr "Özgeçmişinizin bir JSON versiyonunu indirin. Bu dosya gelecekte özgeçmişinizi içe aktarmak için kullanılabilir veya işbirliği yapmak için başkalarıyla paylaşılabilir."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
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."
|
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/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr "PDF indir"
|
msgstr "PDF indir"
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr "Mevcut bir öğeyi çoğalt"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Mevcut bir özgeçmişi çoğalt"
|
msgstr "Mevcut bir özgeçmişi çoğalt"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Düzenle"
|
msgstr "Düzenle"
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr "Efektler"
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr "E-Posta"
|
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"
|
msgid "Enable 2FA"
|
||||||
msgstr "2FA'yı etkinleştir"
|
msgstr "2FA'yı etkinleştir"
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr "Kimlik doğrulayıcı uygulamanız tarafından sağlanan tek kullanıml
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr "E-posta adresinizi girin, hesabınız mevcutsa şifrenizi sıfırlamanız için size bir bağlantı göndereceğiz."
|
msgstr "E-posta adresinizi girin, hesabınız mevcutsa şifrenizi sıfırlamanız için size bir bağlantı göndereceğiz."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr "Hata {statusCode}"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr "Hatalar"
|
msgstr "Hatalar"
|
||||||
@ -544,6 +576,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."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr "Dışa aktar"
|
msgstr "Dışa aktar"
|
||||||
@ -564,19 +597,19 @@ msgstr "Nihayet,"
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr "Yazım ve Dil Bilgisini Düzeltin"
|
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"
|
msgid "Font Family"
|
||||||
msgstr "Yazı Tipi Ailesi"
|
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"
|
msgid "Font Size"
|
||||||
msgstr "Yazı Tipi Büyüklüğü"
|
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"
|
msgid "Font Subset"
|
||||||
msgstr "Yazı Tipi Alt Kümesi"
|
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"
|
msgid "Font Variants"
|
||||||
msgstr "Yazı Tipi Çeşitleri"
|
msgstr "Yazı Tipi Çeşitleri"
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr "Yazı Tipi Çeşitleri"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "Örneğin, bu özgeçmişi hangi şirketlere gönderdiğinize ilişkin bilgiler veya iş tanımlarının bağlantıları buraya not edilebilir."
|
msgstr "Örneğin, bu özgeçmişi hangi şirketlere gönderdiğinize ilişkin bilgiler veya iş tanımlarının bağlantıları buraya not edilebilir."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Unut"
|
msgstr "Unut"
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr "Şifrenizi mi unuttunuz?"
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr "Format"
|
msgstr "Format"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr "Bir hata mı buldunuz ya da yeni bir özellik için bir fikriniz mi var?"
|
msgstr "Bir hata mı buldunuz ya da yeni bir özellik için bir fikriniz mi var?"
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr "Bir hata mı buldunuz ya da yeni bir özellik için bir fikriniz mi var?
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr "Ömür boyu ücretsiz"
|
msgstr "Ömür boyu ücretsiz"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr "Dostça"
|
msgstr "Dostça"
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr "Eski özgeçmişinize yeni bir isim verin."
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr "Gösterge Paneline Git"
|
msgstr "Gösterge Paneline Git"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr "Ana sayfaya git"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr "Google"
|
msgstr "Google"
|
||||||
@ -651,7 +688,7 @@ msgstr "Google"
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr "Gri tonlamalı"
|
msgstr "Gri tonlamalı"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr "Izgara"
|
msgstr "Izgara"
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr "Burada, deneyiminizi özelleştirmek ve kişiselleştirmek için profilinizi güncelleyebilirsiniz."
|
msgstr "Burada, deneyiminizi özelleştirmek ve kişiselleştirmek için profilinizi güncelleyebilirsiniz."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Gizli"
|
msgstr "Gizli"
|
||||||
@ -677,7 +714,7 @@ msgstr "Gizli"
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr "Gizle"
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr "Simgeleri Gizle"
|
msgstr "Simgeleri Gizle"
|
||||||
|
|
||||||
@ -734,7 +771,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."
|
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."
|
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."
|
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."
|
msgstr "Bu bölümde şifrenizi değiştirebilir ve iki faktörlü kimlik doğrulamayı etkinleştirebilir/devre dışı bırakabilirsiniz."
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ 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."
|
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/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Bilgi"
|
msgstr "Bilgi"
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr "john.doe@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Anahtar Kelimeler"
|
msgstr "Anahtar Kelimeler"
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr "Son güncelleme {lastUpdated}"
|
msgstr "Son güncelleme {lastUpdated}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Düzen"
|
msgstr "Düzen"
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr "Harf"
|
msgstr "Harf"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr "Düzey"
|
msgstr "Düzey"
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr "Açık"
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr "Açık veya koyu tema"
|
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"
|
msgid "Line Height"
|
||||||
msgstr "Satır Yüksekliği"
|
msgstr "Satır Yüksekliği"
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr "Satır Yüksekliği"
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr "LinkedIn, JSON Özgeçmiş, vb."
|
msgstr "LinkedIn, JSON Özgeçmiş, vb."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr "Liste"
|
msgstr "Liste"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr "Çıkış yap"
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr "Cihazınızı mı kaybettiniz?"
|
msgstr "Cihazınızı mı kaybettiniz?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr "Ana Sayfa"
|
msgstr "Ana Sayfa"
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr "Mart 2023"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr "Mart 2023 - Günümüz"
|
msgstr "Mart 2023 - Günümüz"
|
||||||
@ -923,7 +962,7 @@ msgstr "Mart 2023 - Günümüz"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Kenar Boşlukları"
|
msgstr "Kenar Boşlukları"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "Maksimum Jeton"
|
msgstr "Maksimum Jeton"
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr "Maksimum Jeton"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "MIT Lisansı"
|
msgstr "MIT Lisansı"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "Model"
|
msgstr "Model"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr "İsim"
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Sosyal Ağ"
|
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"
|
msgid "New Password"
|
||||||
msgstr "Yeni Şifre"
|
msgstr "Yeni Şifre"
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr "Not: Bu, hesabınızın güvenliğini azaltacaktır."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Notlar"
|
msgstr "Notlar"
|
||||||
@ -1009,16 +1049,16 @@ msgstr "OpenAI, metniniz için herhangi bir seçenek döndürmedi."
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "OpenAI Entegrasyonu"
|
msgstr "OpenAI Entegrasyonu"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
msgstr "OpenAI/Azure OpenAI/Ollama Entegrasyonu"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr "OpenAI/Ollama API Anahtarı"
|
msgstr "OpenAI/Ollama API Anahtarı"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
|
||||||
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/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"
|
msgid "Options"
|
||||||
msgstr "Seçenekler"
|
msgstr "Seçenekler"
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr "Organizasyon"
|
msgstr "Organizasyon"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "Sayfa"
|
msgstr "Sayfa"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr "Sayfa {pageNumber}"
|
msgstr "Sayfa {pageNumber}"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr "Şifre"
|
msgstr "Şifre"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr "PDF"
|
msgstr "PDF"
|
||||||
|
|
||||||
@ -1091,11 +1132,11 @@ msgstr "Portre"
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54
|
||||||
msgctxt "Position held at a company, for example, Software Engineer"
|
msgctxt "Position held at a company, for example, Software Engineer"
|
||||||
msgid "Position"
|
msgid "Position"
|
||||||
msgstr "Konum"
|
msgstr "Pozisyon"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53
|
||||||
msgid "Position"
|
msgid "Position"
|
||||||
msgstr "Konum"
|
msgstr "Pozisyon"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:96
|
#: apps/client/src/pages/home/sections/features/index.tsx:96
|
||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
@ -1109,14 +1150,12 @@ msgstr "<0>Simple Icons</0> tarafından desteklenmektedir"
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr "Birincil Renk"
|
msgstr "Birincil Renk"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr "Gizlilik Politikası"
|
msgstr "Gizlilik Politikası"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr "Profesyonel"
|
msgstr "Profesyonel"
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr "Herkese Açık"
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "Yayınlayıcı"
|
msgstr "Yayınlayıcı"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr "Bir sorunu dile getirin"
|
msgstr "Bir sorunu dile getirin"
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr "Bir sorunu dile getirin"
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr "Reaktif Özgeçmiş, canlı topluluğu sayesinde gelişiyor. Bu proje il
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Yinele"
|
msgstr "Yinele"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Kaldır"
|
msgstr "Kaldır"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr "Sayfayı Kaldır"
|
msgstr "Sayfayı Kaldır"
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr "E-posta onay bağlantısını yeniden gönder"
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr "Sıfırla"
|
msgstr "Sıfırla"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr "Düzeni Sıfırla"
|
msgstr "Düzeni Sıfırla"
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr "Yakınlaştırmayı Sıfırla"
|
msgstr "Yakınlaştırmayı Sıfırla"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr "Özgeçmişler"
|
msgstr "Özgeçmişler"
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr "Yuvarlak"
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Değişiklikleri Kaydet"
|
msgstr "Değişiklikleri Kaydet"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "Yerele Kaydet"
|
msgstr "Yerele Kaydet"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Kaydedildi"
|
msgstr "Kaydedildi"
|
||||||
|
|
||||||
@ -1262,15 +1300,15 @@ msgstr "Kaydırmak için kaydırın"
|
|||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr "Yakınlaştırmak için Kaydır"
|
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"
|
msgid "Search for a font family"
|
||||||
msgstr "Bir yazı tipi ailesi arayın"
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr "Yazı tipi alt kümesini arayın"
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr "Yazı tipi varyantı arama"
|
msgstr "Yazı tipi varyantı arama"
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr "Dili arayın"
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr "İki faktörlü kimlik doğrulama ile güvende"
|
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"
|
msgid "Security"
|
||||||
msgstr "Güvenlik"
|
msgstr "Güvenlik"
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr "Docker ile kendi kendine barındırma"
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr "E-posta gönder"
|
msgstr "E-posta gönder"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr "Mesaj gönder"
|
msgstr "Mesaj gönder"
|
||||||
|
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr "Hesabınızda iki faktörlü kimlik doğrulamayı ayarlayın"
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr "Paylaşım"
|
msgstr "Paylaşım"
|
||||||
@ -1330,7 +1369,7 @@ msgstr "Ara Çizgiyi Göster"
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr "Sayfa numaralarını göster"
|
msgstr "Sayfa numaralarını göster"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Kenar Çubuğu"
|
msgstr "Kenar Çubuğu"
|
||||||
|
|
||||||
@ -1408,6 +1447,7 @@ msgid "Start building your resume by giving it a name."
|
|||||||
msgstr "Bir ad vererek özgeçmişinizi oluşturmaya başlayın."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr "İstatistikler"
|
msgstr "İstatistikler"
|
||||||
@ -1422,17 +1462,17 @@ msgstr "Yedekleme kodlarınızı güvenle saklayın"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr "Özet"
|
msgstr "Özet"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr "Elinizden geldiğince bağışta bulunarak uygulamayı destekleyin!"
|
msgstr "Elinizden geldiğince bağışta bulunarak uygulamayı destekleyin!"
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr "Reaktif Özgeçmişi Destekleme"
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr "A4/Letter sayfa formatlarını destekler"
|
msgstr "A4/Letter sayfa formatlarını destekler"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr "Koyu Moda Geçin"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr "Işık Moduna Geçin"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr "Sistem"
|
msgstr "Sistem"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "Şablon"
|
msgstr "Şablon"
|
||||||
@ -1465,15 +1514,20 @@ msgstr "Görüşler"
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr "Metin Rengi"
|
msgstr "Metin Rengi"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
msgstr "Girdiğiniz şifreler eşleşmiyor."
|
msgstr "Aradığınız sayfa yok."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
|
msgstr "İstek geçersiz."
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: 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."
|
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."
|
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/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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,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:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr "İki Faktörlü Kimlik Doğrulama"
|
msgstr "İki Faktörlü Kimlik Doğrulama"
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr "Çalışma Türü"
|
msgstr "Çalışma Türü"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr "Tipografi"
|
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"
|
msgid "Underline Links"
|
||||||
msgstr "Altı Çizili Bağlantılar"
|
msgstr "Altı Çizili Bağlantılar"
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr "URL"
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr "URL https:// ile başlamalıdır"
|
msgstr "URL https:// ile başlamalıdır"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr "Azure OpenAI kullanın"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr "Sistem Temasını Kullanın"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,7 +1714,7 @@ msgstr "Sürüm 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Görüntülenmeler"
|
msgstr "Görüntülenmeler"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Görünür"
|
msgstr "Görünür"
|
||||||
|
|
||||||
@ -1665,11 +1728,11 @@ msgstr "E-posta adresinizi yalnızca şifrenizi unutmanız durumunda size bir ş
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr "İnternet sitesi"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "En son sürümdeki yenilikler"
|
msgstr "En son sürümdeki yenilikler"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr "Bu sayfaya erişme yetkiniz yok."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Birden fazla anahtar kelimeyi virgülle ayırarak veya enter tuşuna basarak ekleyebilirsiniz."
|
msgstr "Birden fazla anahtar kelimeyi virgülle ayırarak veya enter tuşuna basarak ekleyebilirsiniz."
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr "Birden fazla anahtar kelimeyi virgülle ayırarak veya enter tuşuna bas
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Kullanıcı adınızı da girebilirsiniz."
|
msgstr "Kullanıcı adınızı da girebilirsiniz."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr "Ayrıca API anahtarını `sk-1234567890abcdef` ve Temel URL'yi Ollama URL'nize, yani `http://localhost:11434/v1` olarak ayarlayarak Ollama ile entegre edebilirsiniz. Ayrıca modelleri seçebilir ve tercihinize göre maksimum belirteçleri ayarlayabilirsiniz."
|
msgstr "Azure OpenAI <0>Kullan</0> onay kutusunu etkinleştirerek ve Kaynak URL'sini Azure OpenAI kaynağınıza ayarlayarak Azure OpenAI ile de tümleştirebilirsiniz: <1>https://your-resource.openai.azure.com.</1> Model alanında dağıtım adını ayarlayın ve Azure dağıtımınız için uygun API sürümünü belirtin."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
msgstr "İçerik oluşturmanıza yardımcı olması için OpenAI API'sinden yararlanabilir veya özgeçmişinizi oluştururken yazınızı geliştirebilirsiniz."
|
msgstr "Ayrıca, API anahtarını <0>tosk-1234567890abcdef</0> ve Temel URL'yi Ollama URL'nize ayarlayarak Ollama ile entegre edebilirsiniz, yani<1>.http://localhost:11434/v1</1>. Ayrıca modelleri seçip seçebilir ve maksimum belirteçleri tercihinize göre ayarlayabilirsiniz."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
|
msgstr "İçerik oluşturmanıza yardımcı olması için OpenAI API, Azure OpenAI veya Ollama'dan yararlanabilir veya özgeçmişinizi oluştururken yazınızı geliştirebilirsiniz."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Herkese açık paylaşımı etkinleştirerek özgeçmişinizin kaç görüntüleme aldığını veya kaç kişinin özgeçmişinizi indirdiğini takip edebilirsiniz."
|
msgstr "Herkese açık paylaşımı etkinleştirerek özgeçmişinizin kaç görüntüleme aldığını veya kaç kişinin özgeçmişinizi indirdiğini takip edebilirsiniz."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr "Bu sayfaya erişmek için izniniz yok."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "<0>Kendi OpenAI API anahtarınızı edinme seçen</0>eğiniz vardır. Bu anahtar, API'den uygun gördüğünüz şekilde yararlanmanızı sağlar. Alternatif olarak, Reaktif Özgeçmiş'teki yapay zeka özelliklerini tamamen devre dışı bırakmak isterseniz, anahtarı ayarlarınızdan kaldırabilirsiniz."
|
msgstr "<0>Kendi OpenAI API anahtarınızı edinme seçen</0>eğiniz vardır. Bu anahtar, API'den uygun gördüğünüz şekilde yararlanmanızı sağlar. Alternatif olarak, Reaktif Özgeçmiş'teki yapay zeka özelliklerini tamamen devre dışı bırakmak isterseniz, anahtarı ayarlarınızdan kaldırabilirsiniz."
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr "E-postanız var!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Hesabınız ve tüm verileriniz başarıyla silindi. Güle güle!"
|
msgstr "Hesabınız ve tüm verileriniz başarıyla silindi. Güle güle!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "API anahtarınız tarayıcının yerel depolama alanında güvenli bir şekilde saklanır ve yalnızca OpenAI'ye resmi SDK'ları aracılığıyla istekte bulunurken kullanılır. OpenAI'nin hizmetleriyle etkileşim dışında anahtarınızın herhangi bir harici sunucuya iletilmediğinden emin olabilirsiniz."
|
msgstr "API anahtarınız tarayıcının yerel depolama alanında güvenli bir şekilde saklanır ve yalnızca OpenAI'ye resmi SDK'ları aracılığıyla istekte bulunurken kullanılır. OpenAI'nin hizmetleriyle etkileşim dışında anahtarınızın herhangi bir harici sunucuya iletilmediğinden emin olabilirsiniz."
|
||||||
|
|
||||||
@ -1733,7 +1808,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."
|
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."
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr "Parolanız başarıyla güncellendi."
|
msgstr "Parolanız başarıyla güncellendi."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: uz\n"
|
"Language: uz\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:33\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Uzbek\n"
|
"Language-Team: Uzbek\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||||
@ -30,27 +30,27 @@ msgstr "Tanlash uchun {templatesCount} ta tarjimai hol namunasi mavjud"
|
|||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr "{value, plural, one {Ustun} other {Ustunlar}}"
|
msgstr "{value, plural, one {Ustun} other {Ustunlar}}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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 ""
|
||||||
|
|
||||||
#: 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."
|
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||||
msgstr ""
|
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."
|
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -102,8 +102,8 @@ msgstr "Hisob"
|
|||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr "Maxsus maydon qo'shish"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Yangi narsa qo'shish"
|
msgstr "Yangi narsa qo'shish"
|
||||||
@ -117,7 +117,7 @@ msgstr "Yangi narsa qo'shish"
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr "Yangi bo'lim qo'shish"
|
msgstr "Yangi bo'lim qo'shish"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr "Yangi sahifa qo'shish"
|
msgstr "Yangi sahifa qo'shish"
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr "Hisobingiz bormi?"
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr "Faylni tekshirishda xatolik yuz berdi."
|
msgstr "Faylni tekshirishda xatolik yuz berdi."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr "va yana ko'pgina..."
|
msgstr "va yana ko'pgina..."
|
||||||
@ -191,6 +199,18 @@ msgstr "{languagesCount} ta tilda mavjud"
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr "Mukofotlovchi"
|
msgstr "Mukofotlovchi"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,7 +229,7 @@ msgstr "Zaxira kodi"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Zaxira kodlari faqat kichik harflar yoki raqamlardan iborat bo'lishi mumkin va aynan 10 belgidan iborat bo'lishi kerak."
|
msgstr "Zaxira kodlari faqat kichik harflar yoki raqamlardan iborat bo'lishi mumkin va aynan 10 belgidan iborat bo'lishi kerak."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -246,8 +266,8 @@ msgstr "Jamiyat tomonidan, jamiyat uchun."
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Bekor qilish"
|
msgstr "Bekor qilish"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr ""
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr "Ustunlar"
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr "Tashkilot"
|
msgstr "Tashkilot"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr ""
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Davom etish"
|
msgstr "Davom etish"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Nusxalash"
|
msgstr "Nusxalash"
|
||||||
|
|
||||||
@ -351,7 +371,12 @@ msgstr ""
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr ""
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -386,10 +411,10 @@ msgstr "To‘q"
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Sana"
|
msgstr "Sana"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Sana yoki sana oralig'i"
|
msgstr "Sana yoki sana oralig'i"
|
||||||
@ -407,11 +432,15 @@ msgstr "O'chirish"
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr "Hisobni o‘chirish"
|
msgstr "Hisobni o‘chirish"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Ta'rif"
|
msgstr "Ta'rif"
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr "Yagona/Ko‘p sahifali tarjimai hollarni andozaga solish"
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr "Oʻchirish"
|
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"
|
msgid "Disable 2FA"
|
||||||
msgstr "2BShT (2FA)ni o`chirish"
|
msgstr "2BShT (2FA)ni o`chirish"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr "Bekor qilish"
|
msgstr "Bekor qilish"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Hujjatlar"
|
msgstr "Hujjatlar"
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr "Hujjatlar"
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr "Hisobingiz yo'qmi?"
|
msgstr "Hisobingiz yo'qmi?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr "Qayerdan boshlashni bilmayapsizmi? Hujjatlarni bosing!"
|
msgstr "Qayerdan boshlashni bilmayapsizmi? Hujjatlarni bosing!"
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr "Qayerdan boshlashni bilmayapsizmi? Hujjatlarni bosing!"
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr ""
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr "PDF yuklab olish"
|
msgstr "PDF yuklab olish"
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr "Mavjud buyumni nusxalash"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr ""
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||||
msgid "Enable 2FA"
|
msgid "Enable 2FA"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr ""
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -544,6 +576,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr "Eksport"
|
msgstr "Eksport"
|
||||||
@ -564,19 +597,19 @@ msgstr ""
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr ""
|
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"
|
msgid "Font Family"
|
||||||
msgstr ""
|
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"
|
msgid "Font Size"
|
||||||
msgstr ""
|
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"
|
msgid "Font Subset"
|
||||||
msgstr ""
|
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"
|
msgid "Font Variants"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr ""
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr "Parolingizni unutdingizmi?"
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr ""
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr "Bepul, har doim"
|
msgstr "Bepul, har doim"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr ""
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr "Google"
|
msgstr "Google"
|
||||||
@ -651,7 +688,7 @@ msgstr "Google"
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Yashirilgan"
|
msgstr "Yashirilgan"
|
||||||
@ -677,7 +714,7 @@ msgstr "Yashirilgan"
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr "Yashirish"
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -734,7 +771,7 @@ msgstr ""
|
|||||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||||
msgstr ""
|
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."
|
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ msgid "In this section, you can delete your account and all the data associated
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Ma'lumot"
|
msgstr "Ma'lumot"
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr "aziz.azizov@pochta.uz"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Kalit so’zlar"
|
msgstr "Kalit so’zlar"
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr ""
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr ""
|
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"
|
msgid "Line Height"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr ""
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr ""
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -923,7 +962,7 @@ msgstr ""
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr ""
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||||
msgid "New Password"
|
msgid "New Password"
|
||||||
msgstr "Yangi parol"
|
msgstr "Yangi parol"
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr "Eslatma: Bu sizning hisobingiz xavfsizligini kamaytiradi."
|
msgstr "Eslatma: Bu sizning hisobingiz xavfsizligini kamaytiradi."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Eslatmalar"
|
msgstr "Eslatmalar"
|
||||||
@ -1009,16 +1049,16 @@ msgstr ""
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
|
||||||
msgid "OpenAI/Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: 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"
|
msgid "Options"
|
||||||
msgstr "Variantlar"
|
msgstr "Variantlar"
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr "Tashkilot"
|
msgstr "Tashkilot"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "Sahifa"
|
msgstr "Sahifa"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr "Parol"
|
msgstr "Parol"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr "PDF"
|
msgstr "PDF"
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr ""
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr ""
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr ""
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr ""
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr "Rezyumelar"
|
msgstr "Rezyumelar"
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr ""
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "O'zgarishlarni saqlash"
|
msgstr "O'zgarishlarni saqlash"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "Mahalliy saqlash"
|
msgstr "Mahalliy saqlash"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Saqlandi"
|
msgstr "Saqlandi"
|
||||||
|
|
||||||
@ -1262,15 +1300,15 @@ msgstr ""
|
|||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr ""
|
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"
|
msgid "Search for a font family"
|
||||||
msgstr ""
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr ""
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr ""
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr ""
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1330,7 +1369,7 @@ msgstr ""
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1408,6 +1447,7 @@ msgid "Start building your resume by giving it a name."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1422,17 +1462,17 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr ""
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1465,8 +1514,12 @@ msgstr ""
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: apps/client/src/services/errors/translate-error.ts:49
|
||||||
@ -1474,6 +1527,7 @@ msgid "The resume you want to update is locked, please unlock if you wish to mak
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
#: 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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr ""
|
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"
|
msgid "Underline Links"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr ""
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,7 +1714,7 @@ msgstr ""
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1665,11 +1728,11 @@ msgstr ""
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr ""
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr ""
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr ""
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr ""
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1733,7 +1808,7 @@ msgstr ""
|
|||||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||||
msgstr ""
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: vi\n"
|
"Language: vi\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:40\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Vietnamese\n"
|
"Language-Team: Vietnamese\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
@ -30,27 +30,27 @@ msgstr "{templatesCount} mẫu sơ yếu lý lịch để lựa chọn"
|
|||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr "{value, plural, other {Cột}}"
|
msgstr "{value, plural, other {Cột}}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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>Tôi xây dựng Reactive Resume trong thời gian rảnh rỗi với sự trợ giúp tuyệt vời từ những cộng tác viên nguồn mở.</0> <1>Nếu bạn thích ứng dụng này và muốn hỗ trợ giữ miễn phí trọn đời, hãy quyên góp những gì bạn cảm thấy hài lòng.</1>"
|
msgstr "<0>Tôi xây dựng Reactive Resume trong thời gian rảnh rỗi với sự trợ giúp tuyệt vời từ những cộng tác viên nguồn mở.</0> <1>Nếu bạn thích ứng dụng này và muốn hỗ trợ giữ miễn phí trọn đời, hãy quyên góp những gì bạn cảm thấy hài lòng.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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>Tôi chắc chắn rằng ứng dụng này không hoàn hảo nhưng tôi muốn nó như vậy.</0> <1>Nếu bạn gặp phải bất kỳ vấn đề nào khi tạo sơ yếu lý lịch của mình hoặc có ý tưởng có thể giúp bạn và những người dùng khác tạo sơ yếu lý lịch của bạn dễ dàng hơn, hãy gửi vấn đề đó vào kho lưu trữ hoặc gửi email cho tôi về vấn đề đó.</1>"
|
msgstr "<0>Tôi chắc chắn rằng ứng dụng này không hoàn hảo nhưng tôi muốn nó như vậy.</0> <1>Nếu bạn gặp phải bất kỳ vấn đề nào khi tạo sơ yếu lý lịch của mình hoặc có ý tưởng có thể giúp bạn và những người dùng khác tạo sơ yếu lý lịch của bạn dễ dàng hơn, hãy gửi vấn đề đó vào kho lưu trữ hoặc gửi email cho tôi về vấn đề đó.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 "<0>Lưu ý:</0> Bằng cách sử dụng API OpenAI, bạn thừa nhận và chấp nhận <1>điều khoản sử dụng</1> và <2>chính sách quyền riêng tư</2> được phác thảo bởi OpenAI. Xin lưu ý rằng Reactive Resume không chịu trách nhiệm đối với bất kỳ việc sử dụng dịch vụ không đúng cách hoặc trái phép nào và mọi hậu quả hoặc trách nhiệm pháp lý phát sinh chỉ thuộc về người dùng."
|
msgstr "<0>Lưu ý:</0> Bằng cách sử dụng API OpenAI, bạn thừa nhận và chấp nhận <1>điều khoản sử dụng</1> và <2>chính sách quyền riêng tư</2> được phác thảo bởi OpenAI. Xin lưu ý rằng Reactive Resume không chịu trách nhiệm đối với bất kỳ việc sử dụng dịch vụ không đúng cách hoặc trái phép nào và mọi hậu quả hoặc trách nhiệm pháp lý phát sinh chỉ thuộc về người dùng."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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>"
|
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."
|
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."
|
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."
|
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."
|
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"
|
msgid "Add a custom field"
|
||||||
msgstr "Thêm một trường tùy chỉnh"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Thêm mục mới"
|
msgstr "Thêm mục mới"
|
||||||
@ -117,7 +117,7 @@ msgstr "Thêm mục mới"
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr "Thêm một phần mới"
|
msgstr "Thêm một phần mới"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr "Thêm một trang mới"
|
msgstr "Thêm một trang mới"
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr "Bạn đã có tài khoản?"
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr "Đã xảy ra lỗi trong quá trình xác thực tập tin."
|
msgstr "Đã xảy ra lỗi trong quá trình xác thực tập tin."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr "Đã xảy ra lỗi máy chủ nội bộ."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr "Đã xảy ra lỗi không mong muốn."
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr "cùng nhiều nội dung khác nữa..."
|
msgstr "cùng nhiều nội dung khác nữa..."
|
||||||
@ -148,7 +156,7 @@ msgstr "Bất kỳ ai có liên kết này đều có thể xem và tải xuốn
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:41
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:41
|
||||||
msgid "Apply Custom CSS"
|
msgid "Apply Custom CSS"
|
||||||
msgstr ""
|
msgstr "Áp dụng CSS tùy chỉnh"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
@ -191,6 +199,18 @@ msgstr "Hỗ trợ {languagesCount} ngôn ngữ"
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr "Bên trao giải"
|
msgstr "Bên trao giải"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr "Phiên bản API Azure"
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr "Địa chỉ URL cơ sở Azure OpenAI, tên triển khai (mô hình) và phiên bản API là các thông tin bắt buộc khi sử dụng Azure OpenAI."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr "Đường dẫn tài nguyên Azure OpenAI"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,9 +229,9 @@ msgstr "Mã Backup"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Mã backup chỉ có thể chứa chữ cái viết thường hoặc số và phải có chính xác 10 ký tự."
|
msgstr "Mã backup chỉ có thể chứa chữ cái viết thường hoặc số và phải có chính xác 10 ký tự."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr "Đường dẫn cơ sở"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
#: 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."
|
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||||
@ -246,8 +266,8 @@ msgstr "Bởi cộng đồng, vì cộng đồng."
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Hủy"
|
msgstr "Hủy"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr "Thông thường"
|
msgstr "Thông thường"
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr "Thông thường"
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr "Trung Tâm Bảng Vẽ"
|
msgstr "Trung Tâm Bảng Vẽ"
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr "Thay đổi ngôn ngữ"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr "Thay đổi mật khẩu"
|
msgstr "Thay đổi mật khẩu"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr "Thay Đổi Tông"
|
msgstr "Thay Đổi Tông"
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr "Cột"
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr "Công ty"
|
msgstr "Công ty"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr "Tự tin"
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Tiếp tục"
|
msgstr "Tiếp tục"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Sao chép"
|
msgstr "Sao chép"
|
||||||
|
|
||||||
@ -351,10 +371,15 @@ msgstr "Tạo ngay"
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr "Tạo sơ yếu lý lịch mẫu"
|
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 "Mật khẩu hiện tại"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr ""
|
msgstr "CSS tùy chỉnh"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:62
|
#: apps/client/src/pages/home/sections/features/index.tsx:62
|
||||||
msgid "Custom resume sections"
|
msgid "Custom resume sections"
|
||||||
@ -386,10 +411,10 @@ msgstr "Tối"
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Ngày"
|
msgstr "Ngày"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Ngày hoặc Khoảng ngày"
|
msgstr "Ngày hoặc Khoảng ngày"
|
||||||
@ -407,11 +432,15 @@ msgstr "Xóa"
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr "Xóa tài khoản"
|
msgstr "Xóa tài khoản"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr "Tên triển khai"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Mô tả"
|
msgstr "Mô tả"
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr "Thiết kế sơ yếu lý lịch một/nhiều trang"
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr "Tắt"
|
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"
|
msgid "Disable 2FA"
|
||||||
msgstr "Tắt xác thực 2FA"
|
msgstr "Tắt xác thực 2FA"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr "Hủy"
|
msgstr "Hủy"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Tài liệu"
|
msgstr "Tài liệu"
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr "Tài liệu"
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr "Chưa có tài khoản?"
|
msgstr "Chưa có tài khoản?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr "Không biết bắt đầu từ đâu? Hãy truy cập tài liệu!"
|
msgstr "Không biết bắt đầu từ đâu? Hãy truy cập tài liệu!"
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr "Không biết bắt đầu từ đâu? Hãy truy cập tài liệu!"
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr "Không thấy ngôn ngữ của bạn? <0>Giúp dịch ứng dụng.</0>"
|
msgstr "Không thấy ngôn ngữ của bạn? <0>Giúp dịch ứng dụng.</0>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr "Đóng góp cho Reactive Resume"
|
msgstr "Đóng góp cho Reactive Resume"
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr "Đóng góp cho Reactive Resume"
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr "Tải xuống bản JSON sơ yếu lý lịch của bạn. Tệp này có thể được sử dụng để nhập hồ sơ của bạn trong tương lai, hoặc thậm chí có thể được chia sẻ với người khác để cộng tác."
|
msgstr "Tải xuống bản JSON sơ yếu lý lịch của bạn. Tệp này có thể được sử dụng để nhập hồ sơ của bạn trong tương lai, hoặc thậm chí có thể được chia sẻ với người khác để cộng tác."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
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."
|
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/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr "Tải xuống PDF"
|
msgstr "Tải xuống PDF"
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr "Sao chép một mục hiện có"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Sao chép sơ yếu lý lịch hiện có"
|
msgstr "Sao chép sơ yếu lý lịch hiện có"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Chỉnh sửa"
|
msgstr "Chỉnh sửa"
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr "Hiệu ứng"
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr "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"
|
msgid "Enable 2FA"
|
||||||
msgstr "Bật xác thực 2FA"
|
msgstr "Bật xác thực 2FA"
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr "Nhập mật khẩu một lần do ứng dụng xác thực của bạn
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr "Nhập địa chỉ email của bạn, chúng tôi sẽ gửi cho bạn một liên kết để đặt lại mật khẩu nếu tài khoản tồn tại."
|
msgstr "Nhập địa chỉ email của bạn, chúng tôi sẽ gửi cho bạn một liên kết để đặt lại mật khẩu nếu tài khoản tồn tại."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr "Lỗi {statusCode}"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr "Lỗi"
|
msgstr "Lỗi"
|
||||||
@ -544,6 +576,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."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr "Xuất"
|
msgstr "Xuất"
|
||||||
@ -564,19 +597,19 @@ msgstr "Cuối cùng,"
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr "Sửa chữa Chính tả và ngữ pháp"
|
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"
|
msgid "Font Family"
|
||||||
msgstr "Kiểu Font"
|
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"
|
msgid "Font Size"
|
||||||
msgstr "Kích thước Font"
|
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"
|
msgid "Font Subset"
|
||||||
msgstr "Phụ bộ Font"
|
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"
|
msgid "Font Variants"
|
||||||
msgstr "Biến thể Font"
|
msgstr "Biến thể Font"
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr "Biến thể Font"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "Ví dụ: thông tin về công ty bạn đã gửi bản lý lịch này đến hoặc các liên kết đến mô tả công việc có thể được ghi lại ở đây."
|
msgstr "Ví dụ: thông tin về công ty bạn đã gửi bản lý lịch này đến hoặc các liên kết đến mô tả công việc có thể được ghi lại ở đây."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Quên"
|
msgstr "Quên"
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr "Bạn quên mật khẩu?"
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr "Định dạng"
|
msgstr "Định dạng"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr "Tìm thấy lỗi hoặc có ý tưởng tính năng mới?"
|
msgstr "Tìm thấy lỗi hoặc có ý tưởng tính năng mới?"
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr "Tìm thấy lỗi hoặc có ý tưởng tính năng mới?"
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr "Miễn phí mãi mãi"
|
msgstr "Miễn phí mãi mãi"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr "Thân thiện"
|
msgstr "Thân thiện"
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr "Đặt cho sơ yếu lý lịch cũ của bạn một cái tên mới."
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr "Đi đến bảng điều khiển"
|
msgstr "Đi đến bảng điều khiển"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr "Trở về trang chủ"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr "Google"
|
msgstr "Google"
|
||||||
@ -651,7 +688,7 @@ msgstr "Google"
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr "Thang độ xám"
|
msgstr "Thang độ xám"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr "Lưới"
|
msgstr "Lưới"
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr "Tại đây, bạn có thể cập nhật hồ sơ của mình để tùy chỉnh và cá nhân hóa trải nghiệm của mình."
|
msgstr "Tại đây, bạn có thể cập nhật hồ sơ của mình để tùy chỉnh và cá nhân hóa trải nghiệm của mình."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Ẩn"
|
msgstr "Ẩn"
|
||||||
@ -677,7 +714,7 @@ msgstr "Ẩn"
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr "Ẩn đi"
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr "Ẩn biểu tượng"
|
msgstr "Ẩn biểu tượng"
|
||||||
|
|
||||||
@ -734,7 +771,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."
|
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."
|
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."
|
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ố."
|
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,7 +780,8 @@ 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>."
|
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/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Thông tin"
|
msgstr "Thông tin"
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr "john.doe@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Từ khóa"
|
msgstr "Từ khóa"
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr "Cập nhật lần cuối {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/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Bố cục"
|
msgstr "Bố cục"
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr "Chữ cái"
|
msgstr "Chữ cái"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr "Cấp độ"
|
msgstr "Cấp độ"
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr "Sáng"
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr "Chủ đề sáng hoặc tối"
|
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"
|
msgid "Line Height"
|
||||||
msgstr "Chiều cao giữa các dòng"
|
msgstr "Chiều cao giữa các dòng"
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr "Chiều cao giữa các dòng"
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr "LinkedIn, JSON Resume, hoặc tương tự."
|
msgstr "LinkedIn, JSON Resume, hoặc tương tự."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr "Danh sách"
|
msgstr "Danh sách"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr "Đăng xuất"
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr "Bạn bị mất thiết bị?"
|
msgstr "Bạn bị mất thiết bị?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr "Chính"
|
msgstr "Chính"
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr "Tháng 3 năm 2023"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr "03/2023 - Hiện tại"
|
msgstr "03/2023 - Hiện tại"
|
||||||
@ -923,26 +962,26 @@ msgstr "03/2023 - Hiện tại"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Lề"
|
msgstr "Lề"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr "Số lượng token tối đa"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:48
|
#: apps/client/src/pages/home/sections/features/index.tsx:48
|
||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "Giấy phép MIT"
|
msgstr "Giấy phép MIT"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr "Mô hình"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr "Tên"
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Mạng"
|
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"
|
msgid "New Password"
|
||||||
msgstr "Mật khẩu mới"
|
msgstr "Mật khẩu mới"
|
||||||
|
|
||||||
@ -974,6 +1013,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."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Ghi chú"
|
msgstr "Ghi chú"
|
||||||
@ -1009,16 +1049,16 @@ msgstr "OpenAI không trả về bất kỳ phản hồi nào cho văn bản c
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "Tích hợp OpenAI"
|
msgstr "Tích hợp OpenAI"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
msgstr ""
|
msgstr "Tích hợp OpenAI/Azure OpenAI/Ollama"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama Integration"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr ""
|
msgstr "Khóa API OpenAI/Ollama"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: 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"
|
msgid "Options"
|
||||||
msgstr "Tùy chọn"
|
msgstr "Tùy chọn"
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr "Tổ chức"
|
msgstr "Tổ chức"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "Trang"
|
msgstr "Trang"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr ""
|
msgstr "Trang {pageNumber}"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr "Mật khẩu"
|
msgstr "Mật khẩu"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr "PDF"
|
msgstr "PDF"
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr "Được hỗ trợ bởi <0>Simple Icons</0>"
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr "Màu chủ đạo"
|
msgstr "Màu chủ đạo"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr "Chính sách Bảo mật"
|
msgstr "Chính sách Bảo mật"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr "Chuyên nghiệp"
|
msgstr "Chuyên nghiệp"
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr "Công khai"
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "Nhà xuất bản"
|
msgstr "Nhà xuất bản"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr "Đưa ra một vấn đề"
|
msgstr "Đưa ra một vấn đề"
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr "Đưa ra một vấn đề"
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr "Reactive Resume phát triển mạnh nhờ cộng đồng sôi động.
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Làm lại"
|
msgstr "Làm lại"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Xóa"
|
msgstr "Xóa"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr "Xóa trang"
|
msgstr "Xóa trang"
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr "Gửi lại email xác minh"
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr "Thiết lập lại"
|
msgstr "Thiết lập lại"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr "Đặt lại bố cục"
|
msgstr "Đặt lại bố cục"
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr "Đặt lại thu phóng"
|
msgstr "Đặt lại thu phóng"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr "Sơ yếu lý lịch"
|
msgstr "Sơ yếu lý lịch"
|
||||||
|
|
||||||
@ -1237,13 +1275,13 @@ msgstr "Làm tròn"
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Lưu thay đổi"
|
msgstr "Lưu thay đổi"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr "Lưu trữ cục bộ"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr "Đã lưu"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:168
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:168
|
||||||
msgid "Scan the QR code below with your authenticator app to setup 2FA on your account."
|
msgid "Scan the QR code below with your authenticator app to setup 2FA on your account."
|
||||||
@ -1256,21 +1294,21 @@ msgstr "Điểm"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:104
|
#: apps/client/src/pages/builder/_components/toolbar.tsx:104
|
||||||
msgid "Scroll to Pan"
|
msgid "Scroll to Pan"
|
||||||
msgstr ""
|
msgstr "Cuộn để di chuyển"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:104
|
#: apps/client/src/pages/builder/_components/toolbar.tsx:104
|
||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr ""
|
msgstr "Cuộn để phóng to"
|
||||||
|
|
||||||
#: 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"
|
msgid "Search for a font family"
|
||||||
msgstr "Tìm kiếm font chữ"
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr "Tìm kiếm phụ bộ font"
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr "Tìm kiếm biến thể font"
|
msgstr "Tìm kiếm biến thể font"
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr "Tìm kiếm ngôn ngữ"
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr "Bảo mật với xác thực hai yếu tố"
|
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"
|
msgid "Security"
|
||||||
msgstr "Bảo mật"
|
msgstr "Bảo mật"
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr "Tự dựng với Docker"
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr "Gửi Email"
|
msgstr "Gửi Email"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr "Gửi tin nhắn cho tôi"
|
msgstr "Gửi tin nhắn cho tôi"
|
||||||
|
|
||||||
@ -1314,6 +1352,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"
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr "Chia sẻ"
|
msgstr "Chia sẻ"
|
||||||
@ -1330,7 +1369,7 @@ msgstr "Hiển thị đường ngắt"
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr "Hiển thị số trang"
|
msgstr "Hiển thị số trang"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Thanh bên"
|
msgstr "Thanh bên"
|
||||||
|
|
||||||
@ -1408,6 +1447,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ó."
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr "Thống kê"
|
msgstr "Thống kê"
|
||||||
@ -1422,17 +1462,17 @@ msgstr "Lưu trữ mã dự phòng của bạn một cách an toàn"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr "Tóm tắt"
|
msgstr "Tóm tắt"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr "Hãy ủng hộ ứng dụng bằng cách quyên góp những gì bạn có thể!"
|
msgstr "Hãy ủng hộ ứng dụng bằng cách quyên góp những gì bạn có thể!"
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr "Ủng hộ Reactive Resume"
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr "Hỗ trợ định dạng trang A4/Letter"
|
msgstr "Hỗ trợ định dạng trang A4/Letter"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr "Chuyển sang Chế độ Tối"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr "Chuyển sang Chế độ Sáng"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr "Hệ thống"
|
msgstr "Hệ thống"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "Mẫu"
|
msgstr "Mẫu"
|
||||||
@ -1465,15 +1514,20 @@ msgstr "Lời nhận xét"
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr "Màu chữ"
|
msgstr "Màu chữ"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
msgstr "Mật khẩu bạn đã nhập không khớp."
|
msgstr "Trang bạn đang tìm kiếm không tồn tại."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
|
msgstr "Yêu cầu không hợp lệ."
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: 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."
|
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ó."
|
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/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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,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:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr "Xác thực hai yếu tố"
|
msgstr "Xác thực hai yếu tố"
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr "Bằng cấp"
|
msgstr "Bằng cấp"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr "Kiểu chữ"
|
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"
|
msgid "Underline Links"
|
||||||
msgstr "Gạch chân Liên kết"
|
msgstr "Gạch chân Liên kết"
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr "URL"
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr "URL cần bắt đầu với https://"
|
msgstr "URL cần bắt đầu với https://"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr "Sử dụng Azure OpenAI"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr "Sử dụng chủ đề hệ thống"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,13 +1714,13 @@ msgstr "Phiên bản 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Lượt xem"
|
msgstr "Lượt xem"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Hiện"
|
msgstr "Hiện"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70
|
||||||
msgid "Visit <0>Phosphor Icons</0> for a list of available icons"
|
msgid "Visit <0>Phosphor Icons</0> for a list of available icons"
|
||||||
msgstr ""
|
msgstr "Truy cập <0>Phosphor Icons</0> để xem danh sách các biểu tượng có sẵn."
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
@ -1665,11 +1728,11 @@ msgstr "Chúng tôi chỉ xác minh địa chỉ email của bạn để đảm
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr "Trang web"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Có gì mới trong phiên bản mới nhất"
|
msgstr "Có gì mới trong phiên bản mới nhất"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr "Bạn không được phép truy cập trang này."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Bạn có thể thêm nhiều từ khóa bằng cách phân tách chúng bằng dấu phẩy hoặc nhấn enter."
|
msgstr "Bạn có thể thêm nhiều từ khóa bằng cách phân tách chúng bằng dấu phẩy hoặc nhấn enter."
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr "Bạn có thể thêm nhiều từ khóa bằng cách phân tách chúng
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Bạn cũng có thể nhập tên người dùng của bạn."
|
msgstr "Bạn cũng có thể nhập tên người dùng của bạn."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr ""
|
msgstr "Bạn cũng có thể tích hợp với Azure OpenAI bằng cách bật hộp kiểm <0>\"Sử dụng Azure OpenAI</0> \" và đặt URL tài nguyên thành tài nguyên Azure OpenAI của bạn: <1>https://your-resource.openai.azure.com</1>. Đặt tên triển khai trong trường \"Model\" và chỉ định phiên bản API phù hợp cho triển khai Azure của bạn."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
msgstr "Bạn có thể sử dụng API OpenAI để giúp bạn tạo nội dung hoặc cải thiện khả năng viết của mình trong khi soạn sơ yếu lý lịch."
|
msgstr "Bạn cũng có thể tích hợp với Ollama bằng cách thiết lập khóa API<0>là tosk-1234567890abcdef</0> và URL cơ sở là URL Ollama của bạn, ví dụ:<1>http://localhost:11434/v1</1>. Bạn cũng có thể chọn mô hình và thiết lập số token tối đa theo sở thích của mình."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
|
msgstr "Bạn có thể sử dụng API OpenAI, Azure OpenAI hoặc Ollama để hỗ trợ tạo nội dung hoặc cải thiện kỹ năng viết khi soạn thảo CV của mình."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Bạn có thể theo dõi số lượt xem sơ yếu lý lịch của bạn hoặc số người đã tải xuống bằng cách bật chia sẻ công khai."
|
msgstr "Bạn có thể theo dõi số lượt xem sơ yếu lý lịch của bạn hoặc số người đã tải xuống bằng cách bật chia sẻ công khai."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr "Bạn không có quyền truy cập vào trang này."
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "Bạn có tùy chọn <0>lấy Key API OpenAI của bạn</0>. Key này cho phép bạn tận dụng API phù hợp với bạn. Ngoài ra, nếu bạn muốn tắt hoàn toàn các tính năng AI trong Reactive Resume, bạn chỉ cần xóa Key khỏi cài đặt của mình."
|
msgstr "Bạn có tùy chọn <0>lấy Key API OpenAI của bạn</0>. Key này cho phép bạn tận dụng API phù hợp với bạn. Ngoài ra, nếu bạn muốn tắt hoàn toàn các tính năng AI trong Reactive Resume, bạn chỉ cần xóa Key khỏi cài đặt của mình."
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr "Bạn vừa nhận thư!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Tài khoản của bạn và tất cả dữ liệu của bạn đã được xóa thành công. Tạm biệt!"
|
msgstr "Tài khoản của bạn và tất cả dữ liệu của bạn đã được xóa thành công. Tạm biệt!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "Key API của bạn được lưu trữ an toàn trong bộ nhớ cục bộ của trình duyệt và chỉ được sử dụng khi gửi yêu cầu tới OpenAI thông qua SDK chính thức của họ. Hãy yên tâm rằng Key của bạn không được truyền đến bất kỳ máy chủ bên ngoài nào ngoại trừ khi tương tác với các dịch vụ của OpenAI."
|
msgstr "Key API của bạn được lưu trữ an toàn trong bộ nhớ cục bộ của trình duyệt và chỉ được sử dụng khi gửi yêu cầu tới OpenAI thông qua SDK chính thức của họ. Hãy yên tâm rằng Key của bạn không được truyền đến bất kỳ máy chủ bên ngoài nào ngoại trừ khi tương tác với các dịch vụ của OpenAI."
|
||||||
|
|
||||||
@ -1733,7 +1808,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."
|
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."
|
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."
|
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."
|
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"
|
"Language: zh\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:40\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Chinese Simplified\n"
|
"Language-Team: Chinese Simplified\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
@ -30,27 +30,27 @@ msgstr "{templatesCount} 个简历模板可供选择"
|
|||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr "{value, plural, one {栏} other {栏}}"
|
msgstr "{value, plural, one {栏} other {栏}}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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>您的任何捐赠都会帮助 Reactive Resume 保持免费并持续发展,让更多的人从中受益。</1>"
|
msgstr "<0>我花费了大量业余时间,独立开发了 Reactive Resume,并非常感谢其他优秀开源贡献者的帮助。</0><1>您的任何捐赠都会帮助 Reactive Resume 保持免费并持续发展,让更多的人从中受益。</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 "<0>注意:</0>使用 OpenAI API 即表示您承认并接受 OpenAI 的<1>使用条款</1>和<2>隐私政策</2>。请注意,Reactive Resume 对任何不当或未经授权的服务使用不承担任何责任,由此产生的任何影响或责任仅由用户承担。"
|
msgstr "<0>注意:</0>使用 OpenAI API 即表示您承认并接受 OpenAI 的<1>使用条款</1>和<2>隐私政策</2>。请注意,Reactive Resume 对任何不当或未经授权的服务使用不承担任何责任,由此产生的任何影响或责任仅由用户承担。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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>"
|
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."
|
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||||
msgstr "<0>现已禁用双重身份验证。</0>您可以将身份验证程序添加到您的账户来启用。"
|
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."
|
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||||
msgstr "<0>已启用双重身份验证。</0>您在每次登录时都需要输入验证码。"
|
msgstr "<0>已启用双重身份验证。</0>您在每次登录时都需要输入验证码。"
|
||||||
|
|
||||||
@ -102,8 +102,8 @@ msgstr "账户"
|
|||||||
msgid "Add a custom field"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "增加一项"
|
msgstr "增加一项"
|
||||||
@ -117,7 +117,7 @@ msgstr "增加一项"
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr "添加新章节"
|
msgstr "添加新章节"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr "添加新页面"
|
msgstr "添加新页面"
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr "已有账号?"
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr "验证文件时发生错误。"
|
msgstr "验证文件时发生错误。"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr "糟糕,服务器内部发生了错误。"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr "发生了一个意料之外的错误。"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr "还有更多…"
|
msgstr "还有更多…"
|
||||||
@ -191,6 +199,18 @@ msgstr "有 {languagesCount} 种语言可用"
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr "授予者"
|
msgstr "授予者"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr "Azure API 版本"
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr "使用 Azure OpenAI Base URL, 部署名称 (mel), 和 API 版本是必需的 Azure OpenAI。"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr "Azure OpenAI 资源 URL"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -207,9 +227,9 @@ msgstr "备份码"
|
|||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:81
|
#: 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."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "备份码只包含小写字母或数字,而且必须正好是 10 个字符。"
|
msgstr "备份码只能由小写字母或数字组成,并且字符数量只能等于10个。"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "基础 URL"
|
msgstr "基础 URL"
|
||||||
|
|
||||||
@ -246,21 +266,25 @@ msgstr "来自社区,服务社区。"
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "取消"
|
msgstr "取消"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr "非正式的"
|
msgstr "非正式的"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:130
|
#: apps/client/src/pages/builder/_components/toolbar.tsx:130
|
||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr "中心画板"
|
msgstr "将画板移动到屏幕中心"
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr "更改语言"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr "更改密码"
|
msgstr "更改密码"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr "改变语气"
|
msgstr "改变语气"
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr "栏"
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr "公司"
|
msgstr "公司"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr "自信的"
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "继续"
|
msgstr "继续"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "复制"
|
msgstr "复制"
|
||||||
|
|
||||||
@ -351,7 +371,12 @@ msgstr "立刻创建"
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr "创建简历样例"
|
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/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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr "自定义 CSS"
|
msgstr "自定义 CSS"
|
||||||
@ -386,10 +411,10 @@ msgstr "深色"
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "日期"
|
msgstr "日期"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "日期或日期范围"
|
msgstr "日期或日期范围"
|
||||||
@ -407,11 +432,15 @@ msgstr "删除"
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr "删除账户"
|
msgstr "删除账户"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr "部署名称"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "描述"
|
msgstr "描述"
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr "设计单页/多页简历"
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr "禁用"
|
msgstr "禁用"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||||
msgid "Disable 2FA"
|
msgid "Disable 2FA"
|
||||||
msgstr "禁用双重身份验证"
|
msgstr "禁用双重身份验证"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr "丢弃"
|
msgstr "丢弃"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "文档"
|
msgstr "文档"
|
||||||
|
|
||||||
@ -442,30 +471,29 @@ msgstr "文档"
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr "还没有账户?"
|
msgstr "还没有账户?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr "不知道从哪里开始?点击文档!"
|
msgstr "不知道从哪里开始?点击文档!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:107
|
||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr "没有看到您的语言? <0>帮助翻译应用程序。</0>"
|
msgstr "翻译缺失或不正确? <0>帮我们翻译此应用程序。</0>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr "为 Reactive Resume 捐款"
|
msgstr "为 Reactive Resume 捐款"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56
|
||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr "下载简历的 JSON 快照。该文件可用于您以后导入简历,甚至可以共享与其他人进行协作。"
|
msgstr "保存简历为JSON数据表。JSON数据表可按照属性分开保存你的内容,此类文件可用于快速导入信息到新简历中,也可以用于共享与协作。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
msgstr "下载您的 PDF 版本简历。该文件可用于您打印简历、发送给招聘人员或上传到招聘网站。"
|
msgstr "保存简历为PDF文档。PDF文档是用于打印机识别的基础文件,可用于在打印机上打印简历、发送简历给招聘人员或者向招聘平台上传对应类型的文档。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr "下载 PDF"
|
msgstr "下载为 PDF 文档"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58
|
||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
@ -487,7 +515,7 @@ msgstr "复制现有项目"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "复制现有简历"
|
msgstr "复制现有简历"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "编辑"
|
msgstr "编辑"
|
||||||
|
|
||||||
@ -503,17 +531,17 @@ msgstr "效果"
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr "电子邮件"
|
msgstr "电子邮件"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||||
msgid "Enable 2FA"
|
msgid "Enable 2FA"
|
||||||
msgstr "启用双重身份验证"
|
msgstr "启用双重身份验证"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:67
|
#: apps/client/src/pages/auth/reset-password/page.tsx:67
|
||||||
msgid "Enter a new password below, and make sure it's secure."
|
msgid "Enter a new password below, and make sure it's secure."
|
||||||
msgstr "在下方输入确保安全的新密码。"
|
msgstr "请在下方输入新的密码,确保你的密码难以被他人知晓或破解。"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:59
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:59
|
||||||
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
|
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
|
||||||
msgstr "输入在启用双重身份验证时保存的 10 个备用代码之一。"
|
msgstr "请输入先前绑定身份验证应用时所获取的其中一条备用密码,一般情况下你所获取的备用密码可能会有10条。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:63
|
||||||
msgid "Enter Phosphor Icon"
|
msgid "Enter Phosphor Icon"
|
||||||
@ -525,12 +553,16 @@ msgstr "输入验证应用程序中的 6 位数字代码,验证双重身份验
|
|||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
|
||||||
msgid "Enter the one-time password provided by your authenticator app below."
|
msgid "Enter the one-time password provided by your authenticator app below."
|
||||||
msgstr "在下方输入您的身份验证应用程序提供的一次性密码。"
|
msgstr "请在下方输入由身份验证应用提供的动态密码。"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:70
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:70
|
||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr "输入您的电子邮件地址,如果该账户存在,我们会向您发送一个重置密码的链接。"
|
msgstr "输入您的电子邮件地址,如果该账户存在,我们会向您发送一个重置密码的链接。"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr "发现错误,本次错误码:{statusCode}"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr "错误"
|
msgstr "错误"
|
||||||
@ -544,6 +576,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
|||||||
msgstr "浏览 Reactive Resume 提供的模板,并查看使用这些模板制作的简历。您可以将它们为范例来创建下一份简历。"
|
msgstr "浏览 Reactive Resume 提供的模板,并查看使用这些模板制作的简历。您可以将它们为范例来创建下一份简历。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr "导出"
|
msgstr "导出"
|
||||||
@ -564,19 +597,19 @@ msgstr "最后,"
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr "修正拼写和语法"
|
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"
|
msgid "Font Family"
|
||||||
msgstr "字体库"
|
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"
|
msgid "Font Size"
|
||||||
msgstr "字号"
|
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"
|
msgid "Font Subset"
|
||||||
msgstr "字体子集"
|
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"
|
msgid "Font Variants"
|
||||||
msgstr "字体变体"
|
msgstr "字体变体"
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr "字体变体"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "例如,您可以在此处注明您发送给的公司或者职位描述的链接。"
|
msgstr "例如,您可以在此处注明您发送给的公司或者职位描述的链接。"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "遗弃"
|
msgstr "遗弃"
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr "您忘记密码了吗?"
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr "格式"
|
msgstr "格式"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr "发现错误,或者有新功能的想法?"
|
msgstr "发现错误,或者有新功能的想法?"
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr "发现错误,或者有新功能的想法?"
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr "永远免费"
|
msgstr "永远免费"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr "友好的"
|
msgstr "友好的"
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr "给你的旧简历起一个新名字。"
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr "转到控制面板"
|
msgstr "转到控制面板"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr "返回首页"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr "谷歌"
|
msgstr "谷歌"
|
||||||
@ -651,7 +688,7 @@ msgstr "谷歌"
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr "灰度"
|
msgstr "灰度"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr "网格"
|
msgstr "网格"
|
||||||
|
|
||||||
@ -668,16 +705,16 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr "在这里,您可以更新个人资料,定制个性化的体验。"
|
msgstr "在这里,您可以更新个人资料,定制个性化的体验。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "隐藏"
|
msgstr "不展示"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:106
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:106
|
||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr "隐藏"
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr "隐藏图标"
|
msgstr "隐藏图标"
|
||||||
|
|
||||||
@ -734,7 +771,7 @@ msgstr "提高写作水平"
|
|||||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||||
msgstr "如果您无法扫描此二维码,也可以将此链接复制粘贴到您的验证程序中。"
|
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."
|
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||||
msgstr "在此部分中,您可以更改密码并启用/禁用双重身份验证。"
|
msgstr "在此部分中,您可以更改密码并启用/禁用双重身份验证。"
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ msgid "In this section, you can delete your account and all the data associated
|
|||||||
msgstr "在此部分中,您可以删除您的账户以及与您关联的所有数据,但请记住<0>此操作是不可逆的</0>。"
|
msgstr "在此部分中,您可以删除您的账户以及与您关联的所有数据,但请记住<0>此操作是不可逆的</0>。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "信息"
|
msgstr "信息"
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr "zhangsan@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "关键词"
|
msgstr "关键词"
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr "最后更新 {lastUpdated}"
|
msgstr "最后更新 {lastUpdated}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "布局"
|
msgstr "布局"
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr "信件"
|
msgstr "信件"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr "等级"
|
msgstr "等级"
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr "浅色"
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr "浅色或深色主题"
|
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"
|
msgid "Line Height"
|
||||||
msgstr "行高"
|
msgstr "行高"
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr "行高"
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr "LinkedIn、JSON 简历等"
|
msgstr "LinkedIn、JSON 简历等"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr "列表"
|
msgstr "列表"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr "退出登录"
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr "设备丢失?"
|
msgstr "设备丢失?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr "主界面"
|
msgstr "主界面"
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr "2023 年 3 月"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr "2023 年 3 月至今"
|
msgstr "2023 年 3 月至今"
|
||||||
@ -923,7 +962,7 @@ msgstr "2023 年 3 月至今"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "边距"
|
msgstr "边距"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "最大 Token 数"
|
msgstr "最大 Token 数"
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr "最大 Token 数"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "MIT 许可证"
|
msgstr "MIT 许可证"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "模型"
|
msgstr "模型"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr "名称"
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "网络"
|
msgstr "网络"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||||
msgid "New Password"
|
msgid "New Password"
|
||||||
msgstr "新密码"
|
msgstr "新密码"
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr "注意:这会降低您账户的安全性。"
|
msgstr "注意:这会降低您账户的安全性。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "注释"
|
msgstr "注释"
|
||||||
@ -1009,16 +1049,16 @@ msgstr "OpenAI 没有为您的文本返回任何选项。"
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "集成 OpenAI"
|
msgstr "集成 OpenAI"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
msgstr "OpenAI/Azure OpenAI/Ollama 集成"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr "OpenAI/Ollama API 密钥"
|
msgstr "OpenAI/Ollama API 密钥"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
|
||||||
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/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"
|
msgid "Options"
|
||||||
msgstr "设置"
|
msgstr "设置"
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr "组织"
|
msgstr "组织"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "页面"
|
msgstr "页面"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr "页面 {pageNumber}"
|
msgstr "页面 {pageNumber}"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr "密码"
|
msgstr "密码"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr "PDF"
|
msgstr "PDF"
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr "由 <0>Simple Icons</0> 支持"
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr "主颜色"
|
msgstr "主颜色"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr "隐私政策"
|
msgstr "隐私政策"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr "专业的"
|
msgstr "专业的"
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr "公开"
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "发布者"
|
msgstr "发布者"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr "提出问题"
|
msgstr "提出问题"
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr "提出问题"
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr "Reactive Resume 的蓬勃发展得益于其充满活力的社区。这
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "恢复"
|
msgstr "恢复"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "移除"
|
msgstr "移除"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr "删除页面"
|
msgstr "删除页面"
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr "重新发送电子邮件确认链接"
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr "重置"
|
msgstr "重置"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr "重置布局"
|
msgstr "重置布局"
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr "重置缩放"
|
msgstr "重置缩放"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr "简历"
|
msgstr "简历"
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr "圆角"
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "保存更改"
|
msgstr "保存更改"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "保存到本地"
|
msgstr "保存到本地"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "已保存"
|
msgstr "已保存"
|
||||||
|
|
||||||
@ -1256,21 +1294,21 @@ msgstr "分数"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:104
|
#: apps/client/src/pages/builder/_components/toolbar.tsx:104
|
||||||
msgid "Scroll to Pan"
|
msgid "Scroll to Pan"
|
||||||
msgstr "滚动到平移"
|
msgstr "鼠标滚轮用于上下移动"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:104
|
#: apps/client/src/pages/builder/_components/toolbar.tsx:104
|
||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr "滚动放大"
|
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"
|
msgid "Search for a font family"
|
||||||
msgstr "搜索字体库"
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr "搜索字体子集"
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr "搜索字体变体"
|
msgstr "搜索字体变体"
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr "搜索语言"
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr "使用双重身份验证保护"
|
msgstr "使用双重身份验证保护"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "安全"
|
msgstr "安全"
|
||||||
|
|
||||||
@ -1294,13 +1332,13 @@ msgstr "使用 Docker 自托管"
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr "发送电子邮件"
|
msgstr "发送电子邮件"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr "给我发消息"
|
msgstr "给我发消息"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:97
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:97
|
||||||
msgid "Separate Links"
|
msgid "Separate Links"
|
||||||
msgstr "你好"
|
msgstr "分离链接"
|
||||||
|
|
||||||
#: apps/client/src/components/user-options.tsx:32
|
#: apps/client/src/components/user-options.tsx:32
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:92
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:92
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr "为您的账户设置双重身份验证"
|
msgstr "为您的账户设置双重身份验证"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr "分享中"
|
msgstr "分享中"
|
||||||
@ -1330,7 +1369,7 @@ msgstr "显示分隔线"
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr "显示页码"
|
msgstr "显示页码"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "侧边栏"
|
msgstr "侧边栏"
|
||||||
|
|
||||||
@ -1408,6 +1447,7 @@ msgid "Start building your resume by giving it a name."
|
|||||||
msgstr "从给简历命名开始构建你的简历。"
|
msgstr "从给简历命名开始构建你的简历。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr "统计数据"
|
msgstr "统计数据"
|
||||||
@ -1422,17 +1462,17 @@ msgstr "安全地存储您的备份码"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr "总结"
|
msgstr "总结"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr "量力捐赠来支持本应用程序!"
|
msgstr "量力捐赠来支持本应用程序!"
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr "支持 Reactive Resume"
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr "支持 A4/信纸页面格式"
|
msgstr "支持 A4/信纸页面格式"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr "切换到暗色模式"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr "切换到光模式"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr "系统"
|
msgstr "系统"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "模板"
|
msgstr "模板"
|
||||||
@ -1465,15 +1514,20 @@ msgstr "客户评价"
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr "文本颜色"
|
msgstr "文本颜色"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
msgstr "您输入的密码不匹配。"
|
msgstr "您寻找的页面走丢了。"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
|
msgstr "该请求无效。"
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: 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."
|
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||||
msgstr "您要更新的简历已被锁定,如果您想对其进行更改,请解锁。"
|
msgstr "您要更新的简历已被锁定,如果您想对其进行更改,请解锁。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
#: 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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,7 @@ msgstr "跟踪浏览量和下载量"
|
|||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr "双重身份认证"
|
msgstr "双重身份认证"
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr "研究类型"
|
msgstr "研究类型"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr "排版"
|
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"
|
msgid "Underline Links"
|
||||||
msgstr "下划线链接"
|
msgstr "下划线链接"
|
||||||
|
|
||||||
@ -1597,7 +1652,15 @@ msgstr "URL"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:61
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:61
|
||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr "URL 需要以 https:// 开头"
|
msgstr "请以 “https://” 的格式填入完整URL链接。"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr "使用 Azure OpenAI"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr "使用系统主题"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
@ -1651,7 +1714,7 @@ msgstr "第 4 版"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "查看"
|
msgstr "查看"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "可见"
|
msgstr "可见"
|
||||||
|
|
||||||
@ -1665,11 +1728,11 @@ msgstr "我们验证您的电子邮件地址只是为了确保在您忘记密码
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr "网站"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "最新版本的新功能"
|
msgstr "最新版本的新功能"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr "您未被授权访问此页面。"
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "您可以通过用逗号或回车分隔来添加多个关键字。"
|
msgstr "您可以通过用逗号或回车分隔来添加多个关键字。"
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr "您可以通过用逗号或回车分隔来添加多个关键字。"
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "您还可以输入您的用户名。"
|
msgstr "您还可以输入您的用户名。"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr "您只需将 API 密钥设置为 `sk-1234567890abcdef` 并将基础 URL 设置为您的 Ollama URL(即 `http://localhost:11434/v1`),即可与 Ollama 集成。您还可以根据自己的喜好选择模型和设置最大令牌。"
|
msgstr "您也可以启用 <0>Use Azure OpenAI</0> 复选框,并将资源URL设定为您的 Azure OpenAI 资源:<1>https://your-resource。 penai.azure.com</1>。在模型字段中设置部署名称,并为您的 Azure 部署指定适当的 API 版本。"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
msgstr "您可以利用 OpenAI API 来帮助您生成内容,或在撰写简历时提高写作水平。"
|
msgstr "您也可以只需设置 API 密钥为<0>sk-1234567890abcdef</0> 和 Base URL 到您的 Ollama URL, i. .<1>http://localhost:11434/v1</1>。您也可以选择模型并根据您的偏好设置最大代币。"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
|
msgstr "您可以使用 OpenAI API、Azure OpenAI或 Ollama 帮助您生成内容,或在撰写您的简历时改进您的写作。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "您可以跟踪简历的浏览量,或通过启用公开共享功能跟踪有多少人下载了简历。"
|
msgstr "您可以跟踪简历的浏览量,或通过启用公开共享功能跟踪有多少人下载了简历。"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr "您没有访问此页面的权限。"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "您可以选择<0>获取您自己的 OpenAI API 密钥</0>,此密钥使您能够根据需要使用 API。或者,如果您希望完全禁用 Reactive Resume 中的 AI 功能,只需从设置中删除密钥即可。"
|
msgstr "您可以选择<0>获取您自己的 OpenAI API 密钥</0>,此密钥使您能够根据需要使用 API。或者,如果您希望完全禁用 Reactive Resume 中的 AI 功能,只需从设置中删除密钥即可。"
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr "您有新邮件!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "已成功删除您的账户和所有数据。再见!"
|
msgstr "已成功删除您的账户和所有数据。再见!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "您的 API 密钥安全地存储在浏览器的本地存储中,并且仅会在通过官方 SDK 向 OpenAI 发出请求时使用。请放心,除非与 OpenAI 进行服务交互,否则您的密钥不会传输到任何外部服务器。"
|
msgstr "您的 API 密钥安全地存储在浏览器的本地存储中,并且仅会在通过官方 SDK 向 OpenAI 发出请求时使用。请放心,除非与 OpenAI 进行服务交互,否则您的密钥不会传输到任何外部服务器。"
|
||||||
|
|
||||||
@ -1733,7 +1808,7 @@ msgstr "已成功验证您的电子邮件地址。"
|
|||||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||||
msgstr "您的 OpenAI API 密钥尚未设置。请进入账户设置启用 OpenAI 集成。"
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr "您的密码已成功更新。"
|
msgstr "您的密码已成功更新。"
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: zh\n"
|
"Language: zh\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
"PO-Revision-Date: 2025-10-01 09:40\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Chinese Traditional\n"
|
"Language-Team: Chinese Traditional\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
@ -30,27 +30,27 @@ msgstr "{templatesCount} 個履歷範本可以選擇"
|
|||||||
msgid "{value, plural, one {Column} other {Columns}}"
|
msgid "{value, plural, one {Column} other {Columns}}"
|
||||||
msgstr "{value, plural, one {欄} other {欄目}}"
|
msgstr "{value, plural, one {欄} other {欄目}}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:25
|
||||||
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>"
|
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>如果您喜歡Reactive Resume提供的服務,您的任何捐助都會幫助這項免費的服務持續進步,幫助更多有需要的人。</1>"
|
msgstr "<0>我花費了自己大量的業餘時間開發了 Reactive Resume,並得到了其他優秀開源貢獻者的大力幫助。</0> <1>如果您喜歡Reactive Resume提供的服務,您的任何捐助都會幫助這項免費的服務持續進步,幫助更多有需要的人。</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:56
|
||||||
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>"
|
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>如果您在創建簡歷時遇到任何問題,或者有其他可以幫助您和其他人的想法讓使用者可以更輕鬆地創建履歷,請在 Repository 發送 issue 或將相關問題的 email 寄送給我。</1>"
|
msgstr "<0>我相信這隻應用程式還不夠完美,但希望它能夠與日俱進。</0><1>如果您在創建簡歷時遇到任何問題,或者有其他可以幫助您和其他人的想法讓使用者可以更輕鬆地創建履歷,請在 Repository 發送 issue 或將相關問題的 email 寄送給我。</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:299
|
||||||
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."
|
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 "<0>注意:</0>使用 OpenAI API 即表示您承認並接受<1>使用條款</1>和<2>隱私權政策</2>OpenAI 概述。請注意,Reactive Resume 對任何不當或未經授權的服務使用不承擔任何責任,由此產生的任何影響或責任僅由使用者承擔。"
|
msgstr "<0>注意:</0>使用 OpenAI API 即表示您承認並接受<1>使用條款</1>和<2>隱私權政策</2>OpenAI 概述。請注意,Reactive Resume 對任何不當或未經授權的服務使用不承擔任何責任,由此產生的任何影響或責任僅由使用者承擔。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:85
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||||
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>"
|
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>"
|
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."
|
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||||
msgstr "<0>目前已停用雙因子驗證。</0> 您可以透過驗證器應用程式的新增來啟用它。"
|
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."
|
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||||
msgstr "<0>已啟用雙因子驗證。</0>每次登入時,系統都會要求您輸入驗證碼。"
|
msgstr "<0>已啟用雙因子驗證。</0>每次登入時,系統都會要求您輸入驗證碼。"
|
||||||
|
|
||||||
@ -102,8 +102,8 @@ msgstr "帳號"
|
|||||||
msgid "Add a custom field"
|
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:119
|
||||||
#: 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:170
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "新增項目"
|
msgstr "新增項目"
|
||||||
@ -117,7 +117,7 @@ msgstr "新增項目"
|
|||||||
msgid "Add a new section"
|
msgid "Add a new section"
|
||||||
msgstr "新增段落"
|
msgstr "新增段落"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:261
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:266
|
||||||
msgid "Add New Page"
|
msgid "Add New Page"
|
||||||
msgstr "新增頁面"
|
msgstr "新增頁面"
|
||||||
|
|
||||||
@ -133,6 +133,14 @@ msgstr "已經有一個帳戶?"
|
|||||||
msgid "An error occurred while validating the file."
|
msgid "An error occurred while validating the file."
|
||||||
msgstr "驗證檔案時發生錯誤。"
|
msgstr "驗證檔案時發生錯誤。"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:23
|
||||||
|
msgid "An internal server error occurred."
|
||||||
|
msgstr "Un error interno del servidor ha ocurrido。"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:32
|
||||||
|
msgid "An unexpected error occurred."
|
||||||
|
msgstr "Un error inesperado ha ocurrido。"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
#: apps/client/src/pages/home/sections/features/index.tsx:134
|
||||||
msgid "and many more..."
|
msgid "and many more..."
|
||||||
msgstr "還有很多..."
|
msgstr "還有很多..."
|
||||||
@ -191,6 +199,18 @@ msgstr "{languagesCount} 種語言可用"
|
|||||||
msgid "Awarder"
|
msgid "Awarder"
|
||||||
msgstr "頒獎者"
|
msgstr "頒獎者"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:258
|
||||||
|
msgid "Azure API Version"
|
||||||
|
msgstr "Azure API 版本"
|
||||||
|
|
||||||
|
#: apps/client/src/services/openai/client.ts:18
|
||||||
|
msgid "Azure OpenAI Base URL, deployment name (model), and API version are required when using Azure OpenAI."
|
||||||
|
msgstr "使用 Azure OpenAI 時,需要 Azure OpenAI 基本 URL、部署名稱 (模型) 和 API 版本。"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
|
msgid "Azure OpenAI Resource URL"
|
||||||
|
msgstr "Azure OpenAI 資源 URL"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:99
|
||||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
#: apps/client/src/pages/auth/forgot-password/page.tsx:100
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||||
@ -209,7 +229,7 @@ msgstr "備份代碼"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "備份碼只能包含小寫字母或數字,且必須正好為 10 個字元。"
|
msgstr "備份碼只能包含小寫字母或數字,且必須正好為 10 個字元。"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "網站網址:"
|
msgstr "網站網址:"
|
||||||
|
|
||||||
@ -246,8 +266,8 @@ msgstr "來自社區,服務社區。"
|
|||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "取消"
|
msgstr "取消"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:103
|
#: apps/client/src/components/ai-actions.tsx:107
|
||||||
#: apps/client/src/components/ai-actions.tsx:106
|
#: apps/client/src/components/ai-actions.tsx:110
|
||||||
msgid "Casual"
|
msgid "Casual"
|
||||||
msgstr "休閒"
|
msgstr "休閒"
|
||||||
|
|
||||||
@ -255,12 +275,16 @@ msgstr "休閒"
|
|||||||
msgid "Center Artboard"
|
msgid "Center Artboard"
|
||||||
msgstr "中心畫板"
|
msgstr "中心畫板"
|
||||||
|
|
||||||
|
#: apps/client/src/components/locale-switch.tsx:17
|
||||||
|
msgid "Change Language"
|
||||||
|
msgstr "變更語言"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
#: 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"
|
msgid "Change Password"
|
||||||
msgstr "更改密碼"
|
msgstr "更改密碼"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:97
|
#: apps/client/src/components/ai-actions.tsx:101
|
||||||
msgid "Change Tone"
|
msgid "Change Tone"
|
||||||
msgstr "改變音調"
|
msgstr "改變音調"
|
||||||
|
|
||||||
@ -296,21 +320,17 @@ msgstr "欄"
|
|||||||
msgid "Company"
|
msgid "Company"
|
||||||
msgstr "公司"
|
msgstr "公司"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:115
|
#: apps/client/src/components/ai-actions.tsx:119
|
||||||
#: apps/client/src/components/ai-actions.tsx:118
|
#: apps/client/src/components/ai-actions.tsx:122
|
||||||
msgid "Confident"
|
msgid "Confident"
|
||||||
msgstr "自信"
|
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:234
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "繼續"
|
msgstr "繼續"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:101
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "複製"
|
msgstr "複製"
|
||||||
|
|
||||||
@ -351,7 +371,12 @@ msgstr "立即建立"
|
|||||||
msgid "Create Sample Resume"
|
msgid "Create Sample Resume"
|
||||||
msgstr "建立履歷表範本"
|
msgstr "建立履歷表範本"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||||
|
msgid "Current Password"
|
||||||
|
msgstr "Contraseña actual"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||||
msgid "Custom CSS"
|
msgid "Custom CSS"
|
||||||
msgstr "自訂 CSS"
|
msgstr "自訂 CSS"
|
||||||
@ -386,10 +411,10 @@ msgstr "暗色"
|
|||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "日期"
|
msgstr "日期"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "日期或日期範圍"
|
msgstr "日期或日期範圍"
|
||||||
@ -407,11 +432,15 @@ msgstr "刪除"
|
|||||||
msgid "Delete Account"
|
msgid "Delete Account"
|
||||||
msgstr "刪除帳號"
|
msgstr "刪除帳號"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:73
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
|
msgid "Deployment Name"
|
||||||
|
msgstr "部署名稱"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "詳細資訊"
|
msgstr "詳細資訊"
|
||||||
|
|
||||||
@ -423,18 +452,18 @@ msgstr "設計單頁/多頁履歷表"
|
|||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr "停用"
|
msgstr "停用"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||||
msgid "Disable 2FA"
|
msgid "Disable 2FA"
|
||||||
msgstr "停用雙因子驗證(2FA)"
|
msgstr "停用雙因子驗證(2FA)"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
#: 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/account.tsx:220
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
#: 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"
|
msgid "Discard"
|
||||||
msgstr "放棄"
|
msgstr "放棄"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "文件"
|
msgstr "文件"
|
||||||
|
|
||||||
@ -442,7 +471,7 @@ msgstr "文件"
|
|||||||
msgid "Don't have an account?"
|
msgid "Don't have an account?"
|
||||||
msgstr "還沒有帳號嗎?"
|
msgstr "還沒有帳號嗎?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:83
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||||
msgid "Don't know where to begin? Hit the docs!"
|
msgid "Don't know where to begin? Hit the docs!"
|
||||||
msgstr "不知道從何著手?點擊文件!"
|
msgstr "不知道從何著手?點擊文件!"
|
||||||
|
|
||||||
@ -450,7 +479,7 @@ msgstr "不知道從何著手?點擊文件!"
|
|||||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||||
msgstr "沒有見到您的語言?<0>幫忙翻譯應用程式。</0>"
|
msgstr "沒有見到您的語言?<0>幫忙翻譯應用程式。</0>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:45
|
||||||
msgid "Donate to Reactive Resume"
|
msgid "Donate to Reactive Resume"
|
||||||
msgstr "捐助 Reactive Resume"
|
msgstr "捐助 Reactive Resume"
|
||||||
|
|
||||||
@ -458,12 +487,11 @@ msgstr "捐助 Reactive Resume"
|
|||||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||||
msgstr "下載簡歷的 JSON 快照。此檔案可用於將來匯入您的履歷,甚至可以與他人分享以進行協作。"
|
msgstr "下載簡歷的 JSON 快照。此檔案可用於將來匯入您的履歷,甚至可以與他人分享以進行協作。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:78
|
||||||
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||||
msgstr "下載 PDF 簡歷。此檔案可用於列印您的履歷、傳送給招募人員或上傳至就業入口網站。"
|
msgstr "下載 PDF 簡歷。此檔案可用於列印您的履歷、傳送給招募人員或上傳至就業入口網站。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||||
#: apps/client/src/pages/public/page.tsx:105
|
|
||||||
msgid "Download PDF"
|
msgid "Download PDF"
|
||||||
msgstr "下載 PDF"
|
msgstr "下載 PDF"
|
||||||
|
|
||||||
@ -487,7 +515,7 @@ msgstr "複製現有項目"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "複製現有簡歷"
|
msgstr "複製現有簡歷"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "編輯"
|
msgstr "編輯"
|
||||||
|
|
||||||
@ -503,7 +531,7 @@ msgstr "效果"
|
|||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr "電子郵件"
|
msgstr "電子郵件"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||||
msgid "Enable 2FA"
|
msgid "Enable 2FA"
|
||||||
msgstr "啟用雙因子驗證"
|
msgstr "啟用雙因子驗證"
|
||||||
|
|
||||||
@ -531,6 +559,10 @@ msgstr "在下面輸入您的身份驗證器應用程式提供的一次性密碼
|
|||||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||||
msgstr "輸入您的電子郵件地址,如果帳戶存在,我們將向您發送重置密碼的網址。"
|
msgstr "輸入您的電子郵件地址,如果帳戶存在,我們將向您發送重置密碼的網址。"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:46
|
||||||
|
msgid "Error {statusCode}"
|
||||||
|
msgstr "Error {statusCode}"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||||
msgid "Errors"
|
msgid "Errors"
|
||||||
msgstr "錯誤"
|
msgstr "錯誤"
|
||||||
@ -544,6 +576,7 @@ msgid "Explore the templates available in Reactive Resume and view the resumes c
|
|||||||
msgstr "探索反應式履歷中提供的範本並查看用它們製作的履歷。它們還可以作為範例來幫助指導您下一份簡歷的創建。"
|
msgstr "探索反應式履歷中提供的範本並查看用它們製作的履歷。它們還可以作為範例來幫助指導您下一份簡歷的創建。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||||
msgid "Export"
|
msgid "Export"
|
||||||
msgstr "導出"
|
msgstr "導出"
|
||||||
@ -564,19 +597,19 @@ msgstr "最後,"
|
|||||||
msgid "Fix Spelling & Grammar"
|
msgid "Fix Spelling & Grammar"
|
||||||
msgstr "修正拼字和語法"
|
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"
|
msgid "Font Family"
|
||||||
msgstr "字體"
|
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"
|
msgid "Font Size"
|
||||||
msgstr "字體大小"
|
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"
|
msgid "Font Subset"
|
||||||
msgstr "字體子集"
|
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"
|
msgid "Font Variants"
|
||||||
msgstr "字型變體"
|
msgstr "字型變體"
|
||||||
|
|
||||||
@ -584,7 +617,7 @@ msgstr "字型變體"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "例如,您將這份履歷寄給哪些公司的相關資訊,或是工作說明的連結,都可以在這裡記下來。"
|
msgstr "例如,您將這份履歷寄給哪些公司的相關資訊,或是工作說明的連結,都可以在這裡記下來。"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "略過"
|
msgstr "略過"
|
||||||
|
|
||||||
@ -601,7 +634,7 @@ msgstr "忘記密碼?"
|
|||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr "格式"
|
msgstr "格式"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:54
|
||||||
msgid "Found a bug, or have an idea for a new feature?"
|
msgid "Found a bug, or have an idea for a new feature?"
|
||||||
msgstr "發現錯誤或有新功能的想法?"
|
msgstr "發現錯誤或有新功能的想法?"
|
||||||
|
|
||||||
@ -609,8 +642,8 @@ msgstr "發現錯誤或有新功能的想法?"
|
|||||||
msgid "Free, forever"
|
msgid "Free, forever"
|
||||||
msgstr "永久免費"
|
msgstr "永久免費"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:121
|
#: apps/client/src/components/ai-actions.tsx:125
|
||||||
#: apps/client/src/components/ai-actions.tsx:124
|
#: apps/client/src/components/ai-actions.tsx:128
|
||||||
msgid "Friendly"
|
msgid "Friendly"
|
||||||
msgstr "友善"
|
msgstr "友善"
|
||||||
|
|
||||||
@ -643,6 +676,10 @@ msgstr "為您的舊履歷起個新名字。"
|
|||||||
msgid "Go to Dashboard"
|
msgid "Go to Dashboard"
|
||||||
msgstr "前往儀表板"
|
msgstr "前往儀表板"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:55
|
||||||
|
msgid "Go to home"
|
||||||
|
msgstr "Ve a home"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||||
msgid "Google"
|
msgid "Google"
|
||||||
msgstr "Google"
|
msgstr "Google"
|
||||||
@ -651,7 +688,7 @@ msgstr "Google"
|
|||||||
msgid "Grayscale"
|
msgid "Grayscale"
|
||||||
msgstr "灰階"
|
msgstr "灰階"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||||
msgid "Grid"
|
msgid "Grid"
|
||||||
msgstr "網格"
|
msgstr "網格"
|
||||||
|
|
||||||
@ -668,7 +705,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
|||||||
msgstr "在這裡,您可以更新個人資料,根據個人喜好定制和個人化使用體驗。"
|
msgstr "在這裡,您可以更新個人資料,根據個人喜好定制和個人化使用體驗。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:180
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "隱藏"
|
msgstr "隱藏"
|
||||||
@ -677,7 +714,7 @@ msgstr "隱藏"
|
|||||||
msgid "Hide"
|
msgid "Hide"
|
||||||
msgstr "隱藏"
|
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"
|
msgid "Hide Icons"
|
||||||
msgstr "隱藏圖示"
|
msgstr "隱藏圖示"
|
||||||
|
|
||||||
@ -734,7 +771,7 @@ msgstr "改善寫作"
|
|||||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||||
msgstr "如果您無法掃描此 QR 代碼,也可以將此連結複製貼到您的驗證器應用程式中。"
|
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."
|
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||||
msgstr "在這部份,您可以變更密碼和啟用/停用雙因子驗證。"
|
msgstr "在這部份,您可以變更密碼和啟用/停用雙因子驗證。"
|
||||||
|
|
||||||
@ -743,7 +780,8 @@ msgid "In this section, you can delete your account and all the data associated
|
|||||||
msgstr "在這部分,您可以刪除您的帳戶以及與您的使用者相關的所有資料,但請記住 <0>此動作是不可逆的</0>。"
|
msgstr "在這部分,您可以刪除您的帳戶以及與您的使用者相關的所有資料,但請記住 <0>此動作是不可逆的</0>。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:117
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:121
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "詳細資訊"
|
msgstr "詳細資訊"
|
||||||
|
|
||||||
@ -802,10 +840,10 @@ msgstr "john.doe@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "關鍵詞"
|
msgstr "關鍵詞"
|
||||||
|
|
||||||
@ -824,7 +862,8 @@ msgid "Last updated {lastUpdated}"
|
|||||||
msgstr "最後更新 {lastUpdated}"
|
msgstr "最後更新 {lastUpdated}"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:198
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:202
|
||||||
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:203
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "版面配置"
|
msgstr "版面配置"
|
||||||
|
|
||||||
@ -837,7 +876,7 @@ msgid "Letter"
|
|||||||
msgstr "信件"
|
msgstr "信件"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:98
|
||||||
msgid "Level"
|
msgid "Level"
|
||||||
msgstr "等級"
|
msgstr "等級"
|
||||||
|
|
||||||
@ -853,7 +892,7 @@ msgstr "亮色"
|
|||||||
msgid "Light or dark theme"
|
msgid "Light or dark theme"
|
||||||
msgstr "亮色或暗色主題"
|
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"
|
msgid "Line Height"
|
||||||
msgstr "線條高度"
|
msgstr "線條高度"
|
||||||
|
|
||||||
@ -862,11 +901,11 @@ msgstr "線條高度"
|
|||||||
msgid "LinkedIn, JSON Resume, etc."
|
msgid "LinkedIn, JSON Resume, etc."
|
||||||
msgstr "LinkedIn、JSON Resume 等。"
|
msgstr "LinkedIn、JSON Resume 等。"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||||
msgid "List"
|
msgid "List"
|
||||||
msgstr "列表"
|
msgstr "列表"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||||
@ -897,7 +936,7 @@ msgstr "登出"
|
|||||||
msgid "Lost your device?"
|
msgid "Lost your device?"
|
||||||
msgstr "遺失裝置?"
|
msgstr "遺失裝置?"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:247
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:252
|
||||||
msgid "Main"
|
msgid "Main"
|
||||||
msgstr "主要"
|
msgstr "主要"
|
||||||
|
|
||||||
@ -914,7 +953,7 @@ msgstr "2023 年 3 月"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:103
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||||
msgid "March 2023 - Present"
|
msgid "March 2023 - Present"
|
||||||
msgstr "2023 年 3 月至今"
|
msgstr "2023 年 3 月至今"
|
||||||
@ -923,7 +962,7 @@ msgstr "2023 年 3 月至今"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "邊界"
|
msgstr "邊界"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "最大 Token"
|
msgstr "最大 Token"
|
||||||
|
|
||||||
@ -931,18 +970,18 @@ msgstr "最大 Token"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "MIT 授權"
|
msgstr "MIT 授權"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "模型"
|
msgstr "模型"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:98
|
#: apps/client/src/pages/auth/register/page.tsx:98
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:59
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:73
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:70
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:153
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
@ -957,7 +996,7 @@ msgstr "名稱"
|
|||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "網路"
|
msgstr "網路"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||||
msgid "New Password"
|
msgid "New Password"
|
||||||
msgstr "新密碼"
|
msgstr "新密碼"
|
||||||
|
|
||||||
@ -974,6 +1013,7 @@ msgid "Note: This will make your account less secure."
|
|||||||
msgstr "注意:這會降低您帳戶的安全性。"
|
msgstr "注意:這會降低您帳戶的安全性。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "注意事項"
|
msgstr "注意事項"
|
||||||
@ -1009,16 +1049,16 @@ msgstr "OpenAI 沒有為您的文字傳回任何選項。"
|
|||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "OpenAI 整合"
|
msgstr "OpenAI 整合"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||||
|
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||||
|
msgstr "OpenAI/Azure OpenAI/Ollama 整合"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||||
msgid "OpenAI/Ollama API Key"
|
msgid "OpenAI/Ollama API Key"
|
||||||
msgstr "OpenAI/Ollama API 金鑰"
|
msgstr "OpenAI/Ollama API 金鑰"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
|
||||||
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/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"
|
msgid "Options"
|
||||||
msgstr "選項"
|
msgstr "選項"
|
||||||
|
|
||||||
@ -1032,22 +1072,23 @@ msgid "Organization"
|
|||||||
msgstr "組織"
|
msgstr "組織"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "頁"
|
msgstr "頁"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:228
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:233
|
||||||
msgid "Page {pageNumber}"
|
msgid "Page {pageNumber}"
|
||||||
msgstr "頁面 {pageNumber}"
|
msgstr "頁面 {pageNumber}"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
#: 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"
|
msgid "Password"
|
||||||
msgstr "密碼"
|
msgstr "密碼"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr "PDF"
|
msgstr "PDF"
|
||||||
|
|
||||||
@ -1109,14 +1150,12 @@ msgstr "由 <0> 圖標</0> 提供"
|
|||||||
msgid "Primary Color"
|
msgid "Primary Color"
|
||||||
msgstr "主要顏色"
|
msgstr "主要顏色"
|
||||||
|
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||||
#: 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"
|
msgid "Privacy Policy"
|
||||||
msgstr "隱私政策"
|
msgstr "隱私政策"
|
||||||
|
|
||||||
#: apps/client/src/components/ai-actions.tsx:109
|
#: apps/client/src/components/ai-actions.tsx:113
|
||||||
#: apps/client/src/components/ai-actions.tsx:112
|
#: apps/client/src/components/ai-actions.tsx:116
|
||||||
msgid "Professional"
|
msgid "Professional"
|
||||||
msgstr "專業"
|
msgstr "專業"
|
||||||
|
|
||||||
@ -1132,7 +1171,7 @@ msgstr "公開"
|
|||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
msgstr "發行者"
|
msgstr "發行者"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
||||||
msgid "Raise an issue"
|
msgid "Raise an issue"
|
||||||
msgstr "提出問題"
|
msgstr "提出問題"
|
||||||
|
|
||||||
@ -1144,11 +1183,10 @@ msgstr "提出問題"
|
|||||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
#: 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-email/page.tsx:43
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: 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/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
#: 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/home/page.tsx:24
|
||||||
#: apps/client/src/pages/public/page.tsx:74
|
#: apps/client/src/pages/public/page.tsx:74
|
||||||
#: apps/client/src/pages/public/page.tsx:95
|
#: apps/client/src/pages/public/page.tsx:95
|
||||||
@ -1175,12 +1213,12 @@ msgstr "Reactive Resume 的茁壯成長有賴於其充滿活力的社群。這
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "重做"
|
msgstr "重做"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:105
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:157
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "刪除"
|
msgstr "刪除"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:231
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:236
|
||||||
msgid "Remove Page"
|
msgid "Remove Page"
|
||||||
msgstr "刪除頁面"
|
msgstr "刪除頁面"
|
||||||
|
|
||||||
@ -1199,7 +1237,7 @@ msgstr "重新傳送電子郵件確認連結"
|
|||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr "重置"
|
msgstr "重置"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:201
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:206
|
||||||
msgid "Reset Layout"
|
msgid "Reset Layout"
|
||||||
msgstr "重設版面配置"
|
msgstr "重設版面配置"
|
||||||
|
|
||||||
@ -1213,8 +1251,8 @@ msgid "Reset Zoom"
|
|||||||
msgstr "重設縮放"
|
msgstr "重設縮放"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
#: apps/client/src/pages/dashboard/_components/sidebar.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:37
|
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||||
msgid "Resumes"
|
msgid "Resumes"
|
||||||
msgstr "履歷表"
|
msgstr "履歷表"
|
||||||
|
|
||||||
@ -1237,11 +1275,11 @@ msgstr "圓角"
|
|||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "儲存變更"
|
msgstr "儲存變更"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "儲存至本機"
|
msgstr "儲存至本機"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "已儲存"
|
msgstr "已儲存"
|
||||||
|
|
||||||
@ -1262,15 +1300,15 @@ msgstr "捲動到平移"
|
|||||||
msgid "Scroll to Zoom"
|
msgid "Scroll to Zoom"
|
||||||
msgstr "捲動縮放"
|
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"
|
msgid "Search for a font family"
|
||||||
msgstr "搜尋字型系列"
|
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"
|
msgid "Search for a font subset"
|
||||||
msgstr "搜尋字型的部分字元集合"
|
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"
|
msgid "Search for a font variant"
|
||||||
msgstr "搜尋字型變體"
|
msgstr "搜尋字型變體"
|
||||||
|
|
||||||
@ -1282,7 +1320,7 @@ msgstr "搜尋語言"
|
|||||||
msgid "Secure with two-factor authentication"
|
msgid "Secure with two-factor authentication"
|
||||||
msgstr "透過雙因子驗證確保安全"
|
msgstr "透過雙因子驗證確保安全"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||||
msgid "Security"
|
msgid "Security"
|
||||||
msgstr "安全性"
|
msgstr "安全性"
|
||||||
|
|
||||||
@ -1294,7 +1332,7 @@ msgstr "使用 Docker 自行託管"
|
|||||||
msgid "Send Email"
|
msgid "Send Email"
|
||||||
msgstr "傳送電子郵件"
|
msgstr "傳送電子郵件"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:74
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79
|
||||||
msgid "Send me a message"
|
msgid "Send me a message"
|
||||||
msgstr "傳送訊息給我"
|
msgstr "傳送訊息給我"
|
||||||
|
|
||||||
@ -1314,6 +1352,7 @@ msgid "Setup two-factor authentication on your account"
|
|||||||
msgstr "在您的帳戶上設定雙因子驗證"
|
msgstr "在您的帳戶上設定雙因子驗證"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||||
msgid "Sharing"
|
msgid "Sharing"
|
||||||
msgstr "分享"
|
msgstr "分享"
|
||||||
@ -1330,7 +1369,7 @@ msgstr "顯示分隔線"
|
|||||||
msgid "Show Page Numbers"
|
msgid "Show Page Numbers"
|
||||||
msgstr "顯示頁碼"
|
msgstr "顯示頁碼"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:248
|
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "側邊欄"
|
msgstr "側邊欄"
|
||||||
|
|
||||||
@ -1408,6 +1447,7 @@ msgid "Start building your resume by giving it a name."
|
|||||||
msgstr "為您的履歷命名,開始建立您的履歷。"
|
msgstr "為您的履歷命名,開始建立您的履歷。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||||
msgid "Statistics"
|
msgid "Statistics"
|
||||||
msgstr "統計資料"
|
msgstr "統計資料"
|
||||||
@ -1422,17 +1462,17 @@ msgstr "安全儲存您的備份代碼"
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:129
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:151
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:129
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||||
msgid "Summary"
|
msgid "Summary"
|
||||||
msgstr "摘要"
|
msgstr "摘要"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:23
|
||||||
msgid "Support the app by donating what you can!"
|
msgid "Support the app by donating what you can!"
|
||||||
msgstr "請盡您所能捐款支持此應用程式!"
|
msgstr "請盡您所能捐款支持此應用程式!"
|
||||||
|
|
||||||
@ -1444,11 +1484,20 @@ msgstr "支持 Reactive Resume"
|
|||||||
msgid "Supports A4/Letter page formats"
|
msgid "Supports A4/Letter page formats"
|
||||||
msgstr "支援 A4/Letter 頁面格式"
|
msgstr "支援 A4/Letter 頁面格式"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:31
|
||||||
|
msgid "Switch to Dark Mode"
|
||||||
|
msgstr "切換至黑暗模式"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:29
|
||||||
|
msgid "Switch to Light Mode"
|
||||||
|
msgstr "切換至燈光模式"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:85
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr "系統"
|
msgstr "系統"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
#: 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
|
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||||
msgid "Template"
|
msgid "Template"
|
||||||
msgstr "範本"
|
msgstr "範本"
|
||||||
@ -1465,15 +1514,20 @@ msgstr "用戶評價"
|
|||||||
msgid "Text Color"
|
msgid "Text Color"
|
||||||
msgstr "字型色彩"
|
msgstr "字型色彩"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
#: apps/client/src/pages/public/error.tsx:17
|
||||||
msgid "The passwords you entered do not match."
|
msgid "The page you're looking for doesn't exist."
|
||||||
msgstr "您輸入的密碼不符。"
|
msgstr "La página que estás buscando no existe。"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/public/error.tsx:29
|
||||||
|
msgid "The request was invalid."
|
||||||
|
msgstr "La petición fue inválida。"
|
||||||
|
|
||||||
#: apps/client/src/services/errors/translate-error.ts:49
|
#: 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."
|
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||||
msgstr "您要更新的履歷已鎖定,若要對其進行任何變更,請解除鎖定。"
|
msgstr "您要更新的履歷已鎖定,若要對其進行任何變更,請解除鎖定。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
#: 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/builder/sidebars/right/sections/theme.tsx:20
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
@ -1530,7 +1584,7 @@ msgstr "追蹤檢視與下載"
|
|||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
#: 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"
|
msgid "Two-Factor Authentication"
|
||||||
msgstr "雙因子驗證"
|
msgstr "雙因子驗證"
|
||||||
|
|
||||||
@ -1552,11 +1606,12 @@ msgid "Type of Study"
|
|||||||
msgstr "研究類型"
|
msgstr "研究類型"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
#: 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"
|
msgid "Typography"
|
||||||
msgstr "字體樣式"
|
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"
|
msgid "Underline Links"
|
||||||
msgstr "底線超連結"
|
msgstr "底線超連結"
|
||||||
|
|
||||||
@ -1599,6 +1654,14 @@ msgstr "URL"
|
|||||||
msgid "URL must start with https://"
|
msgid "URL must start with https://"
|
||||||
msgstr "URL 必須以 https:// 開頭"
|
msgstr "URL 必須以 https:// 開頭"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:247
|
||||||
|
msgid "Use Azure OpenAI"
|
||||||
|
msgstr "使用 Azure OpenAI"
|
||||||
|
|
||||||
|
#: apps/client/src/components/theme-switch.tsx:30
|
||||||
|
msgid "Use System Theme"
|
||||||
|
msgstr "使用系統主題"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:52
|
||||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
#: apps/client/src/pages/auth/backup-otp/page.tsx:57
|
||||||
msgid "Use your backup code"
|
msgid "Use your backup code"
|
||||||
@ -1651,7 +1714,7 @@ msgstr "版本 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "查閱"
|
msgstr "查閱"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "可見的"
|
msgstr "可見的"
|
||||||
|
|
||||||
@ -1665,11 +1728,11 @@ msgstr "我們驗證您的電子郵件地址,只是為了確保您忘記密碼
|
|||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:115
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:137
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:69
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:115
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||||
@ -1681,10 +1744,14 @@ msgstr "個人網站"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "最新版本的新功能"
|
msgstr "最新版本的新功能"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
#: apps/client/src/pages/public/error.tsx:26
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
msgid "You are not authorized to access this page."
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
msgstr "No estás autorizado para acceder a esta página。"
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:186
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:89
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:164
|
||||||
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:135
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "你可以使用逗號或Enter鍵隔開,新增多個關鍵詞。"
|
msgstr "你可以使用逗號或Enter鍵隔開,新增多個關鍵詞。"
|
||||||
|
|
||||||
@ -1692,19 +1759,27 @@ msgstr "你可以使用逗號或Enter鍵隔開,新增多個關鍵詞。"
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "您也可以輸入您的使用者名稱。"
|
msgstr "您也可以輸入您的使用者名稱。"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||||
msgid "You can also integrate with Ollama simply by setting the API key to `sk-1234567890abcdef` and the Base URL to your Ollama URL, i.e. `http://localhost:11434/v1`. You can also pick and choose models and set the max tokens as per your preference."
|
msgid "You can also integrate with Azure OpenAI by enabling the <0>Use Azure OpenAI</0> checkbox and setting the Resource URL to your Azure OpenAI resource: <1>https://your-resource.openai.azure.com</1>. Set the deployment name in the Model field and specify the appropriate API version for your Azure deployment."
|
||||||
msgstr "您也可以與 Ollama 整合,只要將 API key 設定為「sk-1234567890abcdef」,並將 Base URL 設定為您的 Ollama URL,即「http://localhost:11434/v1」。您也可以依您的喜好挑選模型並設定最大的 tokens。"
|
msgstr "您也可以與 Azure OpenAI 整合,方法是啟用<0>使用 Azure OpenAI</0>核取方塊,並將資源 URL 設定為您的 Azure OpenAI 資源<1>:https://your-resource.openai.azure.com。</1>在模型欄位中設定部署名稱,並為您的 Azure 部署指定適當的 API 版本。"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
msgid "You can also integrate with Ollama simply by setting the API key to<0>sk-1234567890abcdef</0> and the Base URL to your Ollama URL, i.e.<1>http://localhost:11434/v1</1>. You can also pick and choose models and set the max tokens as per your preference."
|
||||||
msgstr "您可以利用 OpenAI API 協助您生成內容,或在撰寫履歷時改善您的文筆。"
|
msgstr "您也可以透過設定 API key<0>tosk-1234567890abcdef</0>和 Base URL 至您的 Ollama URL (即<1>http://localhost:11434/v1</1>) 來與 Ollama 整合。您也可以依您的喜好挑選模型和設定最大代幣。"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:122
|
||||||
|
msgid "You can make use of the OpenAI API, Azure OpenAI, or Ollama to help you generate content, or improve your writing while composing your resume."
|
||||||
|
msgstr "您可以利用 OpenAI API、Azure OpenAI 或 Ollama 來幫助您產生內容,或在撰寫履歷時改善您的文筆。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "您可以追蹤履歷的檢視次數,或透過啟用公開分享功能追蹤有多少人下載了履歷。"
|
msgstr "您可以追蹤履歷的檢視次數,或透過啟用公開分享功能追蹤有多少人下載了履歷。"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
#: apps/client/src/pages/public/error.tsx:20
|
||||||
|
msgid "You don't have permission to access this page."
|
||||||
|
msgstr "No tienes permiso para acceder a esta página。"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:128
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "您可以選擇 <0>取得自己的 OpenAI API 金鑰</0> 。此金鑰可讓您隨心所欲地使用 API。或者,如果您想要完全停用 Reactive Resume 中的 AI 功能,您可以直接從設定中移除金鑰。"
|
msgstr "您可以選擇 <0>取得自己的 OpenAI API 金鑰</0> 。此金鑰可讓您隨心所欲地使用 API。或者,如果您想要完全停用 Reactive Resume 中的 AI 功能,您可以直接從設定中移除金鑰。"
|
||||||
|
|
||||||
@ -1721,7 +1796,7 @@ msgstr "你有新郵件"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "您的帳戶和所有資料已成功刪除。再見"
|
msgstr "您的帳戶和所有資料已成功刪除。再見"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:289
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "您的 API 密鑰會安全地儲存在瀏覽器的本機儲存空間中,並且僅會在透過官方 SDK 向 OpenAI 提出請求時使用。請放心,除了與 OpenAI 的服務互動時,您的金鑰不會傳送到任何外部伺服器。"
|
msgstr "您的 API 密鑰會安全地儲存在瀏覽器的本機儲存空間中,並且僅會在透過官方 SDK 向 OpenAI 提出請求時使用。請放心,除了與 OpenAI 的服務互動時,您的金鑰不會傳送到任何外部伺服器。"
|
||||||
|
|
||||||
@ -1733,7 +1808,7 @@ msgstr "您的電子郵件地址已成功驗證。"
|
|||||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||||
msgstr "您的 OpenAI API 密鑰尚未設定。請前往您的帳戶設定啟用 OpenAI 整合。"
|
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."
|
msgid "Your password has been updated successfully."
|
||||||
msgstr "您的密碼已成功更新。"
|
msgstr "您的密碼已成功更新。"
|
||||||
|
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
import { t } from "@lingui/macro";
|
import { t } from "@lingui/macro";
|
||||||
import { Fingerprint, GithubLogo, GoogleLogo } from "@phosphor-icons/react";
|
import { FingerprintIcon, GithubLogoIcon, GoogleLogoIcon } from "@phosphor-icons/react";
|
||||||
import { Button } from "@reactive-resume/ui";
|
import { Button } from "@reactive-resume/ui";
|
||||||
|
|
||||||
import { useAuthProviders } from "@/client/services/auth/providers";
|
import { useAuthProviders } from "@/client/services/auth/providers";
|
||||||
@ -14,7 +14,7 @@ export const SocialAuth = () => {
|
|||||||
{providers.includes("github") && (
|
{providers.includes("github") && (
|
||||||
<Button asChild size="lg" className="w-full !bg-[#222] !text-white hover:!bg-[#222]/80">
|
<Button asChild size="lg" className="w-full !bg-[#222] !text-white hover:!bg-[#222]/80">
|
||||||
<a href="/api/auth/github">
|
<a href="/api/auth/github">
|
||||||
<GithubLogo className="mr-3 size-4" />
|
<GithubLogoIcon className="mr-3 size-4" />
|
||||||
{t`GitHub`}
|
{t`GitHub`}
|
||||||
</a>
|
</a>
|
||||||
</Button>
|
</Button>
|
||||||
@ -27,7 +27,7 @@ export const SocialAuth = () => {
|
|||||||
className="w-full !bg-[#4285F4] !text-white hover:!bg-[#4285F4]/80"
|
className="w-full !bg-[#4285F4] !text-white hover:!bg-[#4285F4]/80"
|
||||||
>
|
>
|
||||||
<a href="/api/auth/google">
|
<a href="/api/auth/google">
|
||||||
<GoogleLogo className="mr-3 size-4" />
|
<GoogleLogoIcon className="mr-3 size-4" />
|
||||||
{t`Google`}
|
{t`Google`}
|
||||||
</a>
|
</a>
|
||||||
</Button>
|
</Button>
|
||||||
@ -40,7 +40,7 @@ export const SocialAuth = () => {
|
|||||||
className="w-full !bg-[#dc2626] !text-white hover:!bg-[#dc2626]/80"
|
className="w-full !bg-[#dc2626] !text-white hover:!bg-[#dc2626]/80"
|
||||||
>
|
>
|
||||||
<a href="/api/auth/openid">
|
<a href="/api/auth/openid">
|
||||||
<Fingerprint className="mr-3 size-4" />
|
<FingerprintIcon className="mr-3 size-4" />
|
||||||
{import.meta.env.VITE_OPENID_NAME}
|
{import.meta.env.VITE_OPENID_NAME}
|
||||||
</a>
|
</a>
|
||||||
</Button>
|
</Button>
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
import { zodResolver } from "@hookform/resolvers/zod";
|
import { zodResolver } from "@hookform/resolvers/zod";
|
||||||
import { t } from "@lingui/macro";
|
import { t } from "@lingui/macro";
|
||||||
import { ArrowLeft } from "@phosphor-icons/react";
|
import { ArrowLeftIcon } from "@phosphor-icons/react";
|
||||||
import { twoFactorBackupSchema } from "@reactive-resume/dto";
|
import { twoFactorBackupSchema } from "@reactive-resume/dto";
|
||||||
import { usePasswordToggle } from "@reactive-resume/hooks";
|
import { usePasswordToggle } from "@reactive-resume/hooks";
|
||||||
import {
|
import {
|
||||||
@ -95,7 +95,7 @@ export const BackupOtpPage = () => {
|
|||||||
void navigate(-1);
|
void navigate(-1);
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<ArrowLeft size={14} className="mr-2" />
|
<ArrowLeftIcon size={14} className="mr-2" />
|
||||||
<span>{t`Back`}</span>
|
<span>{t`Back`}</span>
|
||||||
</Button>
|
</Button>
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
import { zodResolver } from "@hookform/resolvers/zod";
|
import { zodResolver } from "@hookform/resolvers/zod";
|
||||||
import { t } from "@lingui/macro";
|
import { t } from "@lingui/macro";
|
||||||
import { ArrowLeft } from "@phosphor-icons/react";
|
import { ArrowLeftIcon } from "@phosphor-icons/react";
|
||||||
import { forgotPasswordSchema } from "@reactive-resume/dto";
|
import { forgotPasswordSchema } from "@reactive-resume/dto";
|
||||||
import {
|
import {
|
||||||
Alert,
|
Alert,
|
||||||
@ -96,7 +96,7 @@ export const ForgotPasswordPage = () => {
|
|||||||
void navigate(-1);
|
void navigate(-1);
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<ArrowLeft size={14} className="mr-2" />
|
<ArrowLeftIcon size={14} className="mr-2" />
|
||||||
<span>{t`Back`}</span>
|
<span>{t`Back`}</span>
|
||||||
</Button>
|
</Button>
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
import { zodResolver } from "@hookform/resolvers/zod";
|
import { zodResolver } from "@hookform/resolvers/zod";
|
||||||
import { t, Trans } from "@lingui/macro";
|
import { t, Trans } from "@lingui/macro";
|
||||||
import { ArrowRight } from "@phosphor-icons/react";
|
import { ArrowRightIcon } from "@phosphor-icons/react";
|
||||||
import { loginSchema } from "@reactive-resume/dto";
|
import { loginSchema } from "@reactive-resume/dto";
|
||||||
import { usePasswordToggle } from "@reactive-resume/hooks";
|
import { usePasswordToggle } from "@reactive-resume/hooks";
|
||||||
import {
|
import {
|
||||||
@ -63,7 +63,7 @@ export const LoginPage = () => {
|
|||||||
<Button asChild variant="link" className="px-1.5">
|
<Button asChild variant="link" className="px-1.5">
|
||||||
<Link to="/auth/register">
|
<Link to="/auth/register">
|
||||||
{t({ message: "Create one now", context: "This is a link to create a new account" })}{" "}
|
{t({ message: "Create one now", context: "This is a link to create a new account" })}{" "}
|
||||||
<ArrowRight className="ml-1" />
|
<ArrowRightIcon className="ml-1" />
|
||||||
</Link>
|
</Link>
|
||||||
</Button>
|
</Button>
|
||||||
</h6>
|
</h6>
|
||||||
|
|||||||