Compare commits
127 Commits
v4.4.0
...
f284e21efa
| Author | SHA1 | Date | |
|---|---|---|---|
| f284e21efa | |||
| 03f15f91b3 | |||
| 8e13d9c3ac | |||
| 80932eb80c | |||
| b2ae2c05d8 | |||
| e349fc9bd1 | |||
| 53213dfb26 | |||
| 40f27a53b6 | |||
| 2d900600bf | |||
| 047e9c248f | |||
| 1cc1c39903 | |||
| f6f2a29a7a | |||
| 4368f6a887 | |||
| f6db9fb387 | |||
| afa3804bea | |||
| e2f43b4931 | |||
| 067fdd0921 | |||
| 1296e6bd45 | |||
| d883edb51f | |||
| 51fcf13d37 | |||
| 91ef87b4e0 | |||
| 4c0cc947a2 | |||
| 6fcb7a4845 | |||
| 213f96b189 | |||
| e8d6d4ad3a | |||
| 87370cfdf0 | |||
| 112a644927 | |||
| 2977e3528a | |||
| fd7b5e0dd4 | |||
| 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 |
@ -5,7 +5,6 @@
|
||||
"overrides": [
|
||||
{
|
||||
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
|
||||
"extends": ["plugin:prettier/recommended"],
|
||||
"plugins": ["simple-import-sort", "unused-imports"],
|
||||
"rules": {
|
||||
// eslint
|
||||
@ -42,14 +41,6 @@
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
|
||||
// prettier
|
||||
"prettier/prettier": [
|
||||
"warn",
|
||||
{
|
||||
"endOfLine": "auto"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
|
||||
1
.github/.well-known/funding-manifest-urls
vendored
Normal file
@ -0,0 +1 @@
|
||||
https://rxresu.me/funding.json
|
||||
3
.github/workflows/lint-test-build.yml
vendored
@ -38,9 +38,6 @@ jobs:
|
||||
- name: Lint
|
||||
run: pnpm run lint
|
||||
|
||||
- name: Format
|
||||
run: pnpm run format:check
|
||||
|
||||
- name: Test
|
||||
run: pnpm run test
|
||||
|
||||
|
||||
1
.gitignore
vendored
@ -40,6 +40,7 @@ Thumbs.db
|
||||
# Generated Files
|
||||
.nx
|
||||
.swc
|
||||
.turbo
|
||||
fly.toml
|
||||
stats.html
|
||||
|
||||
|
||||
@ -5,7 +5,9 @@
|
||||
"install": "always",
|
||||
"packageManager": "pnpm",
|
||||
"reject": [
|
||||
"nx",
|
||||
"eslint",
|
||||
"@nx/*",
|
||||
"@swc/*",
|
||||
"@swc-node/*",
|
||||
"@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,
|
||||
"vitest.disableWorkspaceWarning": true,
|
||||
"typescript.tsdk": "node_modules/typescript/lib",
|
||||
"i18n-ally.localesPaths": ["apps/client/src/locales"],
|
||||
"tailwindCSS.experimental.classRegex": [
|
||||
["cva\\(([^)]*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"],
|
||||
["cn\\(([^)]*)\\)", "(?:'|\"|`)([^']*)(?:'|\"|`)"]
|
||||
]
|
||||
],
|
||||
"typescript.tsdk": "node_modules/typescript/lib"
|
||||
}
|
||||
|
||||
@ -7,7 +7,7 @@ ARG NX_CLOUD_ACCESS_TOKEN
|
||||
ENV PNPM_HOME="/pnpm"
|
||||
ENV PATH="$PNPM_HOME:$PATH"
|
||||
|
||||
RUN corepack enable pnpm && corepack prepare pnpm --activate
|
||||
RUN corepack enable
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
|
||||
39
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)
|
||||
@ -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/)
|
||||
|
||||
</div>
|
||||
|
||||
## 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.
|
||||
@ -24,17 +37,21 @@ Start creating your standout resume with Reactive Resume today!
|
||||
|
||||
## Templates
|
||||
|
||||
| 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" /> |
|
||||
| Azurill | Bronzor | Chikorita |
|
||||
| ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ------------------------------------------------------------------------- |
|
||||
| <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 |
|
||||
| ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- |
|
||||
| <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" /> |
|
||||
| Ditto | Gengar | Glalie |
|
||||
| -------------------------------------------------------------------- | ---------------------------------------------------------------------- | ---------------------------------------------------------------------- |
|
||||
| <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" /> |
|
||||
|
||||
| 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" /> |
|
||||
| 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 |
|
||||
| ------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- |
|
||||
| <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
|
||||
|
||||
@ -93,7 +110,7 @@ _By the community, for the community._
|
||||
A passion project by [Amruth Pillai](https://www.amruthpillai.com/)
|
||||
|
||||
<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">
|
||||
</a>
|
||||
</p>
|
||||
|
||||
@ -4,13 +4,6 @@
|
||||
"overrides": [
|
||||
{
|
||||
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
|
||||
"extends": ["plugin:tailwindcss/recommended"],
|
||||
"settings": {
|
||||
"tailwindcss": {
|
||||
"callees": ["cn", "clsx", "cva"],
|
||||
"config": "tailwind.config.js"
|
||||
}
|
||||
},
|
||||
"rules": {
|
||||
// eslint
|
||||
"@typescript-eslint/no-require-imports": "off",
|
||||
@ -28,10 +21,7 @@
|
||||
],
|
||||
|
||||
// react-hooks
|
||||
"react-hooks/exhaustive-deps": "off",
|
||||
|
||||
// tailwindcss
|
||||
"tailwindcss/no-custom-classname": "off"
|
||||
"react-hooks/exhaustive-deps": "off"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
||||
@ -39,6 +39,6 @@
|
||||
<script type="module" src="/src/main.tsx"></script>
|
||||
|
||||
<!-- Phosphor Icons -->
|
||||
<script src="https://unpkg.com/@phosphor-icons/web"></script>
|
||||
<script defer src="https://cdn.jsdelivr.net/npm/@phosphor-icons/web"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@ -5,7 +5,7 @@ type BrandIconProps = {
|
||||
};
|
||||
|
||||
export const BrandIcon = forwardRef<HTMLImageElement, BrandIconProps>(({ slug }, ref) => {
|
||||
if (slug === "linkedin") {
|
||||
if (slug.toLowerCase() === "linkedin") {
|
||||
return (
|
||||
<img
|
||||
ref={ref}
|
||||
|
||||
@ -14,8 +14,8 @@ export const Picture = ({ className }: PictureProps) => {
|
||||
|
||||
return (
|
||||
<img
|
||||
src={picture.url}
|
||||
alt="Profile"
|
||||
src={picture.url}
|
||||
className={cn(
|
||||
"relative z-20 object-cover",
|
||||
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>
|
||||
<title>{name} | Reactive Resume</title>
|
||||
|
||||
{metadata.css.visible && <style lang="css">{metadata.css.value}</style>}
|
||||
{metadata.css.visible && (
|
||||
<style id="custom-css" lang="css">
|
||||
{metadata.css.value}
|
||||
</style>
|
||||
)}
|
||||
</Helmet>
|
||||
|
||||
<Outlet />
|
||||
|
||||
@ -1,6 +1,8 @@
|
||||
import { useEffect } from "react";
|
||||
import { HelmetProvider } from "react-helmet-async";
|
||||
import { Outlet } from "react-router";
|
||||
|
||||
import { helmetContext } from "../constants/helmet";
|
||||
import { useArtboardStore } from "../store/artboard";
|
||||
|
||||
export const Providers = () => {
|
||||
@ -10,35 +12,28 @@ export const Providers = () => {
|
||||
useEffect(() => {
|
||||
const handleMessage = (event: MessageEvent) => {
|
||||
if (event.origin !== window.location.origin) return;
|
||||
|
||||
if (event.data.type === "SET_RESUME") setResume(event.data.payload);
|
||||
if (event.data.type === "SET_THEME") {
|
||||
event.data.payload === "dark"
|
||||
? document.documentElement.classList.add("dark")
|
||||
: document.documentElement.classList.remove("dark");
|
||||
}
|
||||
};
|
||||
|
||||
const resumeData = window.localStorage.getItem("resume");
|
||||
if (resumeData) {
|
||||
setResume(JSON.parse(resumeData));
|
||||
return;
|
||||
}
|
||||
|
||||
window.addEventListener("message", handleMessage);
|
||||
window.addEventListener("message", handleMessage, false);
|
||||
|
||||
return () => {
|
||||
window.removeEventListener("message", handleMessage);
|
||||
window.removeEventListener("message", handleMessage, false);
|
||||
};
|
||||
}, [setResume]);
|
||||
}, []);
|
||||
|
||||
// Only for testing, in production this will be fetched from window.postMessage
|
||||
// useEffect(() => {
|
||||
// setResume(sampleResume);
|
||||
// }, [setResume]);
|
||||
useEffect(() => {
|
||||
const resumeData = window.localStorage.getItem("resume");
|
||||
|
||||
if (resumeData) setResume(JSON.parse(resumeData));
|
||||
}, [window.localStorage.getItem("resume")]);
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
|
||||
if (!resume) return null;
|
||||
|
||||
return <Outlet />;
|
||||
return (
|
||||
<HelmetProvider context={helmetContext}>
|
||||
<Outlet />
|
||||
</HelmetProvider>
|
||||
);
|
||||
};
|
||||
|
||||
@ -6,7 +6,7 @@ import { PreviewLayout } from "../pages/preview";
|
||||
import { Providers } from "../providers";
|
||||
|
||||
export const routes = createRoutesFromChildren(
|
||||
<Route element={<Providers />} hydrateFallbackElement={<div>Loading...</div>}>
|
||||
<Route element={<Providers />}>
|
||||
<Route path="artboard" element={<ArtboardPage />}>
|
||||
<Route path="builder" element={<BuilderLayout />} />
|
||||
<Route path="preview" element={<PreviewLayout />} />
|
||||
|
||||
@ -8,6 +8,10 @@
|
||||
@apply border-current;
|
||||
}
|
||||
|
||||
body {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#root {
|
||||
@apply antialiased;
|
||||
}
|
||||
|
||||
@ -15,7 +15,7 @@ import type {
|
||||
URL,
|
||||
} from "@reactive-resume/schema";
|
||||
import { Education, Experience, Volunteer } from "@reactive-resume/schema";
|
||||
import { cn, isEmptyString, isUrl, linearTransform } from "@reactive-resume/utils";
|
||||
import { cn, isEmptyString, isUrl, linearTransform, sanitize } from "@reactive-resume/utils";
|
||||
import get from "lodash.get";
|
||||
import React, { Fragment } from "react";
|
||||
|
||||
@ -98,9 +98,9 @@ const Summary = () => {
|
||||
<div className="absolute left-[-4.5px] top-[8px] hidden size-[8px] rounded-full bg-primary group-[.main]:block" />
|
||||
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: section.content }}
|
||||
className="wysiwyg"
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(section.content) }}
|
||||
style={{ columns: section.columns }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
</main>
|
||||
</section>
|
||||
@ -131,13 +131,13 @@ const Link = ({ url, icon, iconOnRight, label, className }: LinkProps) => {
|
||||
if (!isUrl(url.href)) return null;
|
||||
|
||||
return (
|
||||
<div className="flex items-center gap-x-1.5">
|
||||
<div className="flex items-center gap-x-1.5 break-all">
|
||||
{!iconOnRight && (icon ?? <i className="ph ph-bold ph-link text-primary" />)}
|
||||
<a
|
||||
href={url.href}
|
||||
target="_blank"
|
||||
rel="noreferrer noopener nofollow"
|
||||
className={cn("inline-block", className)}
|
||||
className={cn("line-clamp-1 max-w-fit", className)}
|
||||
>
|
||||
{label ?? (url.label || url.href)}
|
||||
</a>
|
||||
@ -186,7 +186,7 @@ const Section = <T,>({
|
||||
summaryKey,
|
||||
keywordsKey,
|
||||
}: 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 (
|
||||
<section id={section.id} className="grid">
|
||||
@ -224,7 +224,10 @@ const Section = <T,>({
|
||||
<div>{children?.(item as T)}</div>
|
||||
|
||||
{summary !== undefined && !isEmptyString(summary) && (
|
||||
<div dangerouslySetInnerHTML={{ __html: summary }} className="wysiwyg" />
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(summary) }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
)}
|
||||
|
||||
{level !== undefined && level > 0 && <Rating level={level} />}
|
||||
@ -550,7 +553,7 @@ export const Azurill = ({ columns, isFirstPage = false }: TemplateProps) => {
|
||||
const [main, sidebar] = columns;
|
||||
|
||||
return (
|
||||
<div className="p-custom space-y-3">
|
||||
<div className="space-y-3 p-custom">
|
||||
{isFirstPage && <Header />}
|
||||
|
||||
<div className="grid grid-cols-3 gap-x-4">
|
||||
|
||||
@ -15,7 +15,7 @@ import type {
|
||||
URL,
|
||||
} from "@reactive-resume/schema";
|
||||
import { Education, Experience, Volunteer } from "@reactive-resume/schema";
|
||||
import { cn, isEmptyString, isUrl } from "@reactive-resume/utils";
|
||||
import { cn, isEmptyString, isUrl, sanitize } from "@reactive-resume/utils";
|
||||
import get from "lodash.get";
|
||||
import { Fragment } from "react";
|
||||
|
||||
@ -89,9 +89,9 @@ const Summary = () => {
|
||||
</div>
|
||||
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: section.content }}
|
||||
className="wysiwyg col-span-4"
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(section.content) }}
|
||||
style={{ columns: section.columns }}
|
||||
className="wysiwyg col-span-4"
|
||||
/>
|
||||
</section>
|
||||
);
|
||||
@ -122,13 +122,13 @@ const Link = ({ url, icon, iconOnRight, label, className }: LinkProps) => {
|
||||
if (!isUrl(url.href)) return null;
|
||||
|
||||
return (
|
||||
<div className="flex items-center gap-x-1.5">
|
||||
<div className="flex items-center gap-x-1.5 break-all">
|
||||
{!iconOnRight && (icon ?? <i className="ph ph-bold ph-link text-primary" />)}
|
||||
<a
|
||||
href={url.href}
|
||||
target="_blank"
|
||||
rel="noreferrer noopener nofollow"
|
||||
className={cn("inline-block", className)}
|
||||
className={cn("line-clamp-1 max-w-fit", className)}
|
||||
>
|
||||
{label ?? (url.label || url.href)}
|
||||
</a>
|
||||
@ -177,7 +177,7 @@ const Section = <T,>({
|
||||
summaryKey,
|
||||
keywordsKey,
|
||||
}: 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 (
|
||||
<section id={section.id} className="grid grid-cols-5 border-t pt-2.5">
|
||||
@ -205,7 +205,10 @@ const Section = <T,>({
|
||||
</div>
|
||||
|
||||
{summary !== undefined && !isEmptyString(summary) && (
|
||||
<div dangerouslySetInnerHTML={{ __html: summary }} className="wysiwyg" />
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(summary) }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
)}
|
||||
|
||||
{level !== undefined && level > 0 && <Rating level={level} />}
|
||||
@ -565,7 +568,7 @@ export const Bronzor = ({ columns, isFirstPage = false }: TemplateProps) => {
|
||||
const [main, sidebar] = columns;
|
||||
|
||||
return (
|
||||
<div className="p-custom space-y-4">
|
||||
<div className="space-y-4 p-custom">
|
||||
{isFirstPage && <Header />}
|
||||
|
||||
<div className="space-y-4">
|
||||
|
||||
@ -15,7 +15,7 @@ import type {
|
||||
URL,
|
||||
} from "@reactive-resume/schema";
|
||||
import { Education, Experience, Volunteer } from "@reactive-resume/schema";
|
||||
import { cn, isEmptyString, isUrl } from "@reactive-resume/utils";
|
||||
import { cn, isEmptyString, isUrl, sanitize } from "@reactive-resume/utils";
|
||||
import get from "lodash.get";
|
||||
import { Fragment } from "react";
|
||||
|
||||
@ -89,9 +89,9 @@ const Summary = () => {
|
||||
<h4 className="mb-2 border-b pb-0.5 text-sm font-bold">{section.name}</h4>
|
||||
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: section.content }}
|
||||
className="wysiwyg"
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(section.content) }}
|
||||
style={{ columns: section.columns }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
</section>
|
||||
);
|
||||
@ -125,14 +125,14 @@ const Link = ({ url, icon, iconOnRight, label, className }: LinkProps) => {
|
||||
if (!isUrl(url.href)) return null;
|
||||
|
||||
return (
|
||||
<div className="flex items-center gap-x-1.5">
|
||||
<div className="flex items-center gap-x-1.5 break-all">
|
||||
{!iconOnRight &&
|
||||
(icon ?? <i className="ph ph-bold ph-link text-primary group-[.sidebar]:text-white" />)}
|
||||
<a
|
||||
href={url.href}
|
||||
target="_blank"
|
||||
rel="noreferrer noopener nofollow"
|
||||
className={cn("inline-block", className)}
|
||||
className={cn("line-clamp-1 max-w-fit", className)}
|
||||
>
|
||||
{label ?? (url.label || url.href)}
|
||||
</a>
|
||||
@ -182,7 +182,7 @@ const Section = <T,>({
|
||||
summaryKey,
|
||||
keywordsKey,
|
||||
}: 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 (
|
||||
<section id={section.id} className="grid">
|
||||
@ -209,7 +209,7 @@ const Section = <T,>({
|
||||
|
||||
{summary !== undefined && !isEmptyString(summary) && (
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: summary }}
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(summary) }}
|
||||
className="wysiwyg group-[.sidebar]:prose-invert"
|
||||
/>
|
||||
)}
|
||||
@ -571,7 +571,7 @@ export const Chikorita = ({ columns, isFirstPage = false }: TemplateProps) => {
|
||||
<div className="grid min-h-[inherit] grid-cols-3">
|
||||
<div
|
||||
className={cn(
|
||||
"main p-custom group space-y-4",
|
||||
"main group space-y-4 p-custom",
|
||||
sidebar.length > 0 ? "col-span-2" : "col-span-3",
|
||||
)}
|
||||
>
|
||||
@ -584,7 +584,7 @@ export const Chikorita = ({ columns, isFirstPage = false }: TemplateProps) => {
|
||||
|
||||
<div
|
||||
className={cn(
|
||||
"sidebar p-custom group h-full space-y-4 bg-primary text-background",
|
||||
"sidebar group h-full space-y-4 bg-primary p-custom text-background",
|
||||
sidebar.length === 0 && "hidden",
|
||||
)}
|
||||
>
|
||||
|
||||
@ -15,7 +15,7 @@ import type {
|
||||
URL,
|
||||
} from "@reactive-resume/schema";
|
||||
import { Education, Experience, Volunteer } from "@reactive-resume/schema";
|
||||
import { cn, isEmptyString, isUrl } from "@reactive-resume/utils";
|
||||
import { cn, isEmptyString, isUrl, sanitize } from "@reactive-resume/utils";
|
||||
import get from "lodash.get";
|
||||
import { Fragment } from "react";
|
||||
|
||||
@ -28,7 +28,7 @@ const Header = () => {
|
||||
const basics = useArtboardStore((state) => state.resume.basics);
|
||||
|
||||
return (
|
||||
<div className="p-custom relative grid grid-cols-3 space-x-4 pb-0">
|
||||
<div className="relative grid grid-cols-3 space-x-4 p-custom pb-0">
|
||||
<Picture className="mx-auto" />
|
||||
|
||||
<div className="relative z-10 col-span-2 text-background">
|
||||
@ -109,9 +109,9 @@ const Summary = () => {
|
||||
<h4 className="mb-2 text-base font-bold">{section.name}</h4>
|
||||
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: section.content }}
|
||||
className="wysiwyg"
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(section.content) }}
|
||||
style={{ columns: section.columns }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
</section>
|
||||
);
|
||||
@ -142,13 +142,13 @@ const Link = ({ url, icon, iconOnRight, label, className }: LinkProps) => {
|
||||
if (!isUrl(url.href)) return null;
|
||||
|
||||
return (
|
||||
<div className="flex items-center gap-x-1.5">
|
||||
<div className="flex items-center gap-x-1.5 break-all">
|
||||
{!iconOnRight && (icon ?? <i className="ph ph-bold ph-link text-primary" />)}
|
||||
<a
|
||||
href={url.href}
|
||||
target="_blank"
|
||||
rel="noreferrer noopener nofollow"
|
||||
className={cn("inline-block", className)}
|
||||
className={cn("line-clamp-1 max-w-fit", className)}
|
||||
>
|
||||
{label ?? (url.label || url.href)}
|
||||
</a>
|
||||
@ -197,7 +197,7 @@ const Section = <T,>({
|
||||
summaryKey,
|
||||
keywordsKey,
|
||||
}: 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 (
|
||||
<section id={section.id} className="grid">
|
||||
@ -230,7 +230,10 @@ const Section = <T,>({
|
||||
</div>
|
||||
|
||||
{summary !== undefined && !isEmptyString(summary) && (
|
||||
<div dangerouslySetInnerHTML={{ __html: summary }} className="wysiwyg" />
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(summary) }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
)}
|
||||
|
||||
{level !== undefined && level > 0 && <Rating level={level} />}
|
||||
@ -601,7 +604,7 @@ export const Ditto = ({ columns, isFirstPage = false }: TemplateProps) => {
|
||||
)}
|
||||
|
||||
<div className="grid grid-cols-3">
|
||||
<div className="sidebar p-custom group space-y-4">
|
||||
<div className="sidebar group space-y-4 p-custom">
|
||||
{sidebar.map((section) => (
|
||||
<Fragment key={section}>{mapSectionToComponent(section)}</Fragment>
|
||||
))}
|
||||
@ -609,7 +612,7 @@ export const Ditto = ({ columns, isFirstPage = false }: TemplateProps) => {
|
||||
|
||||
<div
|
||||
className={cn(
|
||||
"main p-custom group space-y-4",
|
||||
"main group space-y-4 p-custom",
|
||||
sidebar.length > 0 ? "col-span-2" : "col-span-3",
|
||||
)}
|
||||
>
|
||||
|
||||
@ -15,7 +15,7 @@ import type {
|
||||
URL,
|
||||
} from "@reactive-resume/schema";
|
||||
import { Education, Experience, Volunteer } from "@reactive-resume/schema";
|
||||
import { cn, hexToRgb, isEmptyString, isUrl } from "@reactive-resume/utils";
|
||||
import { cn, hexToRgb, isEmptyString, isUrl, sanitize } from "@reactive-resume/utils";
|
||||
import get from "lodash.get";
|
||||
import { Fragment } from "react";
|
||||
|
||||
@ -28,7 +28,7 @@ const Header = () => {
|
||||
const basics = useArtboardStore((state) => state.resume.basics);
|
||||
|
||||
return (
|
||||
<div className="p-custom space-y-4 bg-primary text-background">
|
||||
<div className="space-y-4 bg-primary p-custom text-background">
|
||||
<Picture className="border-background" />
|
||||
|
||||
<div>
|
||||
@ -86,12 +86,12 @@ const Summary = () => {
|
||||
if (!section.visible || isEmptyString(section.content)) return null;
|
||||
|
||||
return (
|
||||
<div className="p-custom space-y-4" style={{ backgroundColor: hexToRgb(primaryColor, 0.2) }}>
|
||||
<div className="space-y-4 p-custom" style={{ backgroundColor: hexToRgb(primaryColor, 0.2) }}>
|
||||
<section id={section.id}>
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: section.content }}
|
||||
className="wysiwyg"
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(section.content) }}
|
||||
style={{ columns: section.columns }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
</section>
|
||||
</div>
|
||||
@ -123,7 +123,7 @@ const Link = ({ url, icon, iconOnRight, label, className }: LinkProps) => {
|
||||
if (!isUrl(url.href)) return null;
|
||||
|
||||
return (
|
||||
<div className="flex items-center gap-x-1.5">
|
||||
<div className="flex items-center gap-x-1.5 break-all">
|
||||
{!iconOnRight &&
|
||||
(icon ?? (
|
||||
<i className="ph ph-bold ph-link text-primary group-[.sidebar]:text-background" />
|
||||
@ -132,7 +132,7 @@ const Link = ({ url, icon, iconOnRight, label, className }: LinkProps) => {
|
||||
href={url.href}
|
||||
target="_blank"
|
||||
rel="noreferrer noopener nofollow"
|
||||
className={cn("inline-block", className)}
|
||||
className={cn("line-clamp-1 max-w-fit", className)}
|
||||
>
|
||||
{label ?? (url.label || url.href)}
|
||||
</a>
|
||||
@ -184,7 +184,7 @@ const Section = <T,>({
|
||||
summaryKey,
|
||||
keywordsKey,
|
||||
}: 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 (
|
||||
<section id={section.id} className="grid">
|
||||
@ -210,7 +210,10 @@ const Section = <T,>({
|
||||
</div>
|
||||
|
||||
{summary !== undefined && !isEmptyString(summary) && (
|
||||
<div dangerouslySetInnerHTML={{ __html: summary }} className="wysiwyg" />
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(summary) }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
)}
|
||||
|
||||
{level !== undefined && level > 0 && <Rating level={level} />}
|
||||
@ -528,6 +531,11 @@ const mapSectionToComponent = (section: SectionKey) => {
|
||||
case "education": {
|
||||
return <Education />;
|
||||
}
|
||||
|
||||
case "summary": {
|
||||
return <Summary />;
|
||||
}
|
||||
|
||||
case "awards": {
|
||||
return <Awards />;
|
||||
}
|
||||
@ -579,7 +587,7 @@ export const Gengar = ({ columns, isFirstPage = false }: TemplateProps) => {
|
||||
{isFirstPage && <Header />}
|
||||
|
||||
<div
|
||||
className="p-custom flex-1 space-y-4"
|
||||
className="flex-1 space-y-4 p-custom"
|
||||
style={{ backgroundColor: hexToRgb(primaryColor, 0.2) }}
|
||||
>
|
||||
{sidebar.map((section) => (
|
||||
@ -589,9 +597,7 @@ export const Gengar = ({ columns, isFirstPage = false }: TemplateProps) => {
|
||||
</div>
|
||||
|
||||
<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="space-y-4 p-custom">
|
||||
{main.map((section) => (
|
||||
<Fragment key={section}>{mapSectionToComponent(section)}</Fragment>
|
||||
))}
|
||||
|
||||
@ -15,7 +15,14 @@ import type {
|
||||
URL,
|
||||
} from "@reactive-resume/schema";
|
||||
import { Education, Experience, Volunteer } from "@reactive-resume/schema";
|
||||
import { cn, hexToRgb, isEmptyString, isUrl, linearTransform } from "@reactive-resume/utils";
|
||||
import {
|
||||
cn,
|
||||
hexToRgb,
|
||||
isEmptyString,
|
||||
isUrl,
|
||||
linearTransform,
|
||||
sanitize,
|
||||
} from "@reactive-resume/utils";
|
||||
import get from "lodash.get";
|
||||
import { Fragment } from "react";
|
||||
|
||||
@ -89,9 +96,9 @@ const Summary = () => {
|
||||
<h4 className="mb-2 border-b pb-0.5 text-sm font-bold">{section.name}</h4>
|
||||
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: section.content }}
|
||||
className="wysiwyg"
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(section.content) }}
|
||||
style={{ columns: section.columns }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
</section>
|
||||
);
|
||||
@ -128,14 +135,14 @@ const Link = ({ url, icon, iconOnRight, label, className }: LinkProps) => {
|
||||
if (!isUrl(url.href)) return null;
|
||||
|
||||
return (
|
||||
<div className="flex items-center gap-x-1.5">
|
||||
<div className="flex items-center gap-x-1.5 break-all">
|
||||
{!iconOnRight &&
|
||||
(icon ?? <i className="ph ph-bold ph-link text-primary group-[.sidebar]:text-primary" />)}
|
||||
<a
|
||||
href={url.href}
|
||||
target="_blank"
|
||||
rel="noreferrer noopener nofollow"
|
||||
className={cn("inline-block", className)}
|
||||
className={cn("line-clamp-1 max-w-fit", className)}
|
||||
>
|
||||
{label ?? (url.label || url.href)}
|
||||
</a>
|
||||
@ -185,7 +192,7 @@ const Section = <T,>({
|
||||
summaryKey,
|
||||
keywordsKey,
|
||||
}: 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 (
|
||||
<section id={section.id} className="grid">
|
||||
@ -213,7 +220,10 @@ const Section = <T,>({
|
||||
</div>
|
||||
|
||||
{summary !== undefined && !isEmptyString(summary) && (
|
||||
<div dangerouslySetInnerHTML={{ __html: summary }} className="wysiwyg" />
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(summary) }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
)}
|
||||
|
||||
{level !== undefined && level > 0 && <Rating level={level} />}
|
||||
@ -577,7 +587,7 @@ export const Glalie = ({ columns, isFirstPage = false }: TemplateProps) => {
|
||||
return (
|
||||
<div className="grid min-h-[inherit] grid-cols-3">
|
||||
<div
|
||||
className={cn("sidebar p-custom group space-y-4", sidebar.length === 0 && "hidden")}
|
||||
className={cn("sidebar group space-y-4 p-custom", sidebar.length === 0 && "hidden")}
|
||||
style={{ backgroundColor: hexToRgb(primaryColor, 0.2) }}
|
||||
>
|
||||
{isFirstPage && <Header />}
|
||||
@ -589,7 +599,7 @@ export const Glalie = ({ columns, isFirstPage = false }: TemplateProps) => {
|
||||
|
||||
<div
|
||||
className={cn(
|
||||
"main p-custom group space-y-4",
|
||||
"main group space-y-4 p-custom",
|
||||
sidebar.length > 0 ? "col-span-2" : "col-span-3",
|
||||
)}
|
||||
>
|
||||
|
||||
@ -14,7 +14,7 @@ import type {
|
||||
URL,
|
||||
} from "@reactive-resume/schema";
|
||||
import { Education, Experience, Volunteer } from "@reactive-resume/schema";
|
||||
import { cn, isEmptyString, isUrl } from "@reactive-resume/utils";
|
||||
import { cn, isEmptyString, isUrl, sanitize } from "@reactive-resume/utils";
|
||||
import get from "lodash.get";
|
||||
import React, { Fragment } from "react";
|
||||
|
||||
@ -108,9 +108,9 @@ const Summary = () => {
|
||||
</h4>
|
||||
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: section.content }}
|
||||
className="wysiwyg"
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(section.content) }}
|
||||
style={{ columns: section.columns }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
</section>
|
||||
);
|
||||
@ -141,13 +141,13 @@ const Link = ({ url, icon, iconOnRight, label, className }: LinkProps) => {
|
||||
if (!isUrl(url.href)) return null;
|
||||
|
||||
return (
|
||||
<div className="flex items-center gap-x-1.5">
|
||||
<div className="flex items-center gap-x-1.5 break-all">
|
||||
{!iconOnRight && (icon ?? <i className="ph ph-bold ph-link text-primary" />)}
|
||||
<a
|
||||
href={url.href}
|
||||
target="_blank"
|
||||
rel="noreferrer noopener nofollow"
|
||||
className={cn("inline-block", className)}
|
||||
className={cn("line-clamp-1 max-w-fit", className)}
|
||||
>
|
||||
{label ?? (url.label || url.href)}
|
||||
</a>
|
||||
@ -196,7 +196,7 @@ const Section = <T,>({
|
||||
summaryKey,
|
||||
keywordsKey,
|
||||
}: 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 (
|
||||
<section id={section.id} className="grid">
|
||||
@ -221,7 +221,10 @@ const Section = <T,>({
|
||||
<div>{children?.(item as T)}</div>
|
||||
|
||||
{summary !== undefined && !isEmptyString(summary) && (
|
||||
<div dangerouslySetInnerHTML={{ __html: summary }} className="wysiwyg" />
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(summary) }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
)}
|
||||
|
||||
{level !== undefined && level > 0 && <Rating level={level} />}
|
||||
@ -521,7 +524,7 @@ export const Kakuna = ({ columns, isFirstPage = false }: TemplateProps) => {
|
||||
const [main, sidebar] = columns;
|
||||
|
||||
return (
|
||||
<div className="p-custom space-y-4">
|
||||
<div className="space-y-4 p-custom">
|
||||
{isFirstPage && <Header />}
|
||||
|
||||
<div className="space-y-4">
|
||||
|
||||
@ -14,7 +14,7 @@ import type {
|
||||
URL,
|
||||
} from "@reactive-resume/schema";
|
||||
import { Education, Experience, Volunteer } from "@reactive-resume/schema";
|
||||
import { cn, hexToRgb, isEmptyString, isUrl } from "@reactive-resume/utils";
|
||||
import { cn, hexToRgb, isEmptyString, isUrl, sanitize } from "@reactive-resume/utils";
|
||||
import get from "lodash.get";
|
||||
import React, { Fragment } from "react";
|
||||
|
||||
@ -32,7 +32,7 @@ const Header = () => {
|
||||
return (
|
||||
<div>
|
||||
<div
|
||||
className="p-custom flex items-center space-x-8"
|
||||
className="flex items-center space-x-8 p-custom"
|
||||
style={{ backgroundColor: hexToRgb(primaryColor, 0.2) }}
|
||||
>
|
||||
<div className="space-y-3">
|
||||
@ -42,16 +42,16 @@ const Header = () => {
|
||||
</div>
|
||||
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: section.content }}
|
||||
className="wysiwyg"
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(section.content) }}
|
||||
style={{ columns: section.columns }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<Picture />
|
||||
</div>
|
||||
|
||||
<div className="p-custom space-y-3" style={{ backgroundColor: hexToRgb(primaryColor, 0.4) }}>
|
||||
<div className="space-y-3 p-custom" style={{ backgroundColor: hexToRgb(primaryColor, 0.4) }}>
|
||||
<div className="flex flex-wrap items-center gap-x-3 gap-y-0.5 text-sm">
|
||||
{basics.location && (
|
||||
<div className="flex items-center gap-x-1.5">
|
||||
@ -136,13 +136,13 @@ const Link = ({ url, icon, iconOnRight, label, className }: LinkProps) => {
|
||||
if (!isUrl(url.href)) return null;
|
||||
|
||||
return (
|
||||
<div className="flex items-center gap-x-1.5">
|
||||
<div className="flex items-center gap-x-1.5 break-all">
|
||||
{!iconOnRight && (icon ?? <i className="ph ph-bold ph-link text-primary" />)}
|
||||
<a
|
||||
href={url.href}
|
||||
target="_blank"
|
||||
rel="noreferrer noopener nofollow"
|
||||
className={cn("inline-block", className)}
|
||||
className={cn("line-clamp-1 max-w-fit", className)}
|
||||
>
|
||||
{label ?? (url.label || url.href)}
|
||||
</a>
|
||||
@ -191,7 +191,7 @@ const Section = <T,>({
|
||||
summaryKey,
|
||||
keywordsKey,
|
||||
}: 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 (
|
||||
<section id={section.id} className="grid">
|
||||
@ -216,7 +216,10 @@ const Section = <T,>({
|
||||
<div>{children?.(item as T)}</div>
|
||||
|
||||
{summary !== undefined && !isEmptyString(summary) && (
|
||||
<div dangerouslySetInnerHTML={{ __html: summary }} className="wysiwyg" />
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(summary) }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
)}
|
||||
|
||||
{level !== undefined && level > 0 && <Rating level={level} />}
|
||||
@ -516,7 +519,7 @@ export const Leafish = ({ columns, isFirstPage = false }: TemplateProps) => {
|
||||
<div>
|
||||
{isFirstPage && <Header />}
|
||||
|
||||
<div className="p-custom grid grid-cols-2 items-start space-x-6">
|
||||
<div className="grid grid-cols-2 items-start space-x-6 p-custom">
|
||||
<div className={cn("grid gap-y-4", sidebar.length === 0 && "col-span-2")}>
|
||||
{main.map((section) => (
|
||||
<Fragment key={section}>{mapSectionToComponent(section)}</Fragment>
|
||||
|
||||
@ -15,7 +15,7 @@ import type {
|
||||
URL,
|
||||
} from "@reactive-resume/schema";
|
||||
import { Education, Experience, Volunteer } from "@reactive-resume/schema";
|
||||
import { cn, isEmptyString, isUrl } from "@reactive-resume/utils";
|
||||
import { cn, isEmptyString, isUrl, sanitize } from "@reactive-resume/utils";
|
||||
import get from "lodash.get";
|
||||
import { Fragment } from "react";
|
||||
|
||||
@ -105,9 +105,9 @@ const Summary = () => {
|
||||
</div>
|
||||
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: section.content }}
|
||||
className="wysiwyg"
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(section.content) }}
|
||||
style={{ columns: section.columns }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
</div>
|
||||
</section>
|
||||
@ -126,13 +126,13 @@ const Link = ({ url, icon, iconOnRight, label, className }: LinkProps) => {
|
||||
if (!isUrl(url.href)) return null;
|
||||
|
||||
return (
|
||||
<div className="flex items-center gap-x-1.5">
|
||||
<div className="flex items-center gap-x-1.5 break-all">
|
||||
{!iconOnRight && (icon ?? <i className="ph ph-bold ph-link text-primary" />)}
|
||||
<a
|
||||
href={url.href}
|
||||
target="_blank"
|
||||
rel="noreferrer noopener nofollow"
|
||||
className={cn("inline-block", className)}
|
||||
className={cn("line-clamp-1 max-w-fit", className)}
|
||||
>
|
||||
{label ?? (url.label || url.href)}
|
||||
</a>
|
||||
@ -180,7 +180,7 @@ const Section = <T,>({
|
||||
summaryKey,
|
||||
keywordsKey,
|
||||
}: 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 (
|
||||
<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} />}
|
||||
|
||||
{summary !== undefined && !isEmptyString(summary) && (
|
||||
<div dangerouslySetInnerHTML={{ __html: summary }} className="wysiwyg" />
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(summary) }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
)}
|
||||
|
||||
{keywords !== undefined && keywords.length > 0 && (
|
||||
@ -252,7 +255,10 @@ const Section = <T,>({
|
||||
{url !== undefined && section.separateLinks && <Link url={url} />}
|
||||
|
||||
{summary !== undefined && !isEmptyString(summary) && (
|
||||
<div dangerouslySetInnerHTML={{ __html: summary }} className="wysiwyg" />
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(summary) }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
)}
|
||||
|
||||
{keywords !== undefined && keywords.length > 0 && (
|
||||
@ -569,7 +575,7 @@ export const Nosepass = ({ columns, isFirstPage = false }: TemplateProps) => {
|
||||
const [main, sidebar] = columns;
|
||||
|
||||
return (
|
||||
<div className="p-custom space-y-6">
|
||||
<div className="space-y-6 p-custom">
|
||||
<div className="flex items-center justify-between">
|
||||
<img alt="Europass Logo" className="h-[42px]" src="/assets/europass.png" />
|
||||
|
||||
|
||||
@ -14,7 +14,7 @@ import type {
|
||||
URL,
|
||||
} from "@reactive-resume/schema";
|
||||
import { Education, Experience, Volunteer } from "@reactive-resume/schema";
|
||||
import { cn, isEmptyString, isUrl } from "@reactive-resume/utils";
|
||||
import { cn, isEmptyString, isUrl, sanitize } from "@reactive-resume/utils";
|
||||
import get from "lodash.get";
|
||||
import React, { Fragment } from "react";
|
||||
|
||||
@ -109,9 +109,9 @@ const Summary = () => {
|
||||
<h4 className="font-bold text-primary">{section.name}</h4>
|
||||
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: section.content }}
|
||||
className="wysiwyg"
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(section.content) }}
|
||||
style={{ columns: section.columns }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
</section>
|
||||
);
|
||||
@ -142,13 +142,13 @@ const Link = ({ url, icon, iconOnRight, label, className }: LinkProps) => {
|
||||
if (!isUrl(url.href)) return null;
|
||||
|
||||
return (
|
||||
<div className="flex items-center gap-x-1.5">
|
||||
<div className="flex items-center gap-x-1.5 break-all">
|
||||
{!iconOnRight && (icon ?? <i className="ph ph-bold ph-link text-primary" />)}
|
||||
<a
|
||||
href={url.href}
|
||||
target="_blank"
|
||||
rel="noreferrer noopener nofollow"
|
||||
className={cn("inline-block", className)}
|
||||
className={cn("line-clamp-1 max-w-fit", className)}
|
||||
>
|
||||
{label ?? (url.label || url.href)}
|
||||
</a>
|
||||
@ -197,7 +197,7 @@ const Section = <T,>({
|
||||
summaryKey,
|
||||
keywordsKey,
|
||||
}: 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 (
|
||||
<section id={section.id} className="grid">
|
||||
@ -223,7 +223,10 @@ const Section = <T,>({
|
||||
</div>
|
||||
|
||||
{summary !== undefined && !isEmptyString(summary) && (
|
||||
<div dangerouslySetInnerHTML={{ __html: summary }} className="wysiwyg" />
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(summary) }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
)}
|
||||
|
||||
{level !== undefined && level > 0 && <Rating level={level} />}
|
||||
@ -561,7 +564,7 @@ export const Onyx = ({ columns, isFirstPage = false }: TemplateProps) => {
|
||||
const [main, sidebar] = columns;
|
||||
|
||||
return (
|
||||
<div className="p-custom space-y-4">
|
||||
<div className="space-y-4 p-custom">
|
||||
{isFirstPage && <Header />}
|
||||
|
||||
{main.map((section) => (
|
||||
|
||||
@ -15,7 +15,7 @@ import type {
|
||||
URL,
|
||||
} from "@reactive-resume/schema";
|
||||
import { Education, Experience, Volunteer } from "@reactive-resume/schema";
|
||||
import { cn, isEmptyString, isUrl } from "@reactive-resume/utils";
|
||||
import { cn, isEmptyString, isUrl, sanitize } from "@reactive-resume/utils";
|
||||
import get from "lodash.get";
|
||||
import { Fragment } from "react";
|
||||
|
||||
@ -110,9 +110,9 @@ const Summary = () => {
|
||||
<h4 className="mb-2 border-b border-primary text-base font-bold">{section.name}</h4>
|
||||
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: section.content }}
|
||||
className="wysiwyg"
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(section.content) }}
|
||||
style={{ columns: section.columns }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
</section>
|
||||
);
|
||||
@ -126,15 +126,11 @@ const Rating = ({ level }: RatingProps) => (
|
||||
<i
|
||||
key={index}
|
||||
className={cn(
|
||||
"ph ph-diamond text-primary",
|
||||
"ph ph-bold ph-diamond text-primary",
|
||||
level > index && "ph-fill",
|
||||
level <= index && "ph-bold",
|
||||
)}
|
||||
/>
|
||||
// <div
|
||||
// key={index}
|
||||
// className={cn("h-2 w-4 border border-primary", level > index && "bg-primary")}
|
||||
// />
|
||||
))}
|
||||
</div>
|
||||
);
|
||||
@ -151,7 +147,7 @@ const Link = ({ url, icon, iconOnRight, label, className }: LinkProps) => {
|
||||
if (!isUrl(url.href)) return null;
|
||||
|
||||
return (
|
||||
<div className="flex items-center gap-x-1.5">
|
||||
<div className="flex items-center gap-x-1.5 break-all">
|
||||
{!iconOnRight &&
|
||||
(icon ?? (
|
||||
<i className="ph ph-bold ph-link text-primary group-[.summary]:text-background" />
|
||||
@ -160,7 +156,7 @@ const Link = ({ url, icon, iconOnRight, label, className }: LinkProps) => {
|
||||
href={url.href}
|
||||
target="_blank"
|
||||
rel="noreferrer noopener nofollow"
|
||||
className={cn("inline-block", className)}
|
||||
className={cn("line-clamp-1 max-w-fit", className)}
|
||||
>
|
||||
{label ?? (url.label || url.href)}
|
||||
</a>
|
||||
@ -212,7 +208,7 @@ const Section = <T,>({
|
||||
summaryKey,
|
||||
keywordsKey,
|
||||
}: 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 (
|
||||
<section id={section.id} className="grid">
|
||||
@ -238,7 +234,10 @@ const Section = <T,>({
|
||||
</div>
|
||||
|
||||
{summary !== undefined && !isEmptyString(summary) && (
|
||||
<div dangerouslySetInnerHTML={{ __html: summary }} className="wysiwyg" />
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(summary) }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
)}
|
||||
|
||||
{level !== undefined && level > 0 && <Rating level={level} />}
|
||||
@ -598,7 +597,7 @@ export const Pikachu = ({ columns, isFirstPage = false }: TemplateProps) => {
|
||||
const [main, sidebar] = columns;
|
||||
|
||||
return (
|
||||
<div className="p-custom grid grid-cols-3 space-x-6">
|
||||
<div className="grid grid-cols-3 space-x-6 p-custom">
|
||||
<div className="sidebar group space-y-4">
|
||||
{isFirstPage && <Picture className="w-full !max-w-none" />}
|
||||
|
||||
|
||||
@ -15,7 +15,7 @@ import type {
|
||||
URL,
|
||||
} from "@reactive-resume/schema";
|
||||
import { Education, Experience, Volunteer } from "@reactive-resume/schema";
|
||||
import { cn, isEmptyString, isUrl } from "@reactive-resume/utils";
|
||||
import { cn, isEmptyString, isUrl, sanitize } from "@reactive-resume/utils";
|
||||
import get from "lodash.get";
|
||||
import { Fragment } from "react";
|
||||
|
||||
@ -90,9 +90,9 @@ const Summary = () => {
|
||||
<h4 className="mb-2 border-b pb-0.5 text-sm font-bold">{section.name}</h4>
|
||||
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: section.content }}
|
||||
className="wysiwyg"
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(section.content) }}
|
||||
style={{ columns: section.columns }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
</section>
|
||||
);
|
||||
@ -123,13 +123,13 @@ const Link = ({ url, icon, iconOnRight, label, className }: LinkProps) => {
|
||||
if (!isUrl(url.href)) return null;
|
||||
|
||||
return (
|
||||
<div className="flex items-center gap-x-1.5 border-r pr-2 last:border-r-0 last:pr-0">
|
||||
<div className="flex items-center gap-x-1.5 break-all border-r pr-2 last:border-r-0 last:pr-0">
|
||||
{!iconOnRight && (icon ?? <i className="ph ph-bold ph-link text-primary" />)}
|
||||
<a
|
||||
href={url.href}
|
||||
target="_blank"
|
||||
rel="noreferrer noopener nofollow"
|
||||
className={cn("inline-block", className)}
|
||||
className={cn("line-clamp-1 max-w-fit", className)}
|
||||
>
|
||||
{label ?? (url.label || url.href)}
|
||||
</a>
|
||||
@ -178,7 +178,7 @@ const Section = <T,>({
|
||||
summaryKey,
|
||||
keywordsKey,
|
||||
}: 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 (
|
||||
<section id={section.id} className="grid">
|
||||
@ -204,7 +204,10 @@ const Section = <T,>({
|
||||
</div>
|
||||
|
||||
{summary !== undefined && !isEmptyString(summary) && (
|
||||
<div dangerouslySetInnerHTML={{ __html: summary }} className="wysiwyg" />
|
||||
<div
|
||||
dangerouslySetInnerHTML={{ __html: sanitize(summary) }}
|
||||
className="wysiwyg"
|
||||
/>
|
||||
)}
|
||||
|
||||
{level !== undefined && level > 0 && <Rating level={level} />}
|
||||
@ -564,7 +567,7 @@ export const Rhyhorn = ({ columns, isFirstPage = false }: TemplateProps) => {
|
||||
const [main, sidebar] = columns;
|
||||
|
||||
return (
|
||||
<div className="p-custom space-y-4">
|
||||
<div className="space-y-4 p-custom">
|
||||
{isFirstPage && <Header />}
|
||||
|
||||
{main.map((section) => (
|
||||
|
||||
@ -4,20 +4,10 @@
|
||||
"overrides": [
|
||||
{
|
||||
"files": ["*.ts", "*.tsx"],
|
||||
"extends": [
|
||||
"plugin:tailwindcss/recommended",
|
||||
"plugin:@tanstack/eslint-plugin-query/recommended"
|
||||
],
|
||||
"extends": ["plugin:@tanstack/eslint-plugin-query/recommended"],
|
||||
"parserOptions": {
|
||||
"projectService": "./apps/client/tsconfig.json"
|
||||
},
|
||||
"settings": {
|
||||
"tailwindcss": {
|
||||
"callees": ["cn", "clsx", "cva"],
|
||||
"config": "tailwind.config.js",
|
||||
"whitelist": ["ph", "ph\\-.*", "si", "si\\-.*"]
|
||||
}
|
||||
},
|
||||
"plugins": ["lingui"],
|
||||
"rules": {
|
||||
// eslint
|
||||
|
||||
@ -42,6 +42,6 @@
|
||||
<script type="module" src="/src/main.tsx"></script>
|
||||
|
||||
<!-- Phosphor Icons -->
|
||||
<script src="https://unpkg.com/@phosphor-icons/web"></script>
|
||||
<script defer src="https://cdn.jsdelivr.net/npm/@phosphor-icons/web"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
68
apps/client/public/funding.json
Normal file
@ -0,0 +1,68 @@
|
||||
{
|
||||
"$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",
|
||||
"wellKnown": "https://github.com/AmruthPillai/Reactive-Resume/blob/main/.github/.well-known/funding-manifest-urls"
|
||||
},
|
||||
"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 {
|
||||
CaretDown,
|
||||
ChatTeardropText,
|
||||
CircleNotch,
|
||||
Exam,
|
||||
MagicWand,
|
||||
PenNib,
|
||||
CaretDownIcon,
|
||||
ChatTeardropTextIcon,
|
||||
CircleNotchIcon,
|
||||
ExamIcon,
|
||||
MagicWandIcon,
|
||||
PenNibIcon,
|
||||
} from "@phosphor-icons/react";
|
||||
import {
|
||||
Badge,
|
||||
@ -75,27 +75,31 @@ export const AiActions = ({ value, onChange, className }: Props) => {
|
||||
variant="primary"
|
||||
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`}
|
||||
</Badge>
|
||||
</div>
|
||||
|
||||
<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>
|
||||
</Button>
|
||||
|
||||
<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>
|
||||
</Button>
|
||||
|
||||
<DropdownMenu>
|
||||
<DropdownMenuTrigger asChild>
|
||||
<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>
|
||||
<CaretDown />
|
||||
<CaretDownIcon />
|
||||
</Button>
|
||||
</DropdownMenuTrigger>
|
||||
<DropdownMenuContent>
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
import { t } from "@lingui/macro";
|
||||
import { CaretDown, Check } from "@phosphor-icons/react";
|
||||
import { CaretDownIcon, CheckIcon } from "@phosphor-icons/react";
|
||||
import {
|
||||
Button,
|
||||
Command,
|
||||
@ -61,7 +61,7 @@ export const LocaleCombobox = ({ value, onValueChange }: Props) => {
|
||||
onValueChange(result.original.locale);
|
||||
}}
|
||||
>
|
||||
<Check
|
||||
<CheckIcon
|
||||
className={cn(
|
||||
"mr-2 size-4 opacity-0",
|
||||
value === original.locale && "opacity-100",
|
||||
@ -104,7 +104,7 @@ export const LocaleComboboxPopover = ({ value, onValueChange }: Props) => {
|
||||
<span className="line-clamp-1 text-left font-normal">
|
||||
{selected?.name} <span className="ml-1 text-xs opacity-50">({selected?.locale})</span>
|
||||
</span>
|
||||
<CaretDown
|
||||
<CaretDownIcon
|
||||
className={cn(
|
||||
"ml-2 size-4 shrink-0 rotate-0 opacity-50 transition-transform",
|
||||
open && "rotate-180",
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
import { t } from "@lingui/macro";
|
||||
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 { useState } from "react";
|
||||
|
||||
@ -13,8 +14,8 @@ export const LocaleSwitch = () => {
|
||||
return (
|
||||
<Popover open={open} onOpenChange={setOpen}>
|
||||
<PopoverTrigger asChild>
|
||||
<Button size="icon" variant="ghost">
|
||||
<Translate size={20} />
|
||||
<Button size="icon" variant="ghost" aria-label={t`Change Language`}>
|
||||
<TranslateIcon size={20} />
|
||||
</Button>
|
||||
</PopoverTrigger>
|
||||
<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 { Button } from "@reactive-resume/ui";
|
||||
import type { Variants } from "framer-motion";
|
||||
@ -7,9 +8,10 @@ import { useMemo } from "react";
|
||||
|
||||
type Props = {
|
||||
size?: number;
|
||||
className?: string;
|
||||
};
|
||||
|
||||
export const ThemeSwitch = ({ size = 20 }: Props) => {
|
||||
export const ThemeSwitch = ({ size = 20, className }: Props) => {
|
||||
const { theme, toggleTheme } = useTheme();
|
||||
|
||||
const variants: Variants = useMemo(() => {
|
||||
@ -21,12 +23,12 @@ export const ThemeSwitch = ({ size = 20 }: Props) => {
|
||||
}, [size]);
|
||||
|
||||
return (
|
||||
<Button size="icon" variant="ghost" onClick={toggleTheme}>
|
||||
<Button size="icon" variant="ghost" className={className} onClick={toggleTheme}>
|
||||
<div className="cursor-pointer overflow-hidden" style={{ width: size, height: size }}>
|
||||
<motion.div animate={theme} variants={variants} className="flex">
|
||||
<Sun size={size} className="shrink-0" />
|
||||
<CloudSun size={size} className="shrink-0" />
|
||||
<Moon size={size} className="shrink-0" />
|
||||
<SunIcon size={size} className="shrink-0" aria-label={t`Switch to Light Mode`} />
|
||||
<CloudSunIcon size={size} className="shrink-0" aria-label={t`Use System Theme`} />
|
||||
<MoonIcon size={size} className="shrink-0" aria-label={t`Switch to Dark Mode`} />
|
||||
</motion.div>
|
||||
</div>
|
||||
</Button>
|
||||
|
||||
@ -1,2 +1,3 @@
|
||||
export const DEFAULT_MODEL = "gpt-3.5-turbo";
|
||||
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"),
|
||||
"am-ET": () => import("dayjs/locale/am"),
|
||||
"ar-SA": () => import("dayjs/locale/ar-sa"),
|
||||
"az-AZ": () => import("dayjs/locale/az"),
|
||||
"bg-BG": () => import("dayjs/locale/bg"),
|
||||
"bn-BD": () => import("dayjs/locale/bn"),
|
||||
"ca-ES": () => import("dayjs/locale/ca"),
|
||||
@ -35,17 +36,21 @@ export const dayjsLocales: Record<string, () => Promise<ILocale>> = {
|
||||
"kn-IN": () => import("dayjs/locale/kn"),
|
||||
"ko-KR": () => import("dayjs/locale/ko"),
|
||||
"lt-LT": () => import("dayjs/locale/lt"),
|
||||
"lv-LV": () => import("dayjs/locale/lv"),
|
||||
"ml-IN": () => import("dayjs/locale/ml"),
|
||||
"mr-IN": () => import("dayjs/locale/mr"),
|
||||
"ms-MY": () => import("dayjs/locale/ms-my"),
|
||||
"ne-NP": () => import("dayjs/locale/ne"),
|
||||
"nl-NL": () => import("dayjs/locale/nl"),
|
||||
"no-NO": () => import("dayjs/locale/en"),
|
||||
"no-NO": () => import("dayjs/locale/nb"),
|
||||
"or-IN": () => import("dayjs/locale/en"),
|
||||
"pl-PL": () => import("dayjs/locale/pl"),
|
||||
"pt-BR": () => import("dayjs/locale/pt-br"),
|
||||
"pt-PT": () => import("dayjs/locale/pt"),
|
||||
"ro-RO": () => import("dayjs/locale/ro"),
|
||||
"ru-RU": () => import("dayjs/locale/ru"),
|
||||
"sk-SK": () => import("dayjs/locale/sk"),
|
||||
"sq-AL": () => import("dayjs/locale/sq"),
|
||||
"sr-SP": () => import("dayjs/locale/sr"),
|
||||
"sv-SE": () => import("dayjs/locale/sv"),
|
||||
"ta-IN": () => import("dayjs/locale/ta"),
|
||||
@ -53,6 +58,7 @@ export const dayjsLocales: Record<string, () => Promise<ILocale>> = {
|
||||
"th-TH": () => import("dayjs/locale/th"),
|
||||
"tr-TR": () => import("dayjs/locale/tr"),
|
||||
"uk-UA": () => import("dayjs/locale/uk"),
|
||||
"uz-UZ": () => import("dayjs/locale/uz"),
|
||||
"vi-VN": () => import("dayjs/locale/vi"),
|
||||
"zh-CN": () => import("dayjs/locale/zh-cn"),
|
||||
"zh-TW": () => import("dayjs/locale/zh-tw"),
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: af\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-11-04 14:22\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Afrikaans\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
|
||||
msgid "You have enabled two-factor authentication successfully."
|
||||
msgstr ""
|
||||
msgstr "Jhvgbjnklj."
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:57
|
||||
msgid "{templatesCount} resume templates to choose from"
|
||||
@ -30,27 +30,27 @@ msgstr ""
|
||||
msgid "{value, plural, one {Column} other {Columns}}"
|
||||
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>"
|
||||
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>"
|
||||
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."
|
||||
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>"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr ""
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr ""
|
||||
msgid "Add a custom field"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:203
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr ""
|
||||
@ -112,12 +112,12 @@ msgstr ""
|
||||
msgid "Add a new item"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:267
|
||||
msgid "Add a new section"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -133,6 +133,14 @@ msgstr ""
|
||||
msgid "An error occurred while validating the file."
|
||||
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
|
||||
msgid "and many more..."
|
||||
msgstr ""
|
||||
@ -191,6 +199,18 @@ msgstr ""
|
||||
msgid "Awarder"
|
||||
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/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
@ -209,16 +229,16 @@ msgstr ""
|
||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||
msgid "Base URL"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:58
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
msgid "Basics"
|
||||
msgstr ""
|
||||
|
||||
@ -246,8 +266,8 @@ msgstr ""
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
#: apps/client/src/components/ai-actions.tsx:107
|
||||
#: apps/client/src/components/ai-actions.tsx:110
|
||||
msgid "Casual"
|
||||
msgstr ""
|
||||
|
||||
@ -255,12 +275,16 @@ msgstr ""
|
||||
msgid "Center Artboard"
|
||||
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/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
#: apps/client/src/components/ai-actions.tsx:101
|
||||
msgid "Change Tone"
|
||||
msgstr ""
|
||||
|
||||
@ -288,6 +312,16 @@ msgstr ""
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:272
|
||||
msgid "Collapse All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Collapse section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
@ -296,21 +330,17 @@ msgstr ""
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
#: apps/client/src/components/ai-actions.tsx:119
|
||||
#: apps/client/src/components/ai-actions.tsx:122
|
||||
msgid "Confident"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -351,7 +381,12 @@ msgstr ""
|
||||
msgid "Create Sample Resume"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
@ -360,7 +395,7 @@ msgstr ""
|
||||
msgid "Custom resume sections"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/stores/resume.ts:47
|
||||
#: apps/client/src/stores/resume.ts:53
|
||||
msgid "Custom Section"
|
||||
msgstr ""
|
||||
|
||||
@ -386,10 +421,10 @@ msgstr ""
|
||||
msgid "Date"
|
||||
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/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
|
||||
msgid "Date or Date Range"
|
||||
msgstr ""
|
||||
@ -407,11 +442,15 @@ msgstr ""
|
||||
msgid "Delete Account"
|
||||
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/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/skills.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
@ -423,18 +462,18 @@ msgstr ""
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
@ -442,7 +481,7 @@ msgstr ""
|
||||
msgid "Don't have an account?"
|
||||
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!"
|
||||
msgstr ""
|
||||
|
||||
@ -450,7 +489,7 @@ msgstr ""
|
||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -458,12 +497,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."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr ""
|
||||
|
||||
@ -487,7 +525,7 @@ msgstr ""
|
||||
msgid "Duplicate an existing resume"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -498,12 +536,12 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:90
|
||||
#: apps/client/src/pages/auth/register/page.tsx:141
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr ""
|
||||
|
||||
@ -531,6 +569,10 @@ msgstr ""
|
||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/public/error.tsx:46
|
||||
msgid "Error {statusCode}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||
msgid "Errors"
|
||||
msgstr ""
|
||||
@ -539,11 +581,22 @@ msgstr ""
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:271
|
||||
msgid "Expand All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Expand section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "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 ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
@ -564,19 +617,19 @@ msgstr ""
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr ""
|
||||
|
||||
@ -584,7 +637,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."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||
msgid "Forget"
|
||||
msgstr ""
|
||||
|
||||
@ -601,7 +654,7 @@ msgstr ""
|
||||
msgid "Format"
|
||||
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?"
|
||||
msgstr ""
|
||||
|
||||
@ -609,12 +662,12 @@ msgstr ""
|
||||
msgid "Free, forever"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:121
|
||||
#: apps/client/src/components/ai-actions.tsx:124
|
||||
#: apps/client/src/components/ai-actions.tsx:125
|
||||
#: apps/client/src/components/ai-actions.tsx:128
|
||||
msgid "Friendly"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:56
|
||||
msgid "Full Name"
|
||||
msgstr ""
|
||||
|
||||
@ -643,6 +696,10 @@ msgstr ""
|
||||
msgid "Go to Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/public/error.tsx:55
|
||||
msgid "Go to home"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||
msgid "Google"
|
||||
msgstr ""
|
||||
@ -651,11 +708,11 @@ msgstr ""
|
||||
msgid "Grayscale"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||
msgid "Grid"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:70
|
||||
msgid "Headline"
|
||||
msgstr ""
|
||||
|
||||
@ -668,7 +725,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
msgid "Hidden"
|
||||
msgstr ""
|
||||
@ -677,7 +734,7 @@ msgstr ""
|
||||
msgid "Hide"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr ""
|
||||
|
||||
@ -734,7 +791,7 @@ msgstr ""
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr ""
|
||||
|
||||
@ -743,7 +800,8 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx: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"
|
||||
msgstr ""
|
||||
|
||||
@ -802,10 +860,10 @@ msgstr ""
|
||||
msgid "JSON"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
@ -824,7 +882,8 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx: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"
|
||||
msgstr ""
|
||||
|
||||
@ -837,7 +896,7 @@ msgid "Letter"
|
||||
msgstr ""
|
||||
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -853,7 +912,7 @@ msgstr ""
|
||||
msgid "Light or dark theme"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr ""
|
||||
|
||||
@ -862,14 +921,14 @@ msgstr ""
|
||||
msgid "LinkedIn, JSON Resume, etc."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||
msgid "List"
|
||||
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/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:120
|
||||
msgid "Location"
|
||||
msgstr ""
|
||||
|
||||
@ -897,7 +956,7 @@ msgstr ""
|
||||
msgid "Lost your device?"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -914,7 +973,7 @@ msgstr ""
|
||||
|
||||
#: 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/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
|
||||
msgid "March 2023 - Present"
|
||||
msgstr ""
|
||||
@ -923,7 +982,7 @@ msgstr ""
|
||||
msgid "Margin"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||
msgid "Max Tokens"
|
||||
msgstr ""
|
||||
|
||||
@ -931,18 +990,18 @@ msgstr ""
|
||||
msgid "MIT License"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#: 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/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: 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/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/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/dashboard/settings/_sections/account.tsx:153
|
||||
msgid "Name"
|
||||
@ -957,7 +1016,7 @@ msgstr ""
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
@ -974,6 +1033,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
@ -1009,16 +1069,16 @@ msgstr ""
|
||||
msgid "OpenAI Integration"
|
||||
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"
|
||||
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/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
@ -1032,22 +1092,23 @@ msgid "Organization"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
#: 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}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||
msgid "PDF"
|
||||
msgstr ""
|
||||
|
||||
@ -1055,7 +1116,7 @@ msgstr ""
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:108
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
@ -1109,14 +1170,12 @@ msgstr ""
|
||||
msgid "Primary Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||
msgid "Privacy Policy"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
#: apps/client/src/components/ai-actions.tsx:113
|
||||
#: apps/client/src/components/ai-actions.tsx:116
|
||||
msgid "Professional"
|
||||
msgstr ""
|
||||
|
||||
@ -1132,7 +1191,7 @@ msgstr ""
|
||||
msgid "Publisher"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1144,11 +1203,10 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1175,12 +1233,12 @@ msgstr ""
|
||||
msgid "Redo"
|
||||
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
|
||||
msgid "Remove"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1199,7 +1257,7 @@ msgstr ""
|
||||
msgid "Reset"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1213,8 +1271,8 @@ msgid "Reset Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: 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:37
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||
msgid "Resumes"
|
||||
msgstr ""
|
||||
|
||||
@ -1237,11 +1295,11 @@ msgstr ""
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||
msgid "Save Locally"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||
msgid "Saved"
|
||||
msgstr ""
|
||||
|
||||
@ -1262,15 +1320,15 @@ msgstr ""
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
@ -1282,7 +1340,7 @@ msgstr ""
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
@ -1294,7 +1352,7 @@ msgstr ""
|
||||
msgid "Send Email"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1314,6 +1372,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr ""
|
||||
@ -1330,7 +1389,7 @@ msgstr ""
|
||||
msgid "Show Page Numbers"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1408,6 +1467,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr ""
|
||||
@ -1422,17 +1482,17 @@ msgstr ""
|
||||
|
||||
#: 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/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/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/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "Summary"
|
||||
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!"
|
||||
msgstr ""
|
||||
|
||||
@ -1444,11 +1504,20 @@ msgstr ""
|
||||
msgid "Supports A4/Letter page formats"
|
||||
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
|
||||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
@ -1465,8 +1534,12 @@ msgstr ""
|
||||
msgid "Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
#: apps/client/src/pages/public/error.tsx:17
|
||||
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 ""
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
@ -1474,6 +1547,7 @@ msgid "The resume you want to update is locked, please unlock if you wish to mak
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1604,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
@ -1552,11 +1626,12 @@ msgid "Type of Study"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr ""
|
||||
|
||||
@ -1599,6 +1674,14 @@ msgstr ""
|
||||
msgid "URL must start with https://"
|
||||
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:57
|
||||
msgid "Use your backup code"
|
||||
@ -1651,7 +1734,7 @@ msgstr ""
|
||||
msgid "Views"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1665,15 +1748,15 @@ msgstr ""
|
||||
|
||||
#: 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/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/experience.tsx:100
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:96
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
@ -1681,10 +1764,14 @@ msgstr ""
|
||||
msgid "What's new in the latest version"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
||||
#: apps/client/src/pages/public/error.tsx:26
|
||||
msgid "You are not authorized to access this page."
|
||||
msgstr ""
|
||||
|
||||
#: 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."
|
||||
msgstr ""
|
||||
|
||||
@ -1692,19 +1779,27 @@ msgstr ""
|
||||
msgid "You can also enter your username."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||
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."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||
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 ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||
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 ""
|
||||
|
||||
#: 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."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
@ -1721,7 +1816,7 @@ msgstr ""
|
||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
@ -1733,7 +1828,7 @@ msgstr ""
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: am\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-11-04 14:22\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Amharic\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
@ -30,27 +30,27 @@ msgstr ""
|
||||
msgid "{value, plural, one {Column} other {Columns}}"
|
||||
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>"
|
||||
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>"
|
||||
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."
|
||||
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>"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr ""
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr ""
|
||||
msgid "Add a custom field"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:203
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr ""
|
||||
@ -112,12 +112,12 @@ msgstr ""
|
||||
msgid "Add a new item"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:267
|
||||
msgid "Add a new section"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -133,6 +133,14 @@ msgstr ""
|
||||
msgid "An error occurred while validating the file."
|
||||
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
|
||||
msgid "and many more..."
|
||||
msgstr ""
|
||||
@ -191,6 +199,18 @@ msgstr ""
|
||||
msgid "Awarder"
|
||||
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/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
@ -209,16 +229,16 @@ msgstr ""
|
||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||
msgid "Base URL"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:58
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
msgid "Basics"
|
||||
msgstr ""
|
||||
|
||||
@ -246,8 +266,8 @@ msgstr ""
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
#: apps/client/src/components/ai-actions.tsx:107
|
||||
#: apps/client/src/components/ai-actions.tsx:110
|
||||
msgid "Casual"
|
||||
msgstr ""
|
||||
|
||||
@ -255,12 +275,16 @@ msgstr ""
|
||||
msgid "Center Artboard"
|
||||
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/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
#: apps/client/src/components/ai-actions.tsx:101
|
||||
msgid "Change Tone"
|
||||
msgstr ""
|
||||
|
||||
@ -288,6 +312,16 @@ msgstr ""
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:272
|
||||
msgid "Collapse All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Collapse section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
@ -296,21 +330,17 @@ msgstr ""
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
#: apps/client/src/components/ai-actions.tsx:119
|
||||
#: apps/client/src/components/ai-actions.tsx:122
|
||||
msgid "Confident"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -351,7 +381,12 @@ msgstr ""
|
||||
msgid "Create Sample Resume"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
@ -360,7 +395,7 @@ msgstr ""
|
||||
msgid "Custom resume sections"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/stores/resume.ts:47
|
||||
#: apps/client/src/stores/resume.ts:53
|
||||
msgid "Custom Section"
|
||||
msgstr ""
|
||||
|
||||
@ -386,10 +421,10 @@ msgstr ""
|
||||
msgid "Date"
|
||||
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/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
|
||||
msgid "Date or Date Range"
|
||||
msgstr ""
|
||||
@ -407,11 +442,15 @@ msgstr ""
|
||||
msgid "Delete Account"
|
||||
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/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/skills.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
@ -423,18 +462,18 @@ msgstr ""
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
@ -442,7 +481,7 @@ msgstr ""
|
||||
msgid "Don't have an account?"
|
||||
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!"
|
||||
msgstr ""
|
||||
|
||||
@ -450,7 +489,7 @@ msgstr ""
|
||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -458,12 +497,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."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr ""
|
||||
|
||||
@ -487,7 +525,7 @@ msgstr ""
|
||||
msgid "Duplicate an existing resume"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -498,12 +536,12 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:90
|
||||
#: apps/client/src/pages/auth/register/page.tsx:141
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr ""
|
||||
|
||||
@ -531,6 +569,10 @@ msgstr ""
|
||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/public/error.tsx:46
|
||||
msgid "Error {statusCode}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||
msgid "Errors"
|
||||
msgstr ""
|
||||
@ -539,11 +581,22 @@ msgstr ""
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:271
|
||||
msgid "Expand All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Expand section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "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 ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
@ -564,19 +617,19 @@ msgstr ""
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr ""
|
||||
|
||||
@ -584,7 +637,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."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||
msgid "Forget"
|
||||
msgstr ""
|
||||
|
||||
@ -601,7 +654,7 @@ msgstr ""
|
||||
msgid "Format"
|
||||
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?"
|
||||
msgstr ""
|
||||
|
||||
@ -609,12 +662,12 @@ msgstr ""
|
||||
msgid "Free, forever"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:121
|
||||
#: apps/client/src/components/ai-actions.tsx:124
|
||||
#: apps/client/src/components/ai-actions.tsx:125
|
||||
#: apps/client/src/components/ai-actions.tsx:128
|
||||
msgid "Friendly"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:56
|
||||
msgid "Full Name"
|
||||
msgstr ""
|
||||
|
||||
@ -643,6 +696,10 @@ msgstr ""
|
||||
msgid "Go to Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/public/error.tsx:55
|
||||
msgid "Go to home"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||
msgid "Google"
|
||||
msgstr ""
|
||||
@ -651,11 +708,11 @@ msgstr ""
|
||||
msgid "Grayscale"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||
msgid "Grid"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:70
|
||||
msgid "Headline"
|
||||
msgstr ""
|
||||
|
||||
@ -668,7 +725,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
msgid "Hidden"
|
||||
msgstr ""
|
||||
@ -677,7 +734,7 @@ msgstr ""
|
||||
msgid "Hide"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr ""
|
||||
|
||||
@ -734,7 +791,7 @@ msgstr ""
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr ""
|
||||
|
||||
@ -743,7 +800,8 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx: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"
|
||||
msgstr ""
|
||||
|
||||
@ -802,10 +860,10 @@ msgstr ""
|
||||
msgid "JSON"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
@ -824,7 +882,8 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx: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"
|
||||
msgstr ""
|
||||
|
||||
@ -837,7 +896,7 @@ msgid "Letter"
|
||||
msgstr ""
|
||||
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -853,7 +912,7 @@ msgstr ""
|
||||
msgid "Light or dark theme"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr ""
|
||||
|
||||
@ -862,14 +921,14 @@ msgstr ""
|
||||
msgid "LinkedIn, JSON Resume, etc."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||
msgid "List"
|
||||
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/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:120
|
||||
msgid "Location"
|
||||
msgstr ""
|
||||
|
||||
@ -897,7 +956,7 @@ msgstr ""
|
||||
msgid "Lost your device?"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -914,7 +973,7 @@ msgstr ""
|
||||
|
||||
#: 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/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
|
||||
msgid "March 2023 - Present"
|
||||
msgstr ""
|
||||
@ -923,7 +982,7 @@ msgstr ""
|
||||
msgid "Margin"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||
msgid "Max Tokens"
|
||||
msgstr ""
|
||||
|
||||
@ -931,18 +990,18 @@ msgstr ""
|
||||
msgid "MIT License"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#: 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/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: 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/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/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/dashboard/settings/_sections/account.tsx:153
|
||||
msgid "Name"
|
||||
@ -957,7 +1016,7 @@ msgstr ""
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
@ -974,6 +1033,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
@ -1009,16 +1069,16 @@ msgstr ""
|
||||
msgid "OpenAI Integration"
|
||||
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"
|
||||
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/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
@ -1032,22 +1092,23 @@ msgid "Organization"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
#: 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}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||
msgid "PDF"
|
||||
msgstr ""
|
||||
|
||||
@ -1055,7 +1116,7 @@ msgstr ""
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:108
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
@ -1109,14 +1170,12 @@ msgstr ""
|
||||
msgid "Primary Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||
msgid "Privacy Policy"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
#: apps/client/src/components/ai-actions.tsx:113
|
||||
#: apps/client/src/components/ai-actions.tsx:116
|
||||
msgid "Professional"
|
||||
msgstr ""
|
||||
|
||||
@ -1132,7 +1191,7 @@ msgstr ""
|
||||
msgid "Publisher"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1144,11 +1203,10 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1175,12 +1233,12 @@ msgstr ""
|
||||
msgid "Redo"
|
||||
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
|
||||
msgid "Remove"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1199,7 +1257,7 @@ msgstr ""
|
||||
msgid "Reset"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1213,8 +1271,8 @@ msgid "Reset Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: 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:37
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||
msgid "Resumes"
|
||||
msgstr ""
|
||||
|
||||
@ -1237,11 +1295,11 @@ msgstr ""
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||
msgid "Save Locally"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||
msgid "Saved"
|
||||
msgstr ""
|
||||
|
||||
@ -1262,15 +1320,15 @@ msgstr ""
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
@ -1282,7 +1340,7 @@ msgstr ""
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
@ -1294,7 +1352,7 @@ msgstr ""
|
||||
msgid "Send Email"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1314,6 +1372,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr ""
|
||||
@ -1330,7 +1389,7 @@ msgstr ""
|
||||
msgid "Show Page Numbers"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1408,6 +1467,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr ""
|
||||
@ -1422,17 +1482,17 @@ msgstr ""
|
||||
|
||||
#: 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/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/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/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "Summary"
|
||||
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!"
|
||||
msgstr ""
|
||||
|
||||
@ -1444,11 +1504,20 @@ msgstr ""
|
||||
msgid "Supports A4/Letter page formats"
|
||||
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
|
||||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
@ -1465,8 +1534,12 @@ msgstr ""
|
||||
msgid "Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
#: apps/client/src/pages/public/error.tsx:17
|
||||
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 ""
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
@ -1474,6 +1547,7 @@ msgid "The resume you want to update is locked, please unlock if you wish to mak
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1604,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
@ -1552,11 +1626,12 @@ msgid "Type of Study"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr ""
|
||||
|
||||
@ -1599,6 +1674,14 @@ msgstr ""
|
||||
msgid "URL must start with https://"
|
||||
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:57
|
||||
msgid "Use your backup code"
|
||||
@ -1651,7 +1734,7 @@ msgstr ""
|
||||
msgid "Views"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1665,15 +1748,15 @@ msgstr ""
|
||||
|
||||
#: 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/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/experience.tsx:100
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:96
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
@ -1681,10 +1764,14 @@ msgstr ""
|
||||
msgid "What's new in the latest version"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
||||
#: apps/client/src/pages/public/error.tsx:26
|
||||
msgid "You are not authorized to access this page."
|
||||
msgstr ""
|
||||
|
||||
#: 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."
|
||||
msgstr ""
|
||||
|
||||
@ -1692,19 +1779,27 @@ msgstr ""
|
||||
msgid "You can also enter your username."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||
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."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||
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 ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||
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 ""
|
||||
|
||||
#: 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."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
@ -1721,7 +1816,7 @@ msgstr ""
|
||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
@ -1733,7 +1828,7 @@ msgstr ""
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ar\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-11-04 14:22\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Arabic\n"
|
||||
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||
@ -20,37 +20,37 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:171
|
||||
msgid "You have enabled two-factor authentication successfully."
|
||||
msgstr "لقد فعلت المصادقة الثنائية بنجاح."
|
||||
msgstr "لقد تم تفعيل المصادقة الثنائية بنجاح."
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:57
|
||||
msgid "{templatesCount} resume templates to choose from"
|
||||
msgstr "{templatesCount} قوالب السيرة الذاتية للاختيار من بينها"
|
||||
msgstr "{templatesCount} قوالب سيرة ذاتية لتختار من بينها"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:142
|
||||
msgid "{value, plural, one {Column} other {Columns}}"
|
||||
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>"
|
||||
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>"
|
||||
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."
|
||||
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>"
|
||||
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."
|
||||
msgstr "<0>المصادقة الثنائية معطلة حاليا.</0> يمكنك تفعيلها عن طريق إضافة تطبيق مصادقة إلى حسابك."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>المصادقة الثنائية عامل مفعل.</0> سوف يطلب منك إدخال رمز في كل مرة تقوم فيها بتسجيل الدخول."
|
||||
|
||||
@ -79,7 +79,7 @@ msgstr "من المفترض أن يتم إرسال رابط إعادة تعيي
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:43
|
||||
msgid "A resume with this slug already exists, please pick a different unique identifier."
|
||||
msgstr "السيرة الذاتية التي تحتوي على هذه العبارة موجودة بالفعل، يرجى اختيار معرف فريد مختلف."
|
||||
msgstr "السيرة الذاتية التي تحتوي على هذه العبارة موجودة سلفًا، يرجى اختيار معرف فريد مختلف."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:10
|
||||
msgid "A user with this email address and/or username already exists."
|
||||
@ -102,8 +102,8 @@ msgstr "حساب"
|
||||
msgid "Add a custom field"
|
||||
msgstr "أضافه حقل مخصص"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:203
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "إضافة عنصر جديد"
|
||||
@ -112,12 +112,12 @@ msgstr "إضافة عنصر جديد"
|
||||
msgid "Add a new item"
|
||||
msgstr "إضافة عنصر جديد"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:267
|
||||
msgid "Add a new section"
|
||||
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"
|
||||
msgstr "إضافة صفحة جديدة"
|
||||
|
||||
@ -133,6 +133,14 @@ msgstr "لديك حساب مسبقا؟"
|
||||
msgid "An error occurred while validating the file."
|
||||
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
|
||||
msgid "and many more..."
|
||||
msgstr "وأكثر من ذلك..."
|
||||
@ -191,6 +199,18 @@ msgstr "متوفر في {languagesCount} لغات"
|
||||
msgid "Awarder"
|
||||
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/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
@ -209,16 +229,16 @@ msgstr "رمز النسخ الاحتياطي"
|
||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||
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"
|
||||
msgstr "الرابط الأساسي"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:58
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr "الأساسيات"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
msgid "Basics"
|
||||
msgstr "الأساسيات"
|
||||
|
||||
@ -246,8 +266,8 @@ msgstr "من قبل المجتمع، من أجل المجتمع."
|
||||
msgid "Cancel"
|
||||
msgstr "إلغاء"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
#: apps/client/src/components/ai-actions.tsx:107
|
||||
#: apps/client/src/components/ai-actions.tsx:110
|
||||
msgid "Casual"
|
||||
msgstr "عادي"
|
||||
|
||||
@ -255,12 +275,16 @@ msgstr "عادي"
|
||||
msgid "Center Artboard"
|
||||
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/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "تغيير كلمة المرور"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
#: apps/client/src/components/ai-actions.tsx:101
|
||||
msgid "Change Tone"
|
||||
msgstr "تغيير التأثير"
|
||||
|
||||
@ -288,6 +312,16 @@ msgstr "الرمز"
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr "يجب أن يتكون الرمز من 6 أرقام بالضبط."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:272
|
||||
msgid "Collapse All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Collapse section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136
|
||||
msgid "Columns"
|
||||
msgstr "أعمدة"
|
||||
@ -296,21 +330,17 @@ msgstr "أعمدة"
|
||||
msgid "Company"
|
||||
msgstr "الشركة"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
#: apps/client/src/components/ai-actions.tsx:119
|
||||
#: apps/client/src/components/ai-actions.tsx:122
|
||||
msgid "Confident"
|
||||
msgstr "واثق"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "تأكيد كلمة المرور الجديدة"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
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"
|
||||
msgstr "نسخ"
|
||||
|
||||
@ -351,7 +381,12 @@ msgstr "قم بإنشاء واحدة الآن"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "إنشاء نموذج السيرة الذاتية"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr "كلمة المرور الحالية"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "CSS مخصص"
|
||||
@ -360,7 +395,7 @@ msgstr "CSS مخصص"
|
||||
msgid "Custom resume sections"
|
||||
msgstr "أقسام السيرة الذاتية المخصصة"
|
||||
|
||||
#: apps/client/src/stores/resume.ts:47
|
||||
#: apps/client/src/stores/resume.ts:53
|
||||
msgid "Custom Section"
|
||||
msgstr "قسم مخصص"
|
||||
|
||||
@ -386,10 +421,10 @@ msgstr "داكن"
|
||||
msgid "Date"
|
||||
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/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
|
||||
msgid "Date or Date Range"
|
||||
msgstr "التاريخ أو النطاق الزمني"
|
||||
@ -407,11 +442,15 @@ msgstr "حذف"
|
||||
msgid "Delete Account"
|
||||
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/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/skills.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||
msgid "Description"
|
||||
msgstr "الوصف"
|
||||
|
||||
@ -423,18 +462,18 @@ msgstr "تصميم السيرة الذاتية بصفحة واحدة/متعدد
|
||||
msgid "Disable"
|
||||
msgstr "تعطيل"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "تعطيل المصادقة الثنائية 2FA"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "تجاهل"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr "إرشادات الإستخدام"
|
||||
|
||||
@ -442,7 +481,7 @@ msgstr "إرشادات الإستخدام"
|
||||
msgid "Don't have an account?"
|
||||
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!"
|
||||
msgstr "لا تعرف من أين تبدأ؟ راجع الارشادات!"
|
||||
|
||||
@ -450,7 +489,7 @@ msgstr "لا تعرف من أين تبدأ؟ راجع الارشادات!"
|
||||
msgid "Don't see your language? <0>Help translate the app.</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"
|
||||
msgstr "تبرع لـReactive Resume"
|
||||
|
||||
@ -458,12 +497,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."
|
||||
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."
|
||||
msgstr "قم بتنزيل ملف PDF الخاص باستعادتك. يمكن استخدام هذا الملف لطباعة استعادتك، أو إرساله إلى القائمين بالتجنيد، أو تحميله على بوابات العمل."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "تنزيل PDF"
|
||||
|
||||
@ -487,7 +525,7 @@ msgstr "استنسخ عنصرًا موجودًا"
|
||||
msgid "Duplicate an existing resume"
|
||||
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"
|
||||
msgstr "عدّل"
|
||||
|
||||
@ -498,12 +536,12 @@ msgstr "المؤثرات"
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:90
|
||||
#: apps/client/src/pages/auth/register/page.tsx:141
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181
|
||||
msgid "Email"
|
||||
msgstr "البريد الإلكتروني"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "تمكين المصادقة الثنائية (2FA)"
|
||||
|
||||
@ -531,6 +569,10 @@ msgstr "أدخل كلمة المرور لمرة واحدة التي وفرها
|
||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||
msgstr "أدخل عنوان البريد الإلكتروني الخاص بك وسوف نرسل لك رابط لإعادة تعيين كلمة المرور الخاصة بك إذا كان الحساب موجود."
|
||||
|
||||
#: apps/client/src/pages/public/error.tsx:46
|
||||
msgid "Error {statusCode}"
|
||||
msgstr "خطأ {statusCode}"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||
msgid "Errors"
|
||||
msgstr "أخطاء"
|
||||
@ -539,11 +581,22 @@ msgstr "أخطاء"
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr "حتى إذا لم تكن في وضع يسمح لك بالمساهمة مالياً، يمكنك أن تحدث فرقاً من خلال إعطاء مستودع GitHub نجمة، نشر الكلمة إلى أصدقائك، أو إسقاط رسالة سريعة لإعلامي كيف ساعدك الاستئناف التفاعلي. إن ملاحظاتك ودعمك دائما موضع ترحيب وتقدير كبير!"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:271
|
||||
msgid "Expand All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Expand section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "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 "استكشف القوالب المتاحة في Resume التفاعلي وعرض الاستئنافات التي تمت صياغتها معهم. ويمكنها أيضا أن تكون أمثلة للمساعدة في توجيه عملية إنشاء مستأنفتك المقبلة."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "تصدير"
|
||||
@ -564,19 +617,19 @@ msgstr "أخيرًا،"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "إصلاح الإملاء والنحو"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "مجموعة الخطوط"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "حجم الخط"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "مجموعات الخط الفرعية"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "متغير الخط"
|
||||
|
||||
@ -584,7 +637,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."
|
||||
msgstr "فعلى سبيل المثال، يمكن الإشارة هنا إلى المعلومات المتعلقة بالشركات التي أرسلتها لاستئناف العمل أو الروابط مع توصيفات الوظائف."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||
msgid "Forget"
|
||||
msgstr "نسيان"
|
||||
|
||||
@ -601,7 +654,7 @@ msgstr "أنسيت كلمة مرورك؟"
|
||||
msgid "Format"
|
||||
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?"
|
||||
msgstr "هل وجدت خطأ، أم لديك فكرة لميزة جديدة؟"
|
||||
|
||||
@ -609,12 +662,12 @@ msgstr "هل وجدت خطأ، أم لديك فكرة لميزة جديدة؟"
|
||||
msgid "Free, forever"
|
||||
msgstr "مجاني، للأبد"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:121
|
||||
#: apps/client/src/components/ai-actions.tsx:124
|
||||
#: apps/client/src/components/ai-actions.tsx:125
|
||||
#: apps/client/src/components/ai-actions.tsx:128
|
||||
msgid "Friendly"
|
||||
msgstr "ودود"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:56
|
||||
msgid "Full Name"
|
||||
msgstr "الاسم الكامل"
|
||||
|
||||
@ -643,6 +696,10 @@ msgstr "امنح سيرتك الذاتية القديمة اسماً جديدا
|
||||
msgid "Go to Dashboard"
|
||||
msgstr "الذهاب إلى لوحة التحكم"
|
||||
|
||||
#: apps/client/src/pages/public/error.tsx:55
|
||||
msgid "Go to home"
|
||||
msgstr "انتقل إلى الصفحة الرئيسية"
|
||||
|
||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||
msgid "Google"
|
||||
msgstr "جوجل"
|
||||
@ -651,11 +708,11 @@ msgstr "جوجل"
|
||||
msgid "Grayscale"
|
||||
msgstr "تدرج رمادي"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||
msgid "Grid"
|
||||
msgstr "الشبكة"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:70
|
||||
msgid "Headline"
|
||||
msgstr "العنوان"
|
||||
|
||||
@ -668,7 +725,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr "هنا، يمكنك تحديث ملفك التعريفي لتخصيص تجربتك وإضافة طابعك الشخصي عليها."
|
||||
|
||||
#: 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
|
||||
msgid "Hidden"
|
||||
msgstr "مخفي"
|
||||
@ -677,7 +734,7 @@ msgstr "مخفي"
|
||||
msgid "Hide"
|
||||
msgstr "إخفاء"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "إخفاء الأيقونات"
|
||||
|
||||
@ -734,7 +791,7 @@ msgstr "تحسين الكتابة"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "في حال كنت غير قادر على مسح رمز QR هذا، يمكنك أيضًا نسخ ولصق هذا الرابط في تطبيق المصادقة الخاص بك."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "في هذا القسم، يمكنك تغيير كلمة المرور الخاصة بك وتمكين/تعطيل المصادقة ذات العاملين."
|
||||
|
||||
@ -743,7 +800,8 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "في هذا القسم، يمكنك حذف حسابك وجميع البيانات المرتبطة بالمستخدم الخاص بك، ولكن يرجى مراعاة أن <0>هذا الإجراء لا رجعة فيه</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx: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"
|
||||
msgstr "المعلومات"
|
||||
|
||||
@ -802,10 +860,10 @@ msgstr "john.doe@example.com"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||
msgid "Keywords"
|
||||
msgstr "الكلمات المفتاحية"
|
||||
|
||||
@ -824,7 +882,8 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "آخر تحديث {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx: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"
|
||||
msgstr "التصميم"
|
||||
|
||||
@ -837,7 +896,7 @@ msgid "Letter"
|
||||
msgstr "رسالة"
|
||||
|
||||
#: 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"
|
||||
msgstr "المستوى"
|
||||
|
||||
@ -853,7 +912,7 @@ msgstr "مضيئ"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "سمة مضيئة أو داكنة"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "ارتفاع الخط"
|
||||
|
||||
@ -862,14 +921,14 @@ msgstr "ارتفاع الخط"
|
||||
msgid "LinkedIn, JSON Resume, etc."
|
||||
msgstr "لينكد إن، JSON Resume، إلخ."
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||
msgid "List"
|
||||
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/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:120
|
||||
msgid "Location"
|
||||
msgstr "الموقع"
|
||||
|
||||
@ -897,7 +956,7 @@ msgstr "تسجيل الخروج"
|
||||
msgid "Lost your device?"
|
||||
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"
|
||||
msgstr "رئيسي"
|
||||
|
||||
@ -914,7 +973,7 @@ msgstr "مارس 2023"
|
||||
|
||||
#: 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/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
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "مارس 2023 - حتى الآن"
|
||||
@ -923,7 +982,7 @@ msgstr "مارس 2023 - حتى الآن"
|
||||
msgid "Margin"
|
||||
msgstr "هامش"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||
msgid "Max Tokens"
|
||||
msgstr "الحد الأقصى للرموز"
|
||||
|
||||
@ -931,18 +990,18 @@ msgstr "الحد الأقصى للرموز"
|
||||
msgid "MIT License"
|
||||
msgstr "رخصة MIT"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||
msgid "Model"
|
||||
msgstr "الموديل"
|
||||
|
||||
#: 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/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: 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/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/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/dashboard/settings/_sections/account.tsx:153
|
||||
msgid "Name"
|
||||
@ -957,7 +1016,7 @@ msgstr "الاسم"
|
||||
msgid "Network"
|
||||
msgstr "الشبكة"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "كلمة مرور جديدة"
|
||||
|
||||
@ -974,6 +1033,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "ملاحظة: هذا سيجعل حسابك أقل أمانًا."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "ملاحظات"
|
||||
@ -1009,16 +1069,16 @@ msgstr "لم يُرجع OpenAI أي اختيارات للنص الخاص بك."
|
||||
msgid "OpenAI Integration"
|
||||
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"
|
||||
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/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "خيارات"
|
||||
|
||||
@ -1032,22 +1092,23 @@ msgid "Organization"
|
||||
msgstr "الشركة"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "صفحة"
|
||||
|
||||
#: 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}"
|
||||
msgstr "الصفحة {pageNumber}"
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "كلمة المرور"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||
msgid "PDF"
|
||||
msgstr "PDF"
|
||||
|
||||
@ -1055,7 +1116,7 @@ msgstr "PDF"
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr "ملاحظات شخصية لكل استئناف"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:108
|
||||
msgid "Phone"
|
||||
msgstr "الهاتف"
|
||||
|
||||
@ -1109,14 +1170,12 @@ msgstr "مدعوم من <0>أيس بسيط</0>"
|
||||
msgid "Primary Color"
|
||||
msgstr "اللون الأساسي"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||
msgid "Privacy Policy"
|
||||
msgstr "سياسة الخصوصية"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
#: apps/client/src/components/ai-actions.tsx:113
|
||||
#: apps/client/src/components/ai-actions.tsx:116
|
||||
msgid "Professional"
|
||||
msgstr "مهني"
|
||||
|
||||
@ -1132,7 +1191,7 @@ msgstr "عامة"
|
||||
msgid "Publisher"
|
||||
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"
|
||||
msgstr "طرح مشكلة"
|
||||
|
||||
@ -1144,11 +1203,10 @@ msgstr "طرح مشكلة"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1175,12 +1233,12 @@ msgstr "إعادة التفاعل تزدهر بفضل مجتمعها النشط.
|
||||
msgid "Redo"
|
||||
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
|
||||
msgid "Remove"
|
||||
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"
|
||||
msgstr "إزالة الصفحة"
|
||||
|
||||
@ -1199,7 +1257,7 @@ msgstr "إعادة إرسال رابط تأكيد البريد الإلكترو
|
||||
msgid "Reset"
|
||||
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"
|
||||
msgstr "إعادة تعيين التصميم"
|
||||
|
||||
@ -1213,8 +1271,8 @@ msgid "Reset Zoom"
|
||||
msgstr "إعادة ضبط التكبير"
|
||||
|
||||
#: 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:37
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||
msgid "Resumes"
|
||||
msgstr "السير الذاتية"
|
||||
|
||||
@ -1237,11 +1295,11 @@ msgstr "مدوّر"
|
||||
msgid "Save Changes"
|
||||
msgstr "حفظ التّغييرات"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||
msgid "Save Locally"
|
||||
msgstr "الحفظ في الجهاز (محلياً)"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||
msgid "Saved"
|
||||
msgstr "تم الحفظ"
|
||||
|
||||
@ -1262,15 +1320,15 @@ msgstr "التمرير إلى المقلاة"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "التمرير للتكبير"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "ابحث عن عائلة خطوط"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "البحث عن مجموعة خطوط فرعية"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "ابحث عن متغير الخط"
|
||||
|
||||
@ -1282,7 +1340,7 @@ msgstr "ابحث عن لغة"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "أمّن بالمصادقة الثنائية"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "الأمان"
|
||||
|
||||
@ -1294,7 +1352,7 @@ msgstr "الاستضافة الذاتية مع Docker"
|
||||
msgid "Send Email"
|
||||
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"
|
||||
msgstr "أرسل لي رسالة"
|
||||
|
||||
@ -1314,6 +1372,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "أعدّ المصادقة الثنائية على حسابك"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "المشاركة"
|
||||
@ -1330,7 +1389,7 @@ msgstr "إظهار الخط الفاصل"
|
||||
msgid "Show Page Numbers"
|
||||
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"
|
||||
msgstr "الشريط الجانبي"
|
||||
|
||||
@ -1408,6 +1467,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "ابدأ في بناء مستأنفتك عن طريق إعطائها اسماً."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "الإحصائيات"
|
||||
@ -1422,17 +1482,17 @@ msgstr "تخزين رموز النسخ الاحتياطي الخاص بك بشك
|
||||
|
||||
#: 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/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/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/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "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!"
|
||||
msgstr "دعم التطبيق عن طريق التبرع بما يمكنك!"
|
||||
|
||||
@ -1444,11 +1504,20 @@ msgstr "دعم الإستئناف"
|
||||
msgid "Supports A4/Letter page formats"
|
||||
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
|
||||
msgid "System"
|
||||
msgstr "النظام"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "قالب"
|
||||
@ -1465,15 +1534,20 @@ msgstr "الشهادات"
|
||||
msgid "Text Color"
|
||||
msgstr "لون النص"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "كلمات المرور التي أدخلتها غير متطابقة."
|
||||
#: apps/client/src/pages/public/error.tsx:17
|
||||
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 "الطلب غير صالح."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "تم تأمين الاستئناف الذي تريد تحديثه، يرجى إلغاء قفل إذا كنت ترغب في إجراء أي تغييرات عليه."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1604,7 @@ msgstr "تتبع وجهات النظر والتنزيلات"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "المصادقة الثنائية"
|
||||
|
||||
@ -1552,11 +1626,12 @@ msgid "Type of Study"
|
||||
msgstr "نوع الدراسة"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "الطبقات"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "أسفل الروابط"
|
||||
|
||||
@ -1599,6 +1674,14 @@ msgstr "الرابط"
|
||||
msgid "URL must start with 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:57
|
||||
msgid "Use your backup code"
|
||||
@ -1651,7 +1734,7 @@ msgstr "الإصدار 4"
|
||||
msgid "Views"
|
||||
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"
|
||||
msgstr "مرئي"
|
||||
|
||||
@ -1665,15 +1748,15 @@ msgstr "نحن نقوم بالتحقق من عنوان البريد الإلكت
|
||||
|
||||
#: 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/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/experience.tsx:100
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:96
|
||||
msgid "Website"
|
||||
msgstr "الموقع"
|
||||
|
||||
@ -1681,10 +1764,14 @@ msgstr "الموقع"
|
||||
msgid "What's new in the latest version"
|
||||
msgstr "ما هو الجديد في أحدث إصدار"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
||||
#: apps/client/src/pages/public/error.tsx:26
|
||||
msgid "You are not authorized to access this page."
|
||||
msgstr "ليس لديك صلاحية لدخول هذه الصفحة."
|
||||
|
||||
#: 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."
|
||||
msgstr "يمكنك إضافة عدة كلمات مفتاحية عن طريق فصلها بفاصلة أو الضغط على إدخال."
|
||||
|
||||
@ -1692,19 +1779,27 @@ msgstr "يمكنك إضافة عدة كلمات مفتاحية عن طريق ف
|
||||
msgid "You can also enter your username."
|
||||
msgstr "يمكنك أيضًا إدخال اسم المستخدم الخاص بك."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||
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."
|
||||
msgstr "يمكنك أيضًا التكامل مع Ollama ببساطة عن طريق تعيين مفتاح واجهة برمجة التطبيقات على 'ssk-1234567867890abcdef' وعنوان URL الأساسي إلى عنوان URL الخاص ب Ollama، أي 'http://localhost:11434/v1'. يمكنك أيضًا انتقاء واختيار النماذج وتعيين الحد الأقصى للرموز المميزة حسب تفضيلاتك."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||
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 "يمكنك أيضا التكامل مع 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
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
msgstr "يمكنك استخدام واجهة برمجة تطبيقات OpenAI لمساعدتك في إنشاء المحتوى، أو تحسين الكتابة الخاصة بك أثناء تشكيل استعادتك."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||
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 إلى <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
|
||||
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 "يمكنك تتبع عدد المشاهدات التي استلمتها في الاستئناف الخاص بك، أو كم عدد الأشخاص الذين قاموا بتنزيل الاستكمال عن طريق تمكين المشاركة العامة."
|
||||
|
||||
#: 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."
|
||||
msgstr "لديك خيار <0>الحصول على مفتاح API OpenAI الخاص بك </0>. هذا المفتاح يمكّنك من استخدام API كما تراه مناسباً. بدلاً من ذلك، إذا كنت ترغب في تعطيل ميزات الذكاء الاصطناعي في الاستئناف التفاعلي تماماً، يمكنك ببساطة إزالة المفتاح من الإعدادات الخاصة بك."
|
||||
|
||||
@ -1721,7 +1816,7 @@ msgstr "لديك بريد!"
|
||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||
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."
|
||||
msgstr "يتم تخزين مفتاح API الخاص بك بشكل آمن في التخزين المحلي للمتصفح ويتم استخدامه فقط عند تقديم طلبات إلى OpenAI عن طريق SDK الرسمية الخاصة بهم. تأكد من أن المفتاح الخاص بك لا يتم إرساله إلى أي خادم خارجي إلا عند التفاعل مع خدمات OpenAI."
|
||||
|
||||
@ -1733,7 +1828,7 @@ msgstr "تم التحقق من عنوان البريد الإلكتروني ال
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "لم يتم تعيين مفتاح API OpenAI الخاص بك بعد. يرجى الذهاب إلى إعدادات الحساب الخاص بك لتمكين تكامل OpenAI."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "تم تحديث كلمة المرور الخاصة بك بنجاح."
|
||||
|
||||
|
||||
1842
apps/client/src/locales/az-AZ/messages.po
Normal file
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: bg\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-11-04 14:22\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Bulgarian\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -30,27 +30,27 @@ msgstr "{templatesCount} шаблони на автобиографии, от к
|
||||
msgid "{value, plural, one {Column} other {Columns}}"
|
||||
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>"
|
||||
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>"
|
||||
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."
|
||||
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>"
|
||||
msgstr "<0>Общността е отделила много време, за да напише документацията за Reactive Resume, и съм сигурен, че тя ще ви помогне да започнете работа с приложението.</0><1>Има и много примери, които ще ви помогнат да започнете, както и функции, за които може би не знаете и които биха ви помогнали да създадете перфектното си CV.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>Понастоящем двуфакторното удостоверяване е деактивирано.</0> Можете да я активирате, като добавите приложение за удостоверяване към профила си."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>Разрешено е двуфакторно удостоверяване.</0> Всеки път, когато влизате в системата, ще бъдете помолени да въведете код."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Сметка"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Добавяне на потребителско поле"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:203
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Добавяне на нов елемент"
|
||||
@ -112,12 +112,12 @@ msgstr "Добавяне на нов елемент"
|
||||
msgid "Add a new item"
|
||||
msgstr "Добавяне на нов елемент"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:267
|
||||
msgid "Add a new section"
|
||||
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"
|
||||
msgstr "Добавяне на нова страница"
|
||||
|
||||
@ -133,6 +133,14 @@ msgstr "Вече имате акаунт?"
|
||||
msgid "An error occurred while validating the file."
|
||||
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
|
||||
msgid "and many more..."
|
||||
msgstr "и много други..."
|
||||
@ -191,6 +199,18 @@ msgstr "Предлага се на {languagesCount} езици"
|
||||
msgid "Awarder"
|
||||
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/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
@ -209,16 +229,16 @@ msgstr "Код за резервно копие"
|
||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||
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"
|
||||
msgstr "Базов URL адрес"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:58
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr "Основи"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
msgid "Basics"
|
||||
msgstr "Основи"
|
||||
|
||||
@ -246,8 +266,8 @@ msgstr "От общността, за общността."
|
||||
msgid "Cancel"
|
||||
msgstr "Отмяна на"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
#: apps/client/src/components/ai-actions.tsx:107
|
||||
#: apps/client/src/components/ai-actions.tsx:110
|
||||
msgid "Casual"
|
||||
msgstr "Случайно"
|
||||
|
||||
@ -255,12 +275,16 @@ msgstr "Случайно"
|
||||
msgid "Center Artboard"
|
||||
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/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Промяна на паролата"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
#: apps/client/src/components/ai-actions.tsx:101
|
||||
msgid "Change Tone"
|
||||
msgstr "Промяна на тона"
|
||||
|
||||
@ -288,6 +312,16 @@ msgstr "Код"
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr "Кодът трябва да е дълъг точно 6 цифри."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:272
|
||||
msgid "Collapse All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Collapse section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136
|
||||
msgid "Columns"
|
||||
msgstr "Колони"
|
||||
@ -296,21 +330,17 @@ msgstr "Колони"
|
||||
msgid "Company"
|
||||
msgstr "Компания"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
#: apps/client/src/components/ai-actions.tsx:119
|
||||
#: apps/client/src/components/ai-actions.tsx:122
|
||||
msgid "Confident"
|
||||
msgstr "Уверен"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Потвърждаване на новата парола"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
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"
|
||||
msgstr "Копие"
|
||||
|
||||
@ -351,7 +381,12 @@ msgstr "Създайте такъв сега"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Създаване на примерна автобиография"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr "Текуща парола"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "Потребителски CSS"
|
||||
@ -360,7 +395,7 @@ msgstr "Потребителски CSS"
|
||||
msgid "Custom resume sections"
|
||||
msgstr "Персонализирани раздели на автобиографията"
|
||||
|
||||
#: apps/client/src/stores/resume.ts:47
|
||||
#: apps/client/src/stores/resume.ts:53
|
||||
msgid "Custom Section"
|
||||
msgstr "Потребителски раздел"
|
||||
|
||||
@ -386,10 +421,10 @@ msgstr "Dark"
|
||||
msgid "Date"
|
||||
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/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
|
||||
msgid "Date or Date Range"
|
||||
msgstr "Дата или диапазон от дати"
|
||||
@ -407,11 +442,15 @@ msgstr "Изтриване на"
|
||||
msgid "Delete Account"
|
||||
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/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/skills.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||
msgid "Description"
|
||||
msgstr "Описание"
|
||||
|
||||
@ -423,18 +462,18 @@ msgstr "Проектиране на автобиографии от една/н
|
||||
msgid "Disable"
|
||||
msgstr "Деактивиране на"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Деактивиране на 2FA"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Изхвърляне"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr "Документация"
|
||||
|
||||
@ -442,7 +481,7 @@ msgstr "Документация"
|
||||
msgid "Don't have an account?"
|
||||
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!"
|
||||
msgstr "Не знаете откъде да започнете? Обърнете се към документите!"
|
||||
|
||||
@ -450,7 +489,7 @@ msgstr "Не знаете откъде да започнете? Обърнете
|
||||
msgid "Don't see your language? <0>Help translate the app.</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"
|
||||
msgstr "Дарете за Reactive Resume"
|
||||
|
||||
@ -458,12 +497,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."
|
||||
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."
|
||||
msgstr "Изтеглете PDF файл с автобиографията си. Този файл може да се използва за отпечатване на автобиографията ви, за изпращане до специалисти по подбор на персонал или за качване в портали за работа."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Изтегляне на PDF"
|
||||
|
||||
@ -487,7 +525,7 @@ msgstr "Дублиране на съществуващ елемент"
|
||||
msgid "Duplicate an existing resume"
|
||||
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"
|
||||
msgstr "Редактиране на"
|
||||
|
||||
@ -498,12 +536,12 @@ msgstr "Ефекти"
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:90
|
||||
#: apps/client/src/pages/auth/register/page.tsx:141
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181
|
||||
msgid "Email"
|
||||
msgstr "Имейл"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Активиране на 2FA"
|
||||
|
||||
@ -531,6 +569,10 @@ msgstr "Въведете еднократната парола, предоста
|
||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||
msgstr "Въведете имейл адреса си и ние ще ви изпратим връзка за възстановяване на паролата, ако акаунтът съществува."
|
||||
|
||||
#: apps/client/src/pages/public/error.tsx:46
|
||||
msgid "Error {statusCode}"
|
||||
msgstr "Грешка {statusCode}"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||
msgid "Errors"
|
||||
msgstr "Грешки"
|
||||
@ -539,11 +581,22 @@ msgstr "Грешки"
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr "Дори и да не сте в състояние да дадете финансов принос, все пак можете да допринесете за промяната, като дадете на хранилището в GitHub звезда, разпространите информацията сред приятелите си или ми изпратите кратко съобщение, за да ми кажете как ви е помогнало Reactive Resume. Вашата обратна връзка и подкрепа са винаги добре дошли и много ценени!"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:271
|
||||
msgid "Expand All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Expand section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "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 "Разгледайте шаблоните, налични в Reactive Resume, и вижте автобиографиите, създадени с тях. Те могат да послужат и като примери, които да ви помогнат да създадете следващата си автобиография."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Експорт"
|
||||
@ -564,19 +617,19 @@ msgstr "Накрая,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Поправяне на правописа и граматиката"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Семейство шрифтове"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Размер на шрифта"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Подгрупа шрифтове"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Варианти на шрифта"
|
||||
|
||||
@ -584,7 +637,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."
|
||||
msgstr "Например тук може да се запише информация за компаниите, на които сте изпратили автобиографията, или връзки към описанията на длъжностите."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||
msgid "Forget"
|
||||
msgstr "Забравете"
|
||||
|
||||
@ -601,7 +654,7 @@ msgstr "Забравили сте паролата си?"
|
||||
msgid "Format"
|
||||
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?"
|
||||
msgstr "Открили сте грешка или имате идея за нова функция?"
|
||||
|
||||
@ -609,12 +662,12 @@ msgstr "Открили сте грешка или имате идея за но
|
||||
msgid "Free, forever"
|
||||
msgstr "Безплатно, завинаги"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:121
|
||||
#: apps/client/src/components/ai-actions.tsx:124
|
||||
#: apps/client/src/components/ai-actions.tsx:125
|
||||
#: apps/client/src/components/ai-actions.tsx:128
|
||||
msgid "Friendly"
|
||||
msgstr "Приятелски"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:56
|
||||
msgid "Full Name"
|
||||
msgstr "Пълно име"
|
||||
|
||||
@ -643,6 +696,10 @@ msgstr "Дайте ново име на старото си резюме."
|
||||
msgid "Go to Dashboard"
|
||||
msgstr "Отидете на таблото за управление"
|
||||
|
||||
#: apps/client/src/pages/public/error.tsx:55
|
||||
msgid "Go to home"
|
||||
msgstr "Отиди на дома"
|
||||
|
||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||
msgid "Google"
|
||||
msgstr "Google"
|
||||
@ -651,11 +708,11 @@ msgstr "Google"
|
||||
msgid "Grayscale"
|
||||
msgstr "Сива скала"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||
msgid "Grid"
|
||||
msgstr "Мрежа"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:70
|
||||
msgid "Headline"
|
||||
msgstr "Заглавие"
|
||||
|
||||
@ -668,7 +725,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr "Тук можете да актуализирате профила си, за да персонализирате работата си."
|
||||
|
||||
#: 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
|
||||
msgid "Hidden"
|
||||
msgstr "Скрит"
|
||||
@ -677,7 +734,7 @@ msgstr "Скрит"
|
||||
msgid "Hide"
|
||||
msgstr "Скрий"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Скриване на икони"
|
||||
|
||||
@ -734,7 +791,7 @@ msgstr "Подобряване на писането"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "В случай че не можете да сканирате този QR код, можете също така да копирате и поставите тази връзка в приложението си за удостоверяване на автентичност."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "В този раздел можете да промените паролата си и да активирате/деактивирате двуфакторното удостоверяване."
|
||||
|
||||
@ -743,7 +800,8 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "В този раздел можете да изтриете профила си и всички данни, свързани с него, но имайте предвид, че <0>това действие е необратимо</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx: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"
|
||||
msgstr "Информация"
|
||||
|
||||
@ -802,10 +860,10 @@ msgstr "john.doe@example.com"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||
msgid "Keywords"
|
||||
msgstr "Ключови думи"
|
||||
|
||||
@ -824,7 +882,8 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Последна актуализация {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx: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"
|
||||
msgstr "Макет"
|
||||
|
||||
@ -837,7 +896,7 @@ msgid "Letter"
|
||||
msgstr "Писмо"
|
||||
|
||||
#: 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"
|
||||
msgstr "Ниво"
|
||||
|
||||
@ -853,7 +912,7 @@ msgstr "Светлина"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Светла или тъмна тема"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Височина на линията"
|
||||
|
||||
@ -862,14 +921,14 @@ msgstr "Височина на линията"
|
||||
msgid "LinkedIn, JSON Resume, etc."
|
||||
msgstr "LinkedIn, JSON Resume и др."
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||
msgid "List"
|
||||
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/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:120
|
||||
msgid "Location"
|
||||
msgstr "Местоположение"
|
||||
|
||||
@ -897,7 +956,7 @@ msgstr "Излизане от системата"
|
||||
msgid "Lost your device?"
|
||||
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"
|
||||
msgstr "Основен"
|
||||
|
||||
@ -914,7 +973,7 @@ msgstr "март 2023 г."
|
||||
|
||||
#: 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/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
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "март 2023 - Настояще"
|
||||
@ -923,7 +982,7 @@ msgstr "март 2023 - Настояще"
|
||||
msgid "Margin"
|
||||
msgstr "Марж"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||
msgid "Max Tokens"
|
||||
msgstr "Максимален брой жетони"
|
||||
|
||||
@ -931,18 +990,18 @@ msgstr "Максимален брой жетони"
|
||||
msgid "MIT License"
|
||||
msgstr "Лиценз MIT"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||
msgid "Model"
|
||||
msgstr "Модел"
|
||||
|
||||
#: 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/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: 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/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/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/dashboard/settings/_sections/account.tsx:153
|
||||
msgid "Name"
|
||||
@ -957,7 +1016,7 @@ msgstr "Име"
|
||||
msgid "Network"
|
||||
msgstr "Мрежа"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Нова парола"
|
||||
|
||||
@ -974,6 +1033,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Забележка: Това ще намали сигурността на акаунта ви."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Бележки"
|
||||
@ -1009,16 +1069,16 @@ msgstr "OpenAI не върна никакви варианти за вашия
|
||||
msgid "OpenAI Integration"
|
||||
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"
|
||||
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/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Опции"
|
||||
|
||||
@ -1032,22 +1092,23 @@ msgid "Organization"
|
||||
msgstr "Организация"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Страница"
|
||||
|
||||
#: 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}"
|
||||
msgstr "Страница {pageNumber}"
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Парола"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||
msgid "PDF"
|
||||
msgstr "PDF"
|
||||
|
||||
@ -1055,7 +1116,7 @@ msgstr "PDF"
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr "Лични бележки за всяко резюме"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:108
|
||||
msgid "Phone"
|
||||
msgstr "Телефон"
|
||||
|
||||
@ -1109,14 +1170,12 @@ msgstr "Осъществено от <0>Simple Icons</0>"
|
||||
msgid "Primary Color"
|
||||
msgstr "Основен цвят"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Политика за поверителност"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
#: apps/client/src/components/ai-actions.tsx:113
|
||||
#: apps/client/src/components/ai-actions.tsx:116
|
||||
msgid "Professional"
|
||||
msgstr "Професионален"
|
||||
|
||||
@ -1132,7 +1191,7 @@ msgstr "Публичен"
|
||||
msgid "Publisher"
|
||||
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"
|
||||
msgstr "Повдигане на въпрос"
|
||||
|
||||
@ -1144,11 +1203,10 @@ msgstr "Повдигане на въпрос"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1175,12 +1233,12 @@ msgstr "Reactive Resume процъфтява благодарение на св
|
||||
msgid "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
|
||||
msgid "Remove"
|
||||
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"
|
||||
msgstr "Премахване на страницата"
|
||||
|
||||
@ -1199,7 +1257,7 @@ msgstr "Повторно изпращане на връзка за потвър
|
||||
msgid "Reset"
|
||||
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"
|
||||
msgstr "Нулиране на оформлението"
|
||||
|
||||
@ -1213,8 +1271,8 @@ msgid "Reset Zoom"
|
||||
msgstr "Нулиране на мащаба"
|
||||
|
||||
#: 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:37
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||
msgid "Resumes"
|
||||
msgstr "Резюмета"
|
||||
|
||||
@ -1237,11 +1295,11 @@ msgstr "Заоблени"
|
||||
msgid "Save Changes"
|
||||
msgstr "Запазване на промените"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||
msgid "Save Locally"
|
||||
msgstr "Запазване на местно ниво"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||
msgid "Saved"
|
||||
msgstr "Запазено"
|
||||
|
||||
@ -1262,15 +1320,15 @@ msgstr "Превъртете към Pan"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Превъртете, за да увеличите мащаба"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Търсене на семейство шрифтове"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Търсене на подмножество на шрифт"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Търсене на вариант на шрифт"
|
||||
|
||||
@ -1282,7 +1340,7 @@ msgstr "Търсене на език"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Сигурност с двуфакторно удостоверяване"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Защита"
|
||||
|
||||
@ -1294,7 +1352,7 @@ msgstr "Самостоятелно хостване с Docker"
|
||||
msgid "Send Email"
|
||||
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"
|
||||
msgstr "Изпратете ми съобщение"
|
||||
|
||||
@ -1314,6 +1372,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Настройка на двуфакторно удостоверяване в акаунта ви"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Споделяне на"
|
||||
@ -1330,7 +1389,7 @@ msgstr "Показване на линия на прекъсване"
|
||||
msgid "Show Page Numbers"
|
||||
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"
|
||||
msgstr "Странична лента"
|
||||
|
||||
@ -1408,6 +1467,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Започнете да изграждате автобиографията си, като й дадете име."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Статистика"
|
||||
@ -1422,17 +1482,17 @@ msgstr "Съхранявайте сигурно кодовете си за ар
|
||||
|
||||
#: 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/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/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/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "Summary"
|
||||
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!"
|
||||
msgstr "Подкрепете приложението, като дарите каквото можете!"
|
||||
|
||||
@ -1444,11 +1504,20 @@ msgstr "Поддържане на реактивно резюме"
|
||||
msgid "Supports A4/Letter page formats"
|
||||
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
|
||||
msgid "System"
|
||||
msgstr "Система"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Шаблон"
|
||||
@ -1465,15 +1534,20 @@ msgstr "Отзиви"
|
||||
msgid "Text Color"
|
||||
msgstr "Цвят на текста"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "Въведените пароли не съвпадат."
|
||||
#: apps/client/src/pages/public/error.tsx:17
|
||||
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 "Заявката е невалидна."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "Автобиографията, която искате да актуализирате, е заключена, моля, отключете я, ако искате да направите промени в нея."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1604,7 @@ msgstr "Проследяване на изгледи и изтегляния"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Двуфакторно удостоверяване на автентичността"
|
||||
|
||||
@ -1552,11 +1626,12 @@ msgid "Type of Study"
|
||||
msgstr "Вид на изследването"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Типография"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Подчертаване на връзки"
|
||||
|
||||
@ -1599,6 +1674,14 @@ msgstr "URL"
|
||||
msgid "URL must start with 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:57
|
||||
msgid "Use your backup code"
|
||||
@ -1651,7 +1734,7 @@ msgstr "Версия 4"
|
||||
msgid "Views"
|
||||
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"
|
||||
msgstr "Видим"
|
||||
|
||||
@ -1665,15 +1748,15 @@ msgstr "Проверяваме имейл адреса ви само за да
|
||||
|
||||
#: 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/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/experience.tsx:100
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:96
|
||||
msgid "Website"
|
||||
msgstr "Уебсайт"
|
||||
|
||||
@ -1681,10 +1764,14 @@ msgstr "Уебсайт"
|
||||
msgid "What's new in the latest version"
|
||||
msgstr "Какво е новото в последната версия"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
||||
#: apps/client/src/pages/public/error.tsx:26
|
||||
msgid "You are not authorized to access this page."
|
||||
msgstr "Нямате право на достъп до тази страница."
|
||||
|
||||
#: 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."
|
||||
msgstr "Можете да добавите няколко ключови думи, като ги разделите със запетая или натиснете Enter."
|
||||
|
||||
@ -1692,19 +1779,27 @@ msgstr "Можете да добавите няколко ключови дум
|
||||
msgid "You can also enter your username."
|
||||
msgstr "Можете да въведете и потребителското си име."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||
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."
|
||||
msgstr "Можете също така да се интегрирате с Ollama, като просто зададете API ключа на `sk-1234567890abcdef`, а базовия URL адрес - на вашия URL адрес на Ollama, т.е. `http://localhost:11434/v1`. Можете също така да избирате модели и да задавате максималните токени според предпочитанията си."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||
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 "Можете също така да се интегрирате с 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
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
msgstr "Можете да използвате приложния програмен интерфейс на OpenAI, за да генерирате съдържание, или да подобрите писането, докато съставяте автобиографията си."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||
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 "Можете също така да се интегрирате с 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
|
||||
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 "Можете да проследите броя на прегледите на автобиографията си или колко души са я изтеглили, като разрешите публичното споделяне."
|
||||
|
||||
#: 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."
|
||||
msgstr "Имате възможност да <0>получите собствен API ключ на OpenAI</0>. Този ключ ви дава възможност да използвате API по ваша преценка. Ако желаете да деактивирате функциите на изкуствения интелект в Reactive Resume, можете просто да премахнете ключа от настройките си."
|
||||
|
||||
@ -1721,7 +1816,7 @@ msgstr "Имате поща!"
|
||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||
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."
|
||||
msgstr "Вашият API ключ се съхранява по сигурен начин в локалното хранилище на браузъра и се използва само при извършване на заявки към OpenAI чрез официалния им SDK. Бъдете сигурни, че вашият ключ не се предава на външен сървър, освен при взаимодействие с услугите на OpenAI."
|
||||
|
||||
@ -1733,7 +1828,7 @@ msgstr "Имейл адресът ви е проверен успешно."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Вашият API ключ на OpenAI все още не е зададен. Моля, отидете в настройките на профила си, за да разрешите интеграцията с OpenAI."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Вашата парола е актуализирана успешно."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: bn\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-11-04 14:22\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Bengali\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -30,27 +30,27 @@ msgstr "{templatesCount}জীবনবৃত্তান্ত টেমপ্
|
||||
msgid "{value, plural, one {Column} other {Columns}}"
|
||||
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>"
|
||||
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>"
|
||||
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."
|
||||
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>"
|
||||
msgstr "<0>সম্প্রদায়টি প্রতিক্রিয়াশীল জীবনবৃত্তান্তের জন্য ডকুমেন্টেশন লেখার জন্য অনেক সময় ব্যয় করেছে এবং আমি নিশ্চিত যে এটি আপনাকে অ্যাপটি শুরু করতে সহায়তা করবে৷</0><1>আপনাকে শুরু করতে সাহায্য করার জন্য অনেক উদাহরণও রয়েছে এবং এমন বৈশিষ্ট্য রয়েছে যা আপনি জানেন না যেগুলি আপনাকে আপনার নিখুঁত জীবনবৃত্তান্ত তৈরি করতে সহায়তা করতে পারে।</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>দ্বি-ফ্যাক্টর প্রমাণীকরণ বর্তমানে অক্ষম আছে৷</0>আপনি আপনার অ্যাকাউন্টে একটি প্রমাণীকরণকারী অ্যাপ যোগ করে এটি সক্ষম করতে পারেন।"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>দ্বি-ফ্যাক্টর প্রমাণীকরণ সক্ষম করা হয়েছে।</0>প্রতিবার সাইন ইন করার সময় আপনাকে একটি কোড লিখতে বলা হবে।"
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "খাতা "
|
||||
msgid "Add a custom field"
|
||||
msgstr "একটি কাস্টম ক্ষেত্র যোগ করুন"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:203
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "একটি নতুন জিনিস যোগ করুন"
|
||||
@ -112,12 +112,12 @@ msgstr "একটি নতুন জিনিস যোগ করুন"
|
||||
msgid "Add a new item"
|
||||
msgstr "একটি নতুন জিনিস যোগ করুন"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:267
|
||||
msgid "Add a new section"
|
||||
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"
|
||||
msgstr "নতুন পৃষ্ঠা যোগ করুন"
|
||||
|
||||
@ -133,6 +133,14 @@ msgstr "ইতিমধ্যে একটি খাতা আছে?"
|
||||
msgid "An error occurred while validating the file."
|
||||
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
|
||||
msgid "and many more..."
|
||||
msgstr "এবং আরো অনেক..."
|
||||
@ -191,6 +199,18 @@ msgstr "{languagesCount} ভাষায় উপলব্ধ৷"
|
||||
msgid "Awarder"
|
||||
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/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
@ -209,16 +229,16 @@ msgstr "ব্যাকআপ কোড"
|
||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:58
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr "বেসিক"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
msgid "Basics"
|
||||
msgstr "বেসিক"
|
||||
|
||||
@ -246,8 +266,8 @@ msgstr "সম্প্রদায়ের দ্বারা, সম্প্
|
||||
msgid "Cancel"
|
||||
msgstr "বাতিল করুন"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
#: apps/client/src/components/ai-actions.tsx:107
|
||||
#: apps/client/src/components/ai-actions.tsx:110
|
||||
msgid "Casual"
|
||||
msgstr "নৈমিত্তিক"
|
||||
|
||||
@ -255,12 +275,16 @@ msgstr "নৈমিত্তিক"
|
||||
msgid "Center Artboard"
|
||||
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/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
#: apps/client/src/components/ai-actions.tsx:101
|
||||
msgid "Change Tone"
|
||||
msgstr ""
|
||||
|
||||
@ -288,6 +312,16 @@ msgstr ""
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:272
|
||||
msgid "Collapse All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Collapse section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
@ -296,21 +330,17 @@ msgstr ""
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
#: apps/client/src/components/ai-actions.tsx:119
|
||||
#: apps/client/src/components/ai-actions.tsx:122
|
||||
msgid "Confident"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -351,7 +381,12 @@ msgstr ""
|
||||
msgid "Create Sample Resume"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
@ -360,7 +395,7 @@ msgstr ""
|
||||
msgid "Custom resume sections"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/stores/resume.ts:47
|
||||
#: apps/client/src/stores/resume.ts:53
|
||||
msgid "Custom Section"
|
||||
msgstr ""
|
||||
|
||||
@ -386,10 +421,10 @@ msgstr ""
|
||||
msgid "Date"
|
||||
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/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
|
||||
msgid "Date or Date Range"
|
||||
msgstr ""
|
||||
@ -407,11 +442,15 @@ msgstr ""
|
||||
msgid "Delete Account"
|
||||
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/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/skills.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
@ -423,18 +462,18 @@ msgstr ""
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
@ -442,7 +481,7 @@ msgstr ""
|
||||
msgid "Don't have an account?"
|
||||
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!"
|
||||
msgstr ""
|
||||
|
||||
@ -450,7 +489,7 @@ msgstr ""
|
||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -458,12 +497,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."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr ""
|
||||
|
||||
@ -487,7 +525,7 @@ msgstr ""
|
||||
msgid "Duplicate an existing resume"
|
||||
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"
|
||||
msgstr "সম্পাদন"
|
||||
|
||||
@ -498,12 +536,12 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:90
|
||||
#: apps/client/src/pages/auth/register/page.tsx:141
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181
|
||||
msgid "Email"
|
||||
msgstr "ইমেইল"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "2FA চালু করুন"
|
||||
|
||||
@ -531,6 +569,10 @@ msgstr "নীচে আপনার অথিন্টিকেটার অ্
|
||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||
msgstr "আপনার ইমেল লিখুন এবং অ্যাকাউন্টটি বিদ্যমান থাকলে আপনার পাসওয়ার্ড পুনরায় সেট করার জন্য একটি লিঙ্ক পাঠানো হবে।"
|
||||
|
||||
#: apps/client/src/pages/public/error.tsx:46
|
||||
msgid "Error {statusCode}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||
msgid "Errors"
|
||||
msgstr ""
|
||||
@ -539,11 +581,22 @@ msgstr ""
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:271
|
||||
msgid "Expand All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Expand section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "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 ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
@ -564,19 +617,19 @@ msgstr "অবশেষে,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "বানান ও ব্যাকরণ ঠিক করুন"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "ফন্ট ফ্যামিলি"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "ফন্টের মাপ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "বিকল্প ফন্ট"
|
||||
|
||||
@ -584,7 +637,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."
|
||||
msgstr "উদাহরণস্বরূপ, আপনি কোন কোম্পানিতে এই জীবনবৃত্তান্ত পাঠিয়েছেন বা কাজের বিবরণের লিঙ্কগুলি এখানে উল্লেখ করা যেতে পারে"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||
msgid "Forget"
|
||||
msgstr "ভুলে যান"
|
||||
|
||||
@ -601,7 +654,7 @@ msgstr "আপনি কি পাসওয়ার্ড ভুলে গি
|
||||
msgid "Format"
|
||||
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?"
|
||||
msgstr "কোনো ত্রুটি/সমস্যা অথবা কোনো নতুন ফিচারের আইডিয়া রয়েছে?"
|
||||
|
||||
@ -609,12 +662,12 @@ msgstr "কোনো ত্রুটি/সমস্যা অথবা কো
|
||||
msgid "Free, forever"
|
||||
msgstr "সর্বদা সম্পূর্ণ বিনামূল্যে"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:121
|
||||
#: apps/client/src/components/ai-actions.tsx:124
|
||||
#: apps/client/src/components/ai-actions.tsx:125
|
||||
#: apps/client/src/components/ai-actions.tsx:128
|
||||
msgid "Friendly"
|
||||
msgstr "বন্ধুত্বপূর্ণ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:56
|
||||
msgid "Full Name"
|
||||
msgstr "পুরো নাম"
|
||||
|
||||
@ -643,6 +696,10 @@ msgstr "আপনার পুরানো জীবনবৃত্তান্
|
||||
msgid "Go to Dashboard"
|
||||
msgstr "ড্যাশবোর্ডে যান"
|
||||
|
||||
#: apps/client/src/pages/public/error.tsx:55
|
||||
msgid "Go to home"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||
msgid "Google"
|
||||
msgstr "গুগল"
|
||||
@ -651,11 +708,11 @@ msgstr "গুগল"
|
||||
msgid "Grayscale"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||
msgid "Grid"
|
||||
msgstr "গ্রিড"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:70
|
||||
msgid "Headline"
|
||||
msgstr "শিরোনাম"
|
||||
|
||||
@ -668,7 +725,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
msgid "Hidden"
|
||||
msgstr "গোপন করা"
|
||||
@ -677,7 +734,7 @@ msgstr "গোপন করা"
|
||||
msgid "Hide"
|
||||
msgstr "লুকানো"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "আইকনগুলো লুকিয়ে রাখুন"
|
||||
|
||||
@ -734,7 +791,7 @@ msgstr ""
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr ""
|
||||
|
||||
@ -743,7 +800,8 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx: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"
|
||||
msgstr ""
|
||||
|
||||
@ -802,10 +860,10 @@ msgstr ""
|
||||
msgid "JSON"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
@ -824,7 +882,8 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx: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"
|
||||
msgstr ""
|
||||
|
||||
@ -837,7 +896,7 @@ msgid "Letter"
|
||||
msgstr ""
|
||||
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -853,7 +912,7 @@ msgstr ""
|
||||
msgid "Light or dark theme"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr ""
|
||||
|
||||
@ -862,14 +921,14 @@ msgstr ""
|
||||
msgid "LinkedIn, JSON Resume, etc."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||
msgid "List"
|
||||
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/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:120
|
||||
msgid "Location"
|
||||
msgstr ""
|
||||
|
||||
@ -897,7 +956,7 @@ msgstr "লগআউট"
|
||||
msgid "Lost your device?"
|
||||
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"
|
||||
msgstr "প্রধান"
|
||||
|
||||
@ -914,7 +973,7 @@ msgstr "মার্চ ২০২৩"
|
||||
|
||||
#: 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/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
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "মার্চ ২০২৩ - বর্তমান"
|
||||
@ -923,7 +982,7 @@ msgstr "মার্চ ২০২৩ - বর্তমান"
|
||||
msgid "Margin"
|
||||
msgstr "মার্জিন"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||
msgid "Max Tokens"
|
||||
msgstr ""
|
||||
|
||||
@ -931,18 +990,18 @@ msgstr ""
|
||||
msgid "MIT License"
|
||||
msgstr "এমআইটি লাইসেন্স"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#: 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/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: 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/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/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/dashboard/settings/_sections/account.tsx:153
|
||||
msgid "Name"
|
||||
@ -957,7 +1016,7 @@ msgstr "নাম"
|
||||
msgid "Network"
|
||||
msgstr "নেটওয়ার্ক"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "নতুন পাসওয়ার্ড"
|
||||
|
||||
@ -974,6 +1033,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "দ্রষ্টব্য: এটি আপনার অ্যাকাউন্টকে কম সুরক্ষিত করে তুলবে।"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "দ্রষ্টব্য:"
|
||||
@ -1009,16 +1069,16 @@ msgstr ""
|
||||
msgid "OpenAI Integration"
|
||||
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"
|
||||
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/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "বিকল্পসমূহ"
|
||||
|
||||
@ -1032,22 +1092,23 @@ msgid "Organization"
|
||||
msgstr "প্রতিষ্ঠান"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "পৃষ্ঠা"
|
||||
|
||||
#: 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}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "পাসওয়ার্ড"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||
msgid "PDF"
|
||||
msgstr "পিডিএফ"
|
||||
|
||||
@ -1055,7 +1116,7 @@ msgstr "পিডিএফ"
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr "প্রতিটি জীবনবৃত্তান্তের(resume) জন্য ব্যক্তিগত মন্তব্য"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:108
|
||||
msgid "Phone"
|
||||
msgstr "ফোন"
|
||||
|
||||
@ -1109,14 +1170,12 @@ msgstr "<0>সাধারণ আইকন</0> দ্বারা চালি
|
||||
msgid "Primary Color"
|
||||
msgstr "প্রাথমিক রঙ"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||
msgid "Privacy Policy"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
#: apps/client/src/components/ai-actions.tsx:113
|
||||
#: apps/client/src/components/ai-actions.tsx:116
|
||||
msgid "Professional"
|
||||
msgstr "পেশাদার"
|
||||
|
||||
@ -1132,7 +1191,7 @@ msgstr "পাবলিক"
|
||||
msgid "Publisher"
|
||||
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"
|
||||
msgstr "ত্রুটি / সমস্যা তুলে ধরুন"
|
||||
|
||||
@ -1144,11 +1203,10 @@ msgstr "ত্রুটি / সমস্যা তুলে ধরুন"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1175,12 +1233,12 @@ msgstr ""
|
||||
msgid "Redo"
|
||||
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
|
||||
msgid "Remove"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1199,7 +1257,7 @@ msgstr ""
|
||||
msgid "Reset"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1213,8 +1271,8 @@ msgid "Reset Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: 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:37
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||
msgid "Resumes"
|
||||
msgstr ""
|
||||
|
||||
@ -1237,11 +1295,11 @@ msgstr ""
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||
msgid "Save Locally"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||
msgid "Saved"
|
||||
msgstr ""
|
||||
|
||||
@ -1262,15 +1320,15 @@ msgstr ""
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
@ -1282,7 +1340,7 @@ msgstr ""
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
@ -1294,7 +1352,7 @@ msgstr ""
|
||||
msgid "Send Email"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1314,6 +1372,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr ""
|
||||
@ -1330,7 +1389,7 @@ msgstr ""
|
||||
msgid "Show Page Numbers"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1408,6 +1467,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr ""
|
||||
@ -1422,17 +1482,17 @@ msgstr ""
|
||||
|
||||
#: 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/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/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/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "Summary"
|
||||
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!"
|
||||
msgstr ""
|
||||
|
||||
@ -1444,11 +1504,20 @@ msgstr ""
|
||||
msgid "Supports A4/Letter page formats"
|
||||
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
|
||||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
@ -1465,8 +1534,12 @@ msgstr ""
|
||||
msgid "Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
#: apps/client/src/pages/public/error.tsx:17
|
||||
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 ""
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
@ -1474,6 +1547,7 @@ msgid "The resume you want to update is locked, please unlock if you wish to mak
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1604,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
@ -1552,11 +1626,12 @@ msgid "Type of Study"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr ""
|
||||
|
||||
@ -1599,6 +1674,14 @@ msgstr ""
|
||||
msgid "URL must start with https://"
|
||||
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:57
|
||||
msgid "Use your backup code"
|
||||
@ -1651,7 +1734,7 @@ msgstr ""
|
||||
msgid "Views"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1665,15 +1748,15 @@ msgstr ""
|
||||
|
||||
#: 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/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/experience.tsx:100
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:96
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
@ -1681,10 +1764,14 @@ msgstr ""
|
||||
msgid "What's new in the latest version"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
||||
#: apps/client/src/pages/public/error.tsx:26
|
||||
msgid "You are not authorized to access this page."
|
||||
msgstr ""
|
||||
|
||||
#: 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."
|
||||
msgstr ""
|
||||
|
||||
@ -1692,19 +1779,27 @@ msgstr ""
|
||||
msgid "You can also enter your username."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||
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."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||
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 ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||
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 ""
|
||||
|
||||
#: 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."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
@ -1721,7 +1816,7 @@ msgstr ""
|
||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
@ -1733,7 +1828,7 @@ msgstr ""
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ca\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-11-04 14:22\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Catalan\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}}"
|
||||
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>"
|
||||
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>"
|
||||
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."
|
||||
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>"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr ""
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Compte"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Afegir un camp personalitzat"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:203
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Afegiu un nou element"
|
||||
@ -112,12 +112,12 @@ msgstr "Afegiu un nou element"
|
||||
msgid "Add a new item"
|
||||
msgstr "Afegiu un nou element"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:267
|
||||
msgid "Add a new section"
|
||||
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"
|
||||
msgstr "Afegeix una nova pàgina"
|
||||
|
||||
@ -133,6 +133,14 @@ msgstr "Ja tens un compte?"
|
||||
msgid "An error occurred while validating the file."
|
||||
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
|
||||
msgid "and many more..."
|
||||
msgstr ""
|
||||
@ -191,6 +199,18 @@ msgstr ""
|
||||
msgid "Awarder"
|
||||
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/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
@ -209,16 +229,16 @@ msgstr ""
|
||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||
msgid "Base URL"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:58
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
msgid "Basics"
|
||||
msgstr ""
|
||||
|
||||
@ -246,8 +266,8 @@ msgstr ""
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
#: apps/client/src/components/ai-actions.tsx:107
|
||||
#: apps/client/src/components/ai-actions.tsx:110
|
||||
msgid "Casual"
|
||||
msgstr ""
|
||||
|
||||
@ -255,12 +275,16 @@ msgstr ""
|
||||
msgid "Center Artboard"
|
||||
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/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
#: apps/client/src/components/ai-actions.tsx:101
|
||||
msgid "Change Tone"
|
||||
msgstr ""
|
||||
|
||||
@ -288,6 +312,16 @@ msgstr "Codi"
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:272
|
||||
msgid "Collapse All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Collapse section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
@ -296,21 +330,17 @@ msgstr ""
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
#: apps/client/src/components/ai-actions.tsx:119
|
||||
#: apps/client/src/components/ai-actions.tsx:122
|
||||
msgid "Confident"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -351,7 +381,12 @@ msgstr ""
|
||||
msgid "Create Sample Resume"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
@ -360,7 +395,7 @@ msgstr ""
|
||||
msgid "Custom resume sections"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/stores/resume.ts:47
|
||||
#: apps/client/src/stores/resume.ts:53
|
||||
msgid "Custom Section"
|
||||
msgstr ""
|
||||
|
||||
@ -386,10 +421,10 @@ msgstr "Fosc"
|
||||
msgid "Date"
|
||||
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/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
|
||||
msgid "Date or Date Range"
|
||||
msgstr ""
|
||||
@ -407,11 +442,15 @@ msgstr ""
|
||||
msgid "Delete Account"
|
||||
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/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/skills.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
@ -423,18 +462,18 @@ msgstr ""
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
@ -442,7 +481,7 @@ msgstr ""
|
||||
msgid "Don't have an account?"
|
||||
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!"
|
||||
msgstr ""
|
||||
|
||||
@ -450,7 +489,7 @@ msgstr ""
|
||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -458,12 +497,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."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr ""
|
||||
|
||||
@ -487,7 +525,7 @@ msgstr ""
|
||||
msgid "Duplicate an existing resume"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -498,12 +536,12 @@ msgstr "Efectes"
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:90
|
||||
#: apps/client/src/pages/auth/register/page.tsx:141
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181
|
||||
msgid "Email"
|
||||
msgstr "Correu electrònic"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr ""
|
||||
|
||||
@ -531,6 +569,10 @@ msgstr ""
|
||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/public/error.tsx:46
|
||||
msgid "Error {statusCode}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||
msgid "Errors"
|
||||
msgstr ""
|
||||
@ -539,11 +581,22 @@ msgstr ""
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:271
|
||||
msgid "Expand All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Expand section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "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 ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
@ -564,19 +617,19 @@ msgstr "Finalment,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Corregir ortografia i gramàtica"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr ""
|
||||
|
||||
@ -584,7 +637,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."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||
msgid "Forget"
|
||||
msgstr ""
|
||||
|
||||
@ -601,7 +654,7 @@ msgstr ""
|
||||
msgid "Format"
|
||||
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?"
|
||||
msgstr ""
|
||||
|
||||
@ -609,12 +662,12 @@ msgstr ""
|
||||
msgid "Free, forever"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:121
|
||||
#: apps/client/src/components/ai-actions.tsx:124
|
||||
#: apps/client/src/components/ai-actions.tsx:125
|
||||
#: apps/client/src/components/ai-actions.tsx:128
|
||||
msgid "Friendly"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:56
|
||||
msgid "Full Name"
|
||||
msgstr "Nom complet"
|
||||
|
||||
@ -643,6 +696,10 @@ msgstr ""
|
||||
msgid "Go to Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/public/error.tsx:55
|
||||
msgid "Go to home"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||
msgid "Google"
|
||||
msgstr "Google"
|
||||
@ -651,11 +708,11 @@ msgstr "Google"
|
||||
msgid "Grayscale"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||
msgid "Grid"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:70
|
||||
msgid "Headline"
|
||||
msgstr ""
|
||||
|
||||
@ -668,7 +725,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
msgid "Hidden"
|
||||
msgstr ""
|
||||
@ -677,7 +734,7 @@ msgstr ""
|
||||
msgid "Hide"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr ""
|
||||
|
||||
@ -734,7 +791,7 @@ msgstr ""
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr ""
|
||||
|
||||
@ -743,7 +800,8 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx: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"
|
||||
msgstr ""
|
||||
|
||||
@ -802,10 +860,10 @@ msgstr ""
|
||||
msgid "JSON"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
@ -824,7 +882,8 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx: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"
|
||||
msgstr ""
|
||||
|
||||
@ -837,7 +896,7 @@ msgid "Letter"
|
||||
msgstr ""
|
||||
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -853,7 +912,7 @@ msgstr ""
|
||||
msgid "Light or dark theme"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr ""
|
||||
|
||||
@ -862,14 +921,14 @@ msgstr ""
|
||||
msgid "LinkedIn, JSON Resume, etc."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||
msgid "List"
|
||||
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/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:120
|
||||
msgid "Location"
|
||||
msgstr ""
|
||||
|
||||
@ -897,7 +956,7 @@ msgstr ""
|
||||
msgid "Lost your device?"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -914,7 +973,7 @@ msgstr ""
|
||||
|
||||
#: 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/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
|
||||
msgid "March 2023 - Present"
|
||||
msgstr ""
|
||||
@ -923,7 +982,7 @@ msgstr ""
|
||||
msgid "Margin"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||
msgid "Max Tokens"
|
||||
msgstr ""
|
||||
|
||||
@ -931,18 +990,18 @@ msgstr ""
|
||||
msgid "MIT License"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: 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/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: 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/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/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/dashboard/settings/_sections/account.tsx:153
|
||||
msgid "Name"
|
||||
@ -957,7 +1016,7 @@ msgstr "Nom"
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
@ -974,6 +1033,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
@ -1009,16 +1069,16 @@ msgstr ""
|
||||
msgid "OpenAI Integration"
|
||||
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"
|
||||
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/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
@ -1032,22 +1092,23 @@ msgid "Organization"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
#: 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}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Contrasenya"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||
msgid "PDF"
|
||||
msgstr ""
|
||||
|
||||
@ -1055,7 +1116,7 @@ msgstr ""
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:108
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
@ -1109,14 +1170,12 @@ msgstr ""
|
||||
msgid "Primary Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||
msgid "Privacy Policy"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
#: apps/client/src/components/ai-actions.tsx:113
|
||||
#: apps/client/src/components/ai-actions.tsx:116
|
||||
msgid "Professional"
|
||||
msgstr ""
|
||||
|
||||
@ -1132,7 +1191,7 @@ msgstr ""
|
||||
msgid "Publisher"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1144,11 +1203,10 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1175,12 +1233,12 @@ msgstr ""
|
||||
msgid "Redo"
|
||||
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
|
||||
msgid "Remove"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1199,7 +1257,7 @@ msgstr ""
|
||||
msgid "Reset"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1213,8 +1271,8 @@ msgid "Reset Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: 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:37
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||
msgid "Resumes"
|
||||
msgstr ""
|
||||
|
||||
@ -1237,11 +1295,11 @@ msgstr ""
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||
msgid "Save Locally"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||
msgid "Saved"
|
||||
msgstr ""
|
||||
|
||||
@ -1262,15 +1320,15 @@ msgstr ""
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
@ -1282,7 +1340,7 @@ msgstr ""
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
@ -1294,7 +1352,7 @@ msgstr ""
|
||||
msgid "Send Email"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1314,6 +1372,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr ""
|
||||
@ -1330,7 +1389,7 @@ msgstr ""
|
||||
msgid "Show Page Numbers"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1408,6 +1467,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr ""
|
||||
@ -1422,17 +1482,17 @@ msgstr ""
|
||||
|
||||
#: 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/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/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/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "Summary"
|
||||
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!"
|
||||
msgstr ""
|
||||
|
||||
@ -1444,11 +1504,20 @@ msgstr ""
|
||||
msgid "Supports A4/Letter page formats"
|
||||
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
|
||||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
@ -1465,8 +1534,12 @@ msgstr ""
|
||||
msgid "Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
#: apps/client/src/pages/public/error.tsx:17
|
||||
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 ""
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
@ -1474,6 +1547,7 @@ msgid "The resume you want to update is locked, please unlock if you wish to mak
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1604,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
@ -1552,11 +1626,12 @@ msgid "Type of Study"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr ""
|
||||
|
||||
@ -1599,6 +1674,14 @@ msgstr ""
|
||||
msgid "URL must start with https://"
|
||||
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:57
|
||||
msgid "Use your backup code"
|
||||
@ -1651,7 +1734,7 @@ msgstr "Versió 4"
|
||||
msgid "Views"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1665,15 +1748,15 @@ msgstr ""
|
||||
|
||||
#: 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/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/experience.tsx:100
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:96
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
@ -1681,10 +1764,14 @@ msgstr ""
|
||||
msgid "What's new in the latest version"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
||||
#: apps/client/src/pages/public/error.tsx:26
|
||||
msgid "You are not authorized to access this page."
|
||||
msgstr ""
|
||||
|
||||
#: 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."
|
||||
msgstr ""
|
||||
|
||||
@ -1692,19 +1779,27 @@ msgstr ""
|
||||
msgid "You can also enter your username."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||
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."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||
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 ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||
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 ""
|
||||
|
||||
#: 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."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
@ -1721,7 +1816,7 @@ msgstr ""
|
||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
@ -1733,7 +1828,7 @@ msgstr ""
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: cs\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-11-04 14:22\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Czech\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}}"
|
||||
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>"
|
||||
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>"
|
||||
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."
|
||||
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>"
|
||||
msgstr "<0>Komunita strávila spoustu času psaním dokumentace k aplikaci Reactive Resume a jsem si jistý, že vám pomůže začít s aplikací pracovat.</0><1>Je zde také spousta příkladů, které vám pomohou začít, a funkcí, o kterých možná nevíte a které by vám mohly pomoci vytvořit dokonalý životopis.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>Dvoufaktorové ověřování je v současné době zakázáno.</0> Můžete jej povolit přidáním aplikace autentizátoru do svého účtu."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>Je povoleno dvoufaktorové ověřování.</0> Při každém přihlášení budete vyzváni k zadání kódu."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Účet"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Přidání vlastního pole"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:203
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Přidat novou položku"
|
||||
@ -112,12 +112,12 @@ msgstr "Přidat novou položku"
|
||||
msgid "Add a new item"
|
||||
msgstr "Přidat novou položku"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:267
|
||||
msgid "Add a new section"
|
||||
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"
|
||||
msgstr "Přidat novou stránku"
|
||||
|
||||
@ -133,6 +133,14 @@ msgstr "Již máte účet?"
|
||||
msgid "An error occurred while validating the file."
|
||||
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
|
||||
msgid "and many more..."
|
||||
msgstr "a mnoho dalších..."
|
||||
@ -191,6 +199,18 @@ msgstr "Dostupné v {languagesCount} jazycích"
|
||||
msgid "Awarder"
|
||||
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/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
@ -209,16 +229,16 @@ msgstr "Záložní kód"
|
||||
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ů."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||
msgid "Base URL"
|
||||
msgstr "Základní adresa URL"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:58
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr "Základní"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
msgid "Basics"
|
||||
msgstr "Základní"
|
||||
|
||||
@ -246,8 +266,8 @@ msgstr "Vytvořeno komunitou pro komunitu."
|
||||
msgid "Cancel"
|
||||
msgstr "Zrušit"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
#: apps/client/src/components/ai-actions.tsx:107
|
||||
#: apps/client/src/components/ai-actions.tsx:110
|
||||
msgid "Casual"
|
||||
msgstr "Formální"
|
||||
|
||||
@ -255,12 +275,16 @@ msgstr "Formální"
|
||||
msgid "Center 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/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Změnit heslo"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
#: apps/client/src/components/ai-actions.tsx:101
|
||||
msgid "Change Tone"
|
||||
msgstr "Změna tónu"
|
||||
|
||||
@ -288,6 +312,16 @@ msgstr "Kód"
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr "Kód musí být přesně 6 číslic dlouhý."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:272
|
||||
msgid "Collapse All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Collapse section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136
|
||||
msgid "Columns"
|
||||
msgstr "Sloupce"
|
||||
@ -296,21 +330,17 @@ msgstr "Sloupce"
|
||||
msgid "Company"
|
||||
msgstr "Společnost"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
#: apps/client/src/components/ai-actions.tsx:119
|
||||
#: apps/client/src/components/ai-actions.tsx:122
|
||||
msgid "Confident"
|
||||
msgstr "Spolehlivost"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Potvrďte nové heslo"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
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"
|
||||
msgstr "Kopírovat"
|
||||
|
||||
@ -351,7 +381,12 @@ msgstr "Vytvořit nyní"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Vytvořit ukázkový životopis"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr "Aktuální heslo"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "Vlastní CSS"
|
||||
@ -360,7 +395,7 @@ msgstr "Vlastní CSS"
|
||||
msgid "Custom resume sections"
|
||||
msgstr "Vlastní sekce životopisů"
|
||||
|
||||
#: apps/client/src/stores/resume.ts:47
|
||||
#: apps/client/src/stores/resume.ts:53
|
||||
msgid "Custom Section"
|
||||
msgstr "Vlastní sekce"
|
||||
|
||||
@ -386,10 +421,10 @@ msgstr "Tmavý"
|
||||
msgid "Date"
|
||||
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/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
|
||||
msgid "Date or Date Range"
|
||||
msgstr "Časový rozsah"
|
||||
@ -407,11 +442,15 @@ msgstr "Vymazat"
|
||||
msgid "Delete Account"
|
||||
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/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/skills.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||
msgid "Description"
|
||||
msgstr "L 343, 22.12.2009, s. 1)."
|
||||
|
||||
@ -423,18 +462,18 @@ msgstr "Obnovení jedné nebo více stránek"
|
||||
msgid "Disable"
|
||||
msgstr "Zakázat"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Zakázat 2FA"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Zahodit"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentace"
|
||||
|
||||
@ -442,7 +481,7 @@ msgstr "Dokumentace"
|
||||
msgid "Don't have an account?"
|
||||
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!"
|
||||
msgstr "Nevíte kde začínajet? Stiskněte dokumenty!"
|
||||
|
||||
@ -450,7 +489,7 @@ msgstr "Nevíte kde začínajet? Stiskněte dokumenty!"
|
||||
msgid "Don't see your language? <0>Help translate the app.</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"
|
||||
msgstr "Přispět na opětovné spuštění"
|
||||
|
||||
@ -458,12 +497,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."
|
||||
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."
|
||||
msgstr "Stáhněte si svůj životopis ve formátu PDF. Tento soubor lze použít k vytištění životopisu, jeho odeslání náborářům nebo nahrání na pracovní portály."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Stáhnout PDF"
|
||||
|
||||
@ -487,7 +525,7 @@ msgstr "Duplikovat existující položku"
|
||||
msgid "Duplicate an existing resume"
|
||||
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"
|
||||
msgstr "Upravit"
|
||||
|
||||
@ -498,12 +536,12 @@ msgstr "Efekty"
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:90
|
||||
#: apps/client/src/pages/auth/register/page.tsx:141
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181
|
||||
msgid "Email"
|
||||
msgstr "e-mail"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Aktivovat overeni 2FA"
|
||||
|
||||
@ -531,6 +569,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."
|
||||
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
|
||||
msgid "Errors"
|
||||
msgstr "Chyby"
|
||||
@ -539,11 +581,22 @@ msgstr "Chyby"
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr "I když nejste schopni přispět finančně, můžete změnit tím, že budete mít GitHubu hvězdu, šíří slovo svým přátelům nebo shazuje rychlou zprávu, aby mi dalo vědět, jak vám pomohl Reactive Resume Vaše zpětná vazba a podpora jsou vždy vítány a oceňovány!"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:271
|
||||
msgid "Expand All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Expand section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "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 "Prozkoumejte šablony dostupné v Reactive Resume a podívejte se na obnovení s nimi. Mohli by také sloužit jako příklady, které by pomohly řídit vytvoření vašeho dalšího životopisu."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Exportovat"
|
||||
@ -564,19 +617,19 @@ msgstr "Konečně"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Fix Spelling & Grammar"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Rodina písma"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Font Size"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Podmnožina písma"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Font Variants"
|
||||
|
||||
@ -584,7 +637,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."
|
||||
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"
|
||||
msgstr "Zapomenout"
|
||||
|
||||
@ -601,7 +654,7 @@ msgstr "Zapomněli jste heslo?"
|
||||
msgid "Format"
|
||||
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?"
|
||||
msgstr "Nalezena chyba, nebo máte nápad na novou funkci?"
|
||||
|
||||
@ -609,12 +662,12 @@ msgstr "Nalezena chyba, nebo máte nápad na novou funkci?"
|
||||
msgid "Free, forever"
|
||||
msgstr "Volné, navždy"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:121
|
||||
#: apps/client/src/components/ai-actions.tsx:124
|
||||
#: apps/client/src/components/ai-actions.tsx:125
|
||||
#: apps/client/src/components/ai-actions.tsx:128
|
||||
msgid "Friendly"
|
||||
msgstr "Přátelské"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:56
|
||||
msgid "Full Name"
|
||||
msgstr "Celé jméno"
|
||||
|
||||
@ -643,6 +696,10 @@ msgstr "Dejte svému starému obnovit nový název."
|
||||
msgid "Go to Dashboard"
|
||||
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
|
||||
msgid "Google"
|
||||
msgstr "Google"
|
||||
@ -651,11 +708,11 @@ msgstr "Google"
|
||||
msgid "Grayscale"
|
||||
msgstr "Grayscale"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||
msgid "Grid"
|
||||
msgstr "Mřížka"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:70
|
||||
msgid "Headline"
|
||||
msgstr "Nadpis"
|
||||
|
||||
@ -668,7 +725,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."
|
||||
|
||||
#: 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
|
||||
msgid "Hidden"
|
||||
msgstr "Hidden"
|
||||
@ -677,7 +734,7 @@ msgstr "Hidden"
|
||||
msgid "Hide"
|
||||
msgstr "Skrýt"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Skrýt ikony"
|
||||
|
||||
@ -734,7 +791,7 @@ msgstr "Zlepšit psaní"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "V případě, že nemůžete naskenovat tento QR kód, můžete také zkopírovat tento odkaz do vaší ověřovací aplikace."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "V této sekci můžete změnit své heslo a povolit/zakázat dvoufaktorové ověřování."
|
||||
|
||||
@ -743,7 +800,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>."
|
||||
|
||||
#: 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"
|
||||
msgstr "Informace"
|
||||
|
||||
@ -802,10 +860,10 @@ msgstr "john.doe@example.com"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||
msgid "Keywords"
|
||||
msgstr "Klíčová slova"
|
||||
|
||||
@ -824,7 +882,8 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Naposledy aktualizováno {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx: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"
|
||||
msgstr "Rozložení"
|
||||
|
||||
@ -837,7 +896,7 @@ msgid "Letter"
|
||||
msgstr "Dopis"
|
||||
|
||||
#: 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"
|
||||
msgstr "Úrovně"
|
||||
|
||||
@ -853,7 +912,7 @@ msgstr "Světlý"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Světlý nebo tmavý motiv"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Výška řádku"
|
||||
|
||||
@ -862,14 +921,14 @@ msgstr "Výška řádku"
|
||||
msgid "LinkedIn, JSON Resume, etc."
|
||||
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"
|
||||
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/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:120
|
||||
msgid "Location"
|
||||
msgstr "Poloha"
|
||||
|
||||
@ -897,7 +956,7 @@ msgstr "Odhlásit se"
|
||||
msgid "Lost your device?"
|
||||
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"
|
||||
msgstr "Hlavní"
|
||||
|
||||
@ -914,7 +973,7 @@ msgstr "březen 2023"
|
||||
|
||||
#: 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/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
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "březen 2023 - Současný"
|
||||
@ -923,7 +982,7 @@ msgstr "březen 2023 - Současný"
|
||||
msgid "Margin"
|
||||
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"
|
||||
msgstr "Maximální počet žetonů"
|
||||
|
||||
@ -931,18 +990,18 @@ msgstr "Maximální počet žetonů"
|
||||
msgid "MIT License"
|
||||
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"
|
||||
msgstr "Model"
|
||||
|
||||
#: 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/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: 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/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/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/dashboard/settings/_sections/account.tsx:153
|
||||
msgid "Name"
|
||||
@ -957,7 +1016,7 @@ msgstr "Název"
|
||||
msgid "Network"
|
||||
msgstr "Síť"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Nové heslo"
|
||||
|
||||
@ -974,6 +1033,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Poznámka: Váš účet bude méně bezpečný."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Poznámky"
|
||||
@ -1009,16 +1069,16 @@ msgstr "OpenAI nevrátil žádné volby pro tvůj text."
|
||||
msgid "OpenAI Integration"
|
||||
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"
|
||||
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/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Možnosti"
|
||||
|
||||
@ -1032,22 +1092,23 @@ msgid "Organization"
|
||||
msgstr "Organizace"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Stránka"
|
||||
|
||||
#: 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}"
|
||||
msgstr "Stránka {pageNumber}"
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Heslo"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||
msgid "PDF"
|
||||
msgstr "PDF"
|
||||
|
||||
@ -1055,7 +1116,7 @@ msgstr "PDF"
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr "Osobní poznámky pro každé obnovení"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:108
|
||||
msgid "Phone"
|
||||
msgstr "Telefon"
|
||||
|
||||
@ -1109,14 +1170,12 @@ msgstr "Běží o <0>Jednoduchý Icons</0>"
|
||||
msgid "Primary Color"
|
||||
msgstr "Primární barva"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Ochrana osobních údajů"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
#: apps/client/src/components/ai-actions.tsx:113
|
||||
#: apps/client/src/components/ai-actions.tsx:116
|
||||
msgid "Professional"
|
||||
msgstr "Profesionální"
|
||||
|
||||
@ -1132,7 +1191,7 @@ msgstr "Veřejnost"
|
||||
msgid "Publisher"
|
||||
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"
|
||||
msgstr "Vyvolat problém"
|
||||
|
||||
@ -1144,11 +1203,10 @@ msgstr "Vyvolat problém"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1175,12 +1233,12 @@ msgstr "Reactive Resume vzkvétá díky jeho živé komunitě. Tento projekt vd
|
||||
msgid "Redo"
|
||||
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
|
||||
msgid "Remove"
|
||||
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"
|
||||
msgstr "Odstranit stránku"
|
||||
|
||||
@ -1199,7 +1257,7 @@ msgstr "Znovu odeslat odkaz pro potvrzení e-mailu"
|
||||
msgid "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"
|
||||
msgstr "Obnovit rozvržení"
|
||||
|
||||
@ -1213,8 +1271,8 @@ msgid "Reset Zoom"
|
||||
msgstr "Reset Zoom"
|
||||
|
||||
#: 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:37
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||
msgid "Resumes"
|
||||
msgstr "Obnovení"
|
||||
|
||||
@ -1237,11 +1295,11 @@ msgstr "Zaobleno"
|
||||
msgid "Save Changes"
|
||||
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"
|
||||
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"
|
||||
msgstr "Uloženo"
|
||||
|
||||
@ -1262,15 +1320,15 @@ msgstr "Posuňte se na Pan"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Posouvání pro zvětšení"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Hledat rodinu písem"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Hledat podsadu písma"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Hledat variantu písma"
|
||||
|
||||
@ -1282,7 +1340,7 @@ msgstr "Hledat jazyk"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Zabezpečit s dvoufaktorovým ověřením"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Zabezpečení"
|
||||
|
||||
@ -1294,7 +1352,7 @@ msgstr "Samostatně hostitel s Docker"
|
||||
msgid "Send Email"
|
||||
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"
|
||||
msgstr "Pošlete mi zprávu"
|
||||
|
||||
@ -1314,6 +1372,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Nastavení dvoufaktorového ověřování na vašem účtu"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Sdílení"
|
||||
@ -1330,7 +1389,7 @@ msgstr "Zobrazit řádek lomu"
|
||||
msgid "Show Page Numbers"
|
||||
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"
|
||||
msgstr "Sidebar"
|
||||
|
||||
@ -1408,6 +1467,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Začněte budovat svůj životopis zadáním jména."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Statistiky"
|
||||
@ -1422,17 +1482,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/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/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/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "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!"
|
||||
msgstr "Podpořte aplikaci tím, že přispějete, co můžete!"
|
||||
|
||||
@ -1444,11 +1504,20 @@ msgstr "Podpora reaktivního obnovení"
|
||||
msgid "Supports A4/Letter page formats"
|
||||
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
|
||||
msgid "System"
|
||||
msgstr "Systém"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Šablona"
|
||||
@ -1465,15 +1534,20 @@ msgstr "Referenční údaje"
|
||||
msgid "Text Color"
|
||||
msgstr "Barva textu"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "Zadaná hesla se neshodují."
|
||||
#: apps/client/src/pages/public/error.tsx:17
|
||||
msgid "The page you're looking for doesn't exist."
|
||||
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
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "Pokračování aktualizace, které chcete aktualizovat, je uzamknuto, pokud chcete provést nějaké změny."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1604,7 @@ msgstr "Sledovat zobrazení a stahování"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Dvoufaktorové ověření"
|
||||
|
||||
@ -1552,11 +1626,12 @@ msgid "Type of Study"
|
||||
msgstr "Typ studia"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Typografie"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Podtrhnout odkazy"
|
||||
|
||||
@ -1599,6 +1674,14 @@ msgstr "URL"
|
||||
msgid "URL must start with 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:57
|
||||
msgid "Use your backup code"
|
||||
@ -1651,7 +1734,7 @@ msgstr "Verze 4"
|
||||
msgid "Views"
|
||||
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"
|
||||
msgstr "Viditelné"
|
||||
|
||||
@ -1665,15 +1748,15 @@ 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/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/experience.tsx:100
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:96
|
||||
msgid "Website"
|
||||
msgstr "Webová stránka"
|
||||
|
||||
@ -1681,10 +1764,14 @@ msgstr "Webová stránka"
|
||||
msgid "What's new in the latest version"
|
||||
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/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
||||
#: apps/client/src/pages/public/error.tsx:26
|
||||
msgid "You are not authorized to access this page."
|
||||
msgstr "Nejste oprávněni k přístupu na tuto stránku."
|
||||
|
||||
#: 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."
|
||||
msgstr "Můžete přidat více klíčových slov oddělením čárkou nebo stisknutím klávesy enter."
|
||||
|
||||
@ -1692,19 +1779,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."
|
||||
msgstr "Můžete také zadat své uživatelské jméno."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||
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."
|
||||
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í."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||
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 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
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
msgstr "Můžete využít OpenAI API, abyste vám pomohli vygenerovat obsah nebo vylepšit psaní při psaní vašeho obnovení."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||
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 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
|
||||
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í."
|
||||
|
||||
#: 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."
|
||||
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 +1816,7 @@ msgstr "Máš email!"
|
||||
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!"
|
||||
|
||||
#: 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."
|
||||
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 +1828,7 @@ msgstr "Vaše e-mailová adresa byla úspěšně ověřena."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Váš OpenAI API klíč zatím nebyl nastaven. Přejděte do nastavení účtu a povolte OpenAI integraci."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Vaše heslo bylo úspěšně aktualizováno."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: da\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-11-04 14:22\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Danish\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}}"
|
||||
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>"
|
||||
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>"
|
||||
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."
|
||||
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>"
|
||||
msgstr "<0>Fællesskabet har brugt meget tid på at skrive dokumentationen til Reactive Resume, og jeg er sikker på, at det vil hjælpe dig i gang med appen.</0> <1>Der er også en masse eksempler til at hjælpe dig i gang, og funktioner, som du måske ikke kender til, som kan hjælpe dig med at opbygge dit perfekte CV.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>Tofaktorgodkendelse er i øjeblikket deaktiveret.</0> Du kan aktivere det ved at tilføje en godkendelsesapp til din konto."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>Tofaktorgodkendelse er aktiveret.</0> Du bliver bedt om at indtaste en kode, hver gang du logger ind."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Konto"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Tilføj et brugerdefineret felt"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:203
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Tilføj et nyt element"
|
||||
@ -112,12 +112,12 @@ msgstr "Tilføj et nyt element"
|
||||
msgid "Add a new item"
|
||||
msgstr "Tilføj et nyt element"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:267
|
||||
msgid "Add a new section"
|
||||
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"
|
||||
msgstr "Tilføj ny side"
|
||||
|
||||
@ -133,6 +133,14 @@ msgstr "Har du allerede en bruger?"
|
||||
msgid "An error occurred while validating the file."
|
||||
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
|
||||
msgid "and many more..."
|
||||
msgstr "og mange flere..."
|
||||
@ -191,6 +199,18 @@ msgstr "Tilgængelig på {languagesCount} sprog"
|
||||
msgid "Awarder"
|
||||
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/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
@ -209,16 +229,16 @@ msgstr "Backup kode"
|
||||
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."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||
msgid "Base URL"
|
||||
msgstr "Basis-URL"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:58
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr "Grundlæggende"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
msgid "Basics"
|
||||
msgstr "Grundlæggende"
|
||||
|
||||
@ -246,8 +266,8 @@ msgstr "Af fællesskabet, for fællesskabet."
|
||||
msgid "Cancel"
|
||||
msgstr "Annuller"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
#: apps/client/src/components/ai-actions.tsx:107
|
||||
#: apps/client/src/components/ai-actions.tsx:110
|
||||
msgid "Casual"
|
||||
msgstr "Uformel"
|
||||
|
||||
@ -255,12 +275,16 @@ msgstr "Uformel"
|
||||
msgid "Center Artboard"
|
||||
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/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Skift adgangskode"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
#: apps/client/src/components/ai-actions.tsx:101
|
||||
msgid "Change Tone"
|
||||
msgstr "Skift tone"
|
||||
|
||||
@ -288,6 +312,16 @@ msgstr "Kode"
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr "Koden skal være præcis 6 cifre lang."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:272
|
||||
msgid "Collapse All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Collapse section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136
|
||||
msgid "Columns"
|
||||
msgstr "Kolonner"
|
||||
@ -296,21 +330,17 @@ msgstr "Kolonner"
|
||||
msgid "Company"
|
||||
msgstr "Virksomhed"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
#: apps/client/src/components/ai-actions.tsx:119
|
||||
#: apps/client/src/components/ai-actions.tsx:122
|
||||
msgid "Confident"
|
||||
msgstr "Selvsikker"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Bekræft ny adgangskode"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
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"
|
||||
msgstr "Kopiér"
|
||||
|
||||
@ -351,7 +381,12 @@ msgstr "Opret en nu"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Opret eksempel på CV"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr "Nuværende adgangskode"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "Brugerdefineret CSS"
|
||||
@ -360,7 +395,7 @@ msgstr "Brugerdefineret CSS"
|
||||
msgid "Custom resume sections"
|
||||
msgstr "Brugerdefinerede CV-sektioner"
|
||||
|
||||
#: apps/client/src/stores/resume.ts:47
|
||||
#: apps/client/src/stores/resume.ts:53
|
||||
msgid "Custom Section"
|
||||
msgstr "Brugerdefineret sektion"
|
||||
|
||||
@ -386,10 +421,10 @@ msgstr "Mørk"
|
||||
msgid "Date"
|
||||
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/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
|
||||
msgid "Date or Date Range"
|
||||
msgstr "Dato eller datointerval"
|
||||
@ -407,11 +442,15 @@ msgstr "Slet"
|
||||
msgid "Delete Account"
|
||||
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/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/skills.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||
msgid "Description"
|
||||
msgstr "Beskriveslse"
|
||||
|
||||
@ -423,18 +462,18 @@ msgstr "Design af enkelt- og flersidede CV'er"
|
||||
msgid "Disable"
|
||||
msgstr "Deaktivér"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Deaktivér 2FA"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Kassér"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentation"
|
||||
|
||||
@ -442,7 +481,7 @@ msgstr "Dokumentation"
|
||||
msgid "Don't have an account?"
|
||||
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!"
|
||||
msgstr "Ved du ikke, hvor du skal begynde? Tryk på dokumenterne!"
|
||||
|
||||
@ -450,7 +489,7 @@ msgstr "Ved du ikke, hvor du skal begynde? Tryk på dokumenterne!"
|
||||
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>"
|
||||
|
||||
#: 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"
|
||||
msgstr "Donér til Reactive Resume"
|
||||
|
||||
@ -458,12 +497,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."
|
||||
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."
|
||||
msgstr "Download en PDF af dit CV. Denne fil kan bruges til at udskrive dit CV, sende det til rekrutteringsfolk eller uploade det på jobportaler."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Download PDF"
|
||||
|
||||
@ -487,7 +525,7 @@ msgstr "Duplikér et eksisterende element"
|
||||
msgid "Duplicate an existing resume"
|
||||
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"
|
||||
msgstr "Rediger"
|
||||
|
||||
@ -498,12 +536,12 @@ msgstr "Effekter"
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:90
|
||||
#: apps/client/src/pages/auth/register/page.tsx:141
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181
|
||||
msgid "Email"
|
||||
msgstr "Email"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Aktiver 2FA"
|
||||
|
||||
@ -531,6 +569,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."
|
||||
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
|
||||
msgid "Errors"
|
||||
msgstr "Fejl"
|
||||
@ -539,11 +581,22 @@ msgstr "Fejl"
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr "Selvom du ikke er i stand til at bidrage økonomisk, kan du stadig gøre en forskel ved at give GitHub-lageret en stjerne, sprede budskabet til dine venner eller sende en hurtig besked for at fortælle mig, hvordan Reactive Resume har hjulpet dig. Din feedback og støtte er altid velkommen og meget værdsat!"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:271
|
||||
msgid "Expand All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Expand section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "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 "Udforsk de tilgængelige skabeloner i Reactive Resume og se de CV'er der er lavet med dem. De kan også tjene som eksempler til at hjælpe med at guide oprettelsen af dit næste CV."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Eksportér"
|
||||
@ -564,19 +617,19 @@ msgstr "Endelig,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Ret stavning og grammatik"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Skrifttype"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Skriftstørrelse"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Skrifttype-undersæt"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Skrifttype-varianter"
|
||||
|
||||
@ -584,7 +637,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."
|
||||
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"
|
||||
msgstr "Glem"
|
||||
|
||||
@ -601,7 +654,7 @@ msgstr "Har du glemt din adgangskode?"
|
||||
msgid "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?"
|
||||
msgstr "Har du fundet en fejl, eller har du en idé til en ny funktion?"
|
||||
|
||||
@ -609,12 +662,12 @@ msgstr "Har du fundet en fejl, eller har du en idé til en ny funktion?"
|
||||
msgid "Free, forever"
|
||||
msgstr "Gratis for evigt"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:121
|
||||
#: apps/client/src/components/ai-actions.tsx:124
|
||||
#: apps/client/src/components/ai-actions.tsx:125
|
||||
#: apps/client/src/components/ai-actions.tsx:128
|
||||
msgid "Friendly"
|
||||
msgstr "Venlig"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:56
|
||||
msgid "Full Name"
|
||||
msgstr "Fulde navn"
|
||||
|
||||
@ -643,6 +696,10 @@ msgstr "Giv dit gamle CV et nyt navn."
|
||||
msgid "Go to 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
|
||||
msgid "Google"
|
||||
msgstr "Google"
|
||||
@ -651,11 +708,11 @@ msgstr "Google"
|
||||
msgid "Grayscale"
|
||||
msgstr "Gråtoner"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||
msgid "Grid"
|
||||
msgstr "Gitter"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:70
|
||||
msgid "Headline"
|
||||
msgstr "Overskrift"
|
||||
|
||||
@ -668,7 +725,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."
|
||||
|
||||
#: 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
|
||||
msgid "Hidden"
|
||||
msgstr "Skjult"
|
||||
@ -677,7 +734,7 @@ msgstr "Skjult"
|
||||
msgid "Hide"
|
||||
msgstr "Skjul"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Skjul ikoner"
|
||||
|
||||
@ -734,7 +791,7 @@ msgstr "Forbedre skrivning"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Hvis du ikke kan scanne denne QR-kode, kan du også copy-paste dette link i din authenticator-app."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "I dette afsnit kan du ændre din adgangskode og aktivere/deaktivere to-faktor godkendelse."
|
||||
|
||||
@ -743,7 +800,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>."
|
||||
|
||||
#: 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"
|
||||
msgstr "Information"
|
||||
|
||||
@ -802,10 +860,10 @@ msgstr "anders.andersen@example.com"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||
msgid "Keywords"
|
||||
msgstr "Nøgleord"
|
||||
|
||||
@ -824,7 +882,8 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Sidst opdateret {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx: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"
|
||||
msgstr "Layout"
|
||||
|
||||
@ -837,7 +896,7 @@ msgid "Letter"
|
||||
msgstr "Brev"
|
||||
|
||||
#: 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"
|
||||
msgstr "Niveau"
|
||||
|
||||
@ -853,7 +912,7 @@ msgstr "Lyst"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Lyst eller mørkt tema"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Linjehøjde"
|
||||
|
||||
@ -862,14 +921,14 @@ msgstr "Linjehøjde"
|
||||
msgid "LinkedIn, JSON Resume, etc."
|
||||
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"
|
||||
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/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:120
|
||||
msgid "Location"
|
||||
msgstr "Beliggenhed"
|
||||
|
||||
@ -897,7 +956,7 @@ msgstr "Log ud"
|
||||
msgid "Lost your device?"
|
||||
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"
|
||||
msgstr "Hovedmenu"
|
||||
|
||||
@ -914,7 +973,7 @@ msgstr "Marts 2023"
|
||||
|
||||
#: 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/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
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "Marts 2023 - nutid"
|
||||
@ -923,7 +982,7 @@ msgstr "Marts 2023 - nutid"
|
||||
msgid "Margin"
|
||||
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"
|
||||
msgstr "Max Tokens"
|
||||
|
||||
@ -931,18 +990,18 @@ msgstr "Max Tokens"
|
||||
msgid "MIT License"
|
||||
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"
|
||||
msgstr "Model"
|
||||
|
||||
#: 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/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: 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/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/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/dashboard/settings/_sections/account.tsx:153
|
||||
msgid "Name"
|
||||
@ -957,7 +1016,7 @@ msgstr "Navn"
|
||||
msgid "Network"
|
||||
msgstr "Netværk"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Ny adgangskode"
|
||||
|
||||
@ -974,6 +1033,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Bemærk: Dette vil gøre din konto mindre sikker."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Noter"
|
||||
@ -1009,16 +1069,16 @@ msgstr "OpenAI returnerede ikke nogen valgmuligheder for din tekst."
|
||||
msgid "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"
|
||||
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/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Indstillinger"
|
||||
|
||||
@ -1032,22 +1092,23 @@ msgid "Organization"
|
||||
msgstr "Organisation"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Side"
|
||||
|
||||
#: 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}"
|
||||
msgstr "Side {pageNumber}"
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Adgangskode"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||
msgid "PDF"
|
||||
msgstr "PDF"
|
||||
|
||||
@ -1055,7 +1116,7 @@ msgstr "PDF"
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr "Personlige noter til hvert CV"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:108
|
||||
msgid "Phone"
|
||||
msgstr "Telefon"
|
||||
|
||||
@ -1109,14 +1170,12 @@ msgstr "Drevet af <0>Simple Icons</0>"
|
||||
msgid "Primary Color"
|
||||
msgstr "Primær farve"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Fortrolighedspolitik"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
#: apps/client/src/components/ai-actions.tsx:113
|
||||
#: apps/client/src/components/ai-actions.tsx:116
|
||||
msgid "Professional"
|
||||
msgstr "Professionel"
|
||||
|
||||
@ -1132,7 +1191,7 @@ msgstr "Offentlig"
|
||||
msgid "Publisher"
|
||||
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"
|
||||
msgstr "Løft et problem"
|
||||
|
||||
@ -1144,11 +1203,10 @@ msgstr "Løft et problem"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1175,12 +1233,12 @@ msgstr "Reactive Resume trives takket være sit livlige fællesskab. Dette proje
|
||||
msgid "Redo"
|
||||
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
|
||||
msgid "Remove"
|
||||
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"
|
||||
msgstr "Fjern side"
|
||||
|
||||
@ -1199,7 +1257,7 @@ msgstr "Send bekræftelseslink til e-mail igen"
|
||||
msgid "Reset"
|
||||
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"
|
||||
msgstr "Nulstil opsætning"
|
||||
|
||||
@ -1213,8 +1271,8 @@ msgid "Reset Zoom"
|
||||
msgstr "Nulstil zoom"
|
||||
|
||||
#: 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:37
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||
msgid "Resumes"
|
||||
msgstr "Resumé"
|
||||
|
||||
@ -1237,11 +1295,11 @@ msgstr "Afrundet"
|
||||
msgid "Save Changes"
|
||||
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"
|
||||
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"
|
||||
msgstr "Gemt"
|
||||
|
||||
@ -1262,15 +1320,15 @@ msgstr "Rul til Pan"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Rul til zoom"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Søg efter en skrifttypefamilie"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Søg efter et skrifttypeundersæt"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Søg efter en skrifttypevariant"
|
||||
|
||||
@ -1282,7 +1340,7 @@ msgstr "Søg efter et sprog"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Sikker med to-faktor godkendelse"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Sikkerhed"
|
||||
|
||||
@ -1294,7 +1352,7 @@ msgstr "Selv-host med Docker"
|
||||
msgid "Send Email"
|
||||
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"
|
||||
msgstr "Send mig en besked"
|
||||
|
||||
@ -1314,6 +1372,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Opsæt to-faktor godkendelse på din konto"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Deling"
|
||||
@ -1330,7 +1389,7 @@ msgstr "Vis Linjebrud"
|
||||
msgid "Show Page Numbers"
|
||||
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"
|
||||
msgstr "Sidebjælke"
|
||||
|
||||
@ -1408,6 +1467,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Begynd at opbygge dit CV ved at give det et navn."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Statistik"
|
||||
@ -1422,17 +1482,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/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/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/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "Summary"
|
||||
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!"
|
||||
msgstr "Støt appen ved at donere, hvad du kan!"
|
||||
|
||||
@ -1444,11 +1504,20 @@ msgstr "Støtter Reactive Resume"
|
||||
msgid "Supports A4/Letter page formats"
|
||||
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
|
||||
msgid "System"
|
||||
msgstr "System"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Skabelon"
|
||||
@ -1465,15 +1534,20 @@ msgstr "Udtalelser"
|
||||
msgid "Text Color"
|
||||
msgstr "Tekstfarve"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "De indtastede adgangskoder matcher ikke."
|
||||
#: apps/client/src/pages/public/error.tsx:17
|
||||
msgid "The page you're looking for doesn't exist."
|
||||
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
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "Det CV, du vil opdatere, er låst. Lås op, hvis du vil foretage ændringer i det."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1604,7 @@ msgstr "Spor visninger og downloads"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "To-faktor godkendelse"
|
||||
|
||||
@ -1552,11 +1626,12 @@ msgid "Type of Study"
|
||||
msgstr "Type af studie"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Typografi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Understreg links"
|
||||
|
||||
@ -1599,6 +1674,14 @@ msgstr "URL"
|
||||
msgid "URL must start with 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:57
|
||||
msgid "Use your backup code"
|
||||
@ -1651,7 +1734,7 @@ msgstr "Version 4"
|
||||
msgid "Views"
|
||||
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"
|
||||
msgstr "Synlig"
|
||||
|
||||
@ -1665,15 +1748,15 @@ 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/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/experience.tsx:100
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:96
|
||||
msgid "Website"
|
||||
msgstr "Hjemmeside"
|
||||
|
||||
@ -1681,10 +1764,14 @@ msgstr "Hjemmeside"
|
||||
msgid "What's new in the latest 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/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
||||
#: apps/client/src/pages/public/error.tsx:26
|
||||
msgid "You are not authorized to access this page."
|
||||
msgstr "Du har ikke adgang til denne side."
|
||||
|
||||
#: 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."
|
||||
msgstr "Du kan tilføje flere søgeord ved at adskille dem med et komma eller trykke på enter."
|
||||
|
||||
@ -1692,19 +1779,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."
|
||||
msgstr "Du kan også indtaste dit brugernavn."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||
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."
|
||||
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."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||
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 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
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
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."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||
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 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
|
||||
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."
|
||||
|
||||
#: 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."
|
||||
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 +1816,7 @@ msgstr "Du har post!"
|
||||
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!"
|
||||
|
||||
#: 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."
|
||||
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 +1828,7 @@ msgstr "Din e-mailadresse er blevet verificeret."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Din OpenAI API-nøgle er ikke blevet indstillet endnu. Gå til dine kontoindstillinger for at aktivere OpenAI-integration."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Din adgangskode er blevet ændret."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: de\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-11-04 14:22\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: German\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}}"
|
||||
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>"
|
||||
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>"
|
||||
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."
|
||||
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>"
|
||||
msgstr "<0>Die Community hat viel Zeit mit der Erstellung der Dokumentation für Reactive Resume verbracht. Ich bin mir sicher, dass sie dir beim Einstieg in die App helfen wird.</0><1>Darin findest du viele Beispiele, sowie Erklärungen für Funktionen, von denen du vielleicht noch nichts weißt, die dir aber helfen könnten, deinen perfekten Lebenslauf zu erstellen.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>Zwei-Faktor-Authentifizierung ist derzeit deaktiviert.</0> Du kannst sie aktivieren, indem Du eine Authentifizierungs-App Deinem Konto hinzufügst."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>Zwei-Faktor-Authentifizierung ist aktiviert.</0> Du wirst bei jeder Anmeldung aufgefordert, einen Code einzugeben."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Konto"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Benutzerdefiniertes Feld hinzufügen"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:203
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Eintrag hinzufügen"
|
||||
@ -112,12 +112,12 @@ msgstr "Eintrag hinzufügen"
|
||||
msgid "Add a new item"
|
||||
msgstr "Eintrag hinzufügen"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:267
|
||||
msgid "Add a new section"
|
||||
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"
|
||||
msgstr "Neue Seite hinzufügen"
|
||||
|
||||
@ -133,6 +133,14 @@ msgstr "Hast du bereits ein Konto?"
|
||||
msgid "An error occurred while validating the file."
|
||||
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
|
||||
msgid "and many more..."
|
||||
msgstr "und viele weitere..."
|
||||
@ -191,6 +199,18 @@ msgstr "Verfügbar in {languagesCount} Sprachen"
|
||||
msgid "Awarder"
|
||||
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/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
@ -209,16 +229,16 @@ msgstr "Backup-Code"
|
||||
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."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||
msgid "Base URL"
|
||||
msgstr "Basis URL"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:58
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr "Allgemein"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
msgid "Basics"
|
||||
msgstr "Allgemein"
|
||||
|
||||
@ -246,8 +266,8 @@ msgstr "Von der Gemeinschaft, für die Gemeinschaft."
|
||||
msgid "Cancel"
|
||||
msgstr "Abbrechen"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
#: apps/client/src/components/ai-actions.tsx:107
|
||||
#: apps/client/src/components/ai-actions.tsx:110
|
||||
msgid "Casual"
|
||||
msgstr "Leger"
|
||||
|
||||
@ -255,12 +275,16 @@ msgstr "Leger"
|
||||
msgid "Center Artboard"
|
||||
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/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Passwort ändern"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
#: apps/client/src/components/ai-actions.tsx:101
|
||||
msgid "Change Tone"
|
||||
msgstr "Ausdrucksweise ändern"
|
||||
|
||||
@ -288,6 +312,16 @@ msgstr "Code"
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr "Der Code besteht aus genau 6 Ziffern."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:272
|
||||
msgid "Collapse All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Collapse section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136
|
||||
msgid "Columns"
|
||||
msgstr "Spalten"
|
||||
@ -296,21 +330,17 @@ msgstr "Spalten"
|
||||
msgid "Company"
|
||||
msgstr "Unternehmen"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
#: apps/client/src/components/ai-actions.tsx:119
|
||||
#: apps/client/src/components/ai-actions.tsx:122
|
||||
msgid "Confident"
|
||||
msgstr "Selbstbewusst"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Neues Passwort bestätigen"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
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"
|
||||
msgstr "Kopieren"
|
||||
|
||||
@ -351,7 +381,12 @@ msgstr "Jetzt eins erstellen"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Musterlebenslauf erstellen"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr "Aktuelles Passwort"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "Benutzerdefiniertes CSS"
|
||||
@ -360,7 +395,7 @@ msgstr "Benutzerdefiniertes CSS"
|
||||
msgid "Custom resume sections"
|
||||
msgstr "Benutzerdefinierte Lebenslaufabschnitte"
|
||||
|
||||
#: apps/client/src/stores/resume.ts:47
|
||||
#: apps/client/src/stores/resume.ts:53
|
||||
msgid "Custom Section"
|
||||
msgstr "Benutzerdefinierter Abschnitt"
|
||||
|
||||
@ -386,10 +421,10 @@ msgstr "Dunkel"
|
||||
msgid "Date"
|
||||
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/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
|
||||
msgid "Date or Date Range"
|
||||
msgstr "Datum oder Zeitraum"
|
||||
@ -407,11 +442,15 @@ msgstr "Löschen"
|
||||
msgid "Delete Account"
|
||||
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/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/skills.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||
msgid "Description"
|
||||
msgstr "Beschreibung"
|
||||
|
||||
@ -423,18 +462,18 @@ msgstr "Entwerfe ein- oder mehrseitige Lebensläufe"
|
||||
msgid "Disable"
|
||||
msgstr "Deaktivieren"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "2FA deaktivieren"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Verwerfen"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentation"
|
||||
|
||||
@ -442,7 +481,7 @@ msgstr "Dokumentation"
|
||||
msgid "Don't have an account?"
|
||||
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!"
|
||||
msgstr "Du weißt nicht, wo du anfangen sollst? Schau dir die Dokumentation an!"
|
||||
|
||||
@ -450,7 +489,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>"
|
||||
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"
|
||||
msgstr "Spende an Reactive Resume"
|
||||
|
||||
@ -458,12 +497,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."
|
||||
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."
|
||||
msgstr "Lade Deinen Lebenslauf als PDF herunter. Diese Datei kannst Du dann ausdrucken, an Recruiter schicken oder in Jobbörsen hochladen."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "PDF herunterladen"
|
||||
|
||||
@ -487,7 +525,7 @@ msgstr "Vorhandenen Eintrag duplizieren"
|
||||
msgid "Duplicate an existing resume"
|
||||
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"
|
||||
msgstr "Bearbeiten"
|
||||
|
||||
@ -498,12 +536,12 @@ msgstr "Effekte"
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:90
|
||||
#: apps/client/src/pages/auth/register/page.tsx:141
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181
|
||||
msgid "Email"
|
||||
msgstr "E-Mail"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "2FA aktivieren"
|
||||
|
||||
@ -531,6 +569,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."
|
||||
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
|
||||
msgid "Errors"
|
||||
msgstr "Fehler"
|
||||
@ -539,11 +581,22 @@ msgstr "Fehler"
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr "Auch wenn du das Projekt nicht finanziell unterstützen kannst, hilfst du dem Projekt enorm, indem du dem GitHub-Repository einen Stern gibst, deinen Freunden davon erzählst oder mir eine Nachricht schickst, um mir erzählen, wie dir Reactive Resume geholfen hat. Dein Feedback und deine Unterstützung sind immer willkommen und sehr geschätzt!"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:271
|
||||
msgid "Expand All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Expand section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "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 "Sieh dir die verfügbaren Vorlagen in Reactive Resume an und betrachte die Lebensläufe, die damit erstellt wurden. Sie können auch als Beispiele dienen, um dich bei der Erstellung deines nächsten Lebenslaufs zu inspirieren."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Exportieren"
|
||||
@ -564,19 +617,19 @@ msgstr "Endlich!"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Rechtschreibung und Grammatik korrigieren"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Schriftfamilie"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Schriftgröße"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Schriftart-Subset"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Schriftvariante"
|
||||
|
||||
@ -584,7 +637,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."
|
||||
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"
|
||||
msgstr "Löschen"
|
||||
|
||||
@ -601,7 +654,7 @@ msgstr "Dein Passwort vergessen?"
|
||||
msgid "Format"
|
||||
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?"
|
||||
msgstr "Hast du einen Fehler gefunden oder eine Idee für eine neue Funktion?"
|
||||
|
||||
@ -609,12 +662,12 @@ msgstr "Hast du einen Fehler gefunden oder eine Idee für eine neue Funktion?"
|
||||
msgid "Free, forever"
|
||||
msgstr "Kostenlos, für immer"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:121
|
||||
#: apps/client/src/components/ai-actions.tsx:124
|
||||
#: apps/client/src/components/ai-actions.tsx:125
|
||||
#: apps/client/src/components/ai-actions.tsx:128
|
||||
msgid "Friendly"
|
||||
msgstr "Freundlich"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:56
|
||||
msgid "Full Name"
|
||||
msgstr "Vollständiger Name"
|
||||
|
||||
@ -643,6 +696,10 @@ msgstr "Gib deinem alten Lebenslauf einen neuen Namen."
|
||||
msgid "Go to 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
|
||||
msgid "Google"
|
||||
msgstr "Google"
|
||||
@ -651,11 +708,11 @@ msgstr "Google"
|
||||
msgid "Grayscale"
|
||||
msgstr "Graustufen"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||
msgid "Grid"
|
||||
msgstr "Rasteransicht"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:70
|
||||
msgid "Headline"
|
||||
msgstr "Überschrift"
|
||||
|
||||
@ -668,7 +725,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."
|
||||
|
||||
#: 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
|
||||
msgid "Hidden"
|
||||
msgstr "Ausgeblendet"
|
||||
@ -677,7 +734,7 @@ msgstr "Ausgeblendet"
|
||||
msgid "Hide"
|
||||
msgstr "Ausblenden"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Symbole ausblenden"
|
||||
|
||||
@ -734,7 +791,7 @@ msgstr "Schreiben verbessern"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Falls Du diesen QR-Code nicht scannen kannst, kopiere den Link und in füge ihn in Deine Authenticator-App ein."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "In diesem Bereich kannst du dein Passwort ändern und die Zwei-Faktor-Authentifizierung aktivieren oder deaktivieren."
|
||||
|
||||
@ -743,7 +800,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>."
|
||||
|
||||
#: 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"
|
||||
msgstr "Informationen"
|
||||
|
||||
@ -802,10 +860,10 @@ msgstr "max.mustermann@beispiel.de"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||
msgid "Keywords"
|
||||
msgstr "Schlüsselwörter"
|
||||
|
||||
@ -824,7 +882,8 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Letzte Aktualisierung: {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx: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"
|
||||
msgstr "Layout"
|
||||
|
||||
@ -837,7 +896,7 @@ msgid "Letter"
|
||||
msgstr "US Letter"
|
||||
|
||||
#: 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"
|
||||
msgstr "Niveau"
|
||||
|
||||
@ -853,7 +912,7 @@ msgstr "Hell"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Helles oder dunkles Design"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Zeilenhöhe"
|
||||
|
||||
@ -862,14 +921,14 @@ msgstr "Zeilenhöhe"
|
||||
msgid "LinkedIn, JSON Resume, 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"
|
||||
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/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:120
|
||||
msgid "Location"
|
||||
msgstr "Ort"
|
||||
|
||||
@ -897,7 +956,7 @@ msgstr "Abmelden"
|
||||
msgid "Lost your device?"
|
||||
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"
|
||||
msgstr "Hauptteil"
|
||||
|
||||
@ -914,7 +973,7 @@ msgstr "März 2023"
|
||||
|
||||
#: 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/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
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "März 2023 – Heute"
|
||||
@ -923,7 +982,7 @@ msgstr "März 2023 – Heute"
|
||||
msgid "Margin"
|
||||
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"
|
||||
msgstr "Max Tokens"
|
||||
|
||||
@ -931,18 +990,18 @@ msgstr "Max Tokens"
|
||||
msgid "MIT License"
|
||||
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"
|
||||
msgstr "Model"
|
||||
|
||||
#: 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/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: 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/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/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/dashboard/settings/_sections/account.tsx:153
|
||||
msgid "Name"
|
||||
@ -957,7 +1016,7 @@ msgstr "Name"
|
||||
msgid "Network"
|
||||
msgstr "Netzwerk"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Neues Passwort"
|
||||
|
||||
@ -974,6 +1033,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Achtung: Dadurch wird dein Konto weniger sicher sein."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Notizen"
|
||||
@ -1009,16 +1069,16 @@ msgstr "OpenAI hat keine Auswahl für deinen Text zurückgegeben."
|
||||
msgid "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"
|
||||
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/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Optionen"
|
||||
|
||||
@ -1032,22 +1092,23 @@ msgid "Organization"
|
||||
msgstr "Organisation"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Seite"
|
||||
|
||||
#: 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}"
|
||||
msgstr "Seite {pageNumber}"
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Passwort"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||
msgid "PDF"
|
||||
msgstr "PDF"
|
||||
|
||||
@ -1055,7 +1116,7 @@ msgstr "PDF"
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr "Persönliche Notizen zu jedem Lebenslauf"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:108
|
||||
msgid "Phone"
|
||||
msgstr "Telefon"
|
||||
|
||||
@ -1109,14 +1170,12 @@ msgstr "Powered by <0>Simple Icons</0>"
|
||||
msgid "Primary Color"
|
||||
msgstr "Primärfarbe"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Datenschutzerklärung"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
#: apps/client/src/components/ai-actions.tsx:113
|
||||
#: apps/client/src/components/ai-actions.tsx:116
|
||||
msgid "Professional"
|
||||
msgstr "Formell"
|
||||
|
||||
@ -1132,7 +1191,7 @@ msgstr "Öffentlich"
|
||||
msgid "Publisher"
|
||||
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"
|
||||
msgstr "Problem melden"
|
||||
|
||||
@ -1144,11 +1203,10 @@ msgstr "Problem melden"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1175,12 +1233,12 @@ msgstr "Reactive Resume blüht dank seiner lebendigen Gemeinschaft auf. Dieses P
|
||||
msgid "Redo"
|
||||
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
|
||||
msgid "Remove"
|
||||
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"
|
||||
msgstr "Seite entfernen"
|
||||
|
||||
@ -1199,7 +1257,7 @@ msgstr "Bestätigungs-E-Mail erneut senden"
|
||||
msgid "Reset"
|
||||
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"
|
||||
msgstr "Layout zurücksetzen"
|
||||
|
||||
@ -1213,8 +1271,8 @@ msgid "Reset Zoom"
|
||||
msgstr "Zoom zurücksetzen"
|
||||
|
||||
#: 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:37
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||
msgid "Resumes"
|
||||
msgstr "Lebensläufe"
|
||||
|
||||
@ -1237,11 +1295,11 @@ msgstr "Abgerundet"
|
||||
msgid "Save Changes"
|
||||
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"
|
||||
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"
|
||||
msgstr "Gespeichert"
|
||||
|
||||
@ -1262,15 +1320,15 @@ msgstr "Zum Schwenken blättern"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Zum Zoom blättern"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Suche nach einer Schriftfamilie"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Nach einem Schriftart-Subset suchen"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Nach einer Schriftvariante suchen"
|
||||
|
||||
@ -1282,7 +1340,7 @@ msgstr "Nach einer Sprache suchen"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Abgesichert mit Zwei-Faktor-Authentifizierung"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Sicherheit"
|
||||
|
||||
@ -1294,7 +1352,7 @@ msgstr "Selbst hosten mit Docker"
|
||||
msgid "Send Email"
|
||||
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"
|
||||
msgstr "Schick mir eine Nachricht"
|
||||
|
||||
@ -1314,6 +1372,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Zwei-Faktor-Authentifizierung für dein Konto einrichten"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Freigeben"
|
||||
@ -1330,7 +1389,7 @@ msgstr "Seitenumbruchlinie anzeigen"
|
||||
msgid "Show Page Numbers"
|
||||
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"
|
||||
msgstr "Seitenleiste"
|
||||
|
||||
@ -1408,6 +1467,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Beginne mit der Erstellung Deines Lebenslaufs, indem Du ihm einen Namen gibst."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Statistiken"
|
||||
@ -1422,17 +1482,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/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/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/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "Summary"
|
||||
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!"
|
||||
msgstr "Unterstütze die App, indem du spendest, was du kannst!"
|
||||
|
||||
@ -1444,11 +1504,20 @@ msgstr "Unterstütze Reactive Resume"
|
||||
msgid "Supports A4/Letter page formats"
|
||||
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
|
||||
msgid "System"
|
||||
msgstr "System"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Vorlage"
|
||||
@ -1465,15 +1534,20 @@ msgstr "Erfahrungsberichte"
|
||||
msgid "Text Color"
|
||||
msgstr "Schriftfarbe"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "Die eingegebenen Passwörter stimmen nicht überein."
|
||||
#: apps/client/src/pages/public/error.tsx:17
|
||||
msgid "The page you're looking for doesn't exist."
|
||||
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
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "Der Lebenslauf, den Du aktualisieren möchtest, ist gesperrt. Bitte entsperre ihn, falls Du Änderungen daran vornehmen möchtest."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1604,7 @@ msgstr "Statistiken für Aufrufe und Downloads"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Zwei-Faktor-Authentifizierung"
|
||||
|
||||
@ -1552,11 +1626,12 @@ msgid "Type of Study"
|
||||
msgstr "Studienart"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Typografie"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Links unterstreichen"
|
||||
|
||||
@ -1599,6 +1674,14 @@ msgstr "URL"
|
||||
msgid "URL must start with https://"
|
||||
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:57
|
||||
msgid "Use your backup code"
|
||||
@ -1651,7 +1734,7 @@ msgstr "Version 4"
|
||||
msgid "Views"
|
||||
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"
|
||||
msgstr "Sichtbar"
|
||||
|
||||
@ -1665,15 +1748,15 @@ 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/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/experience.tsx:100
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:96
|
||||
msgid "Website"
|
||||
msgstr "Webseite"
|
||||
|
||||
@ -1681,10 +1764,14 @@ msgstr "Webseite"
|
||||
msgid "What's new in the latest 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/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
||||
#: apps/client/src/pages/public/error.tsx:26
|
||||
msgid "You are not authorized to access this page."
|
||||
msgstr "Sie sind nicht berechtigt, auf diese Seite zuzugreifen."
|
||||
|
||||
#: 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."
|
||||
msgstr "Du kannst mehrere Schlüsselwörter (Keywords) hinzufügen, indem du sie mit einem Komma trennst oder die Eingabetaste drückst."
|
||||
|
||||
@ -1692,19 +1779,27 @@ msgstr "Du kannst mehrere Schlüsselwörter (Keywords) hinzufügen, indem du sie
|
||||
msgid "You can also enter your username."
|
||||
msgstr "Du kannst alternativ auch deinen Benutzernamen eingeben."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||
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."
|
||||
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."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||
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 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
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
msgstr "Du kannst die OpenAI API nutzen, um Inhalte zu generieren oder deine Schreibfähigkeiten beim Verfassen deines Lebenslaufs zu verbessern."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||
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 "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
|
||||
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."
|
||||
|
||||
#: 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."
|
||||
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 +1816,7 @@ msgstr "Du hast Post!"
|
||||
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!"
|
||||
|
||||
#: 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."
|
||||
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 +1828,7 @@ msgstr "Deine E-Mail-Adresse wurde erfolgreich verifiziert."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Du hast noch keinen OpenAI API-Schlüssel abgespeichert. Gehe in deine Kontoeinstellungen, um die OpenAI-Integration zu aktivieren."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Dein Passwort wurde erfolgreich geändert."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: el\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-11-04 14:22\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Greek\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -30,27 +30,27 @@ msgstr "{templatesCount} πρότυπα βιογραφικών για να δι
|
||||
msgid "{value, plural, one {Column} other {Columns}}"
|
||||
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>"
|
||||
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>"
|
||||
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."
|
||||
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>"
|
||||
msgstr "<0>Η κοινότητα έχει αφιερώσει πολύ χρόνο στη συγγραφή της τεκμηρίωσης για το Reactive Resume και είμαι σίγουρος ότι θα σας βοηθήσει να ξεκινήσετε με την εφαρμογή.</0><1>Υπάρχουν επίσης πολλά παραδείγματα που θα σας βοηθήσουν να ξεκινήσετε, καθώς και χαρακτηριστικά που ίσως δεν γνωρίζετε και τα οποία θα μπορούσαν να σας βοηθήσουν να φτιάξετε το τέλειο βιογραφικό σας.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>Ο έλεγχος ταυτότητας δύο παραγόντων είναι επί του παρόντος απενεργοποιημένος.</0> Μπορείτε να τον ενεργοποιήσετε προσθέτοντας μια εφαρμογή ελέγχου ταυτότητας στο λογαριασμό σας."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>Ο έλεγχος ταυτότητας δύο παραγόντων είναι ενεργοποιημένος.</0> Θα σας ζητηθεί να εισάγετε έναν κωδικό κάθε φορά που συνδέεστε."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Λογαριασμός χρήστη"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Προσθέστε ένα προσαρμοσμένο πεδίο"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:203
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Προσθήκη νέου αντικείμενου"
|
||||
@ -112,12 +112,12 @@ msgstr "Προσθήκη νέου αντικείμενου"
|
||||
msgid "Add a new item"
|
||||
msgstr "Προσθήκη νέου αντικείμενου"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:267
|
||||
msgid "Add a new section"
|
||||
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"
|
||||
msgstr "Προσθήκη νέας σελίδας"
|
||||
|
||||
@ -133,6 +133,14 @@ msgstr "Έχεις ήδη λογαριασμό;"
|
||||
msgid "An error occurred while validating the file."
|
||||
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
|
||||
msgid "and many more..."
|
||||
msgstr "και πολλά άλλα..."
|
||||
@ -191,6 +199,18 @@ msgstr "Διαθέσιμο σε {languagesCount} γλώσσες"
|
||||
msgid "Awarder"
|
||||
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/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
@ -209,16 +229,16 @@ msgstr "Εφεδρικός κωδικός"
|
||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||
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"
|
||||
msgstr "https://rxresu.me/builder/cm23wdob830tdmtv5iyuvprzz"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:58
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr "Βασικά στοιχεία"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
msgid "Basics"
|
||||
msgstr "Βασικά στοιχεία"
|
||||
|
||||
@ -246,8 +266,8 @@ msgstr "Από την κοινότητα, για την κοινότητα."
|
||||
msgid "Cancel"
|
||||
msgstr "Ακύρωση"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
#: apps/client/src/components/ai-actions.tsx:107
|
||||
#: apps/client/src/components/ai-actions.tsx:110
|
||||
msgid "Casual"
|
||||
msgstr "Περιστασιακό"
|
||||
|
||||
@ -255,12 +275,16 @@ msgstr "Περιστασιακό"
|
||||
msgid "Center Artboard"
|
||||
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/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Αλλαγή κωδικού πρόσβασης"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
#: apps/client/src/components/ai-actions.tsx:101
|
||||
msgid "Change Tone"
|
||||
msgstr "Αλλαγή τόνου"
|
||||
|
||||
@ -288,6 +312,16 @@ msgstr "Κωδικός"
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr "Ο κωδικός πρέπει να είναι ακριβώς 6 ψηφία."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:272
|
||||
msgid "Collapse All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Collapse section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136
|
||||
msgid "Columns"
|
||||
msgstr "Στήλες"
|
||||
@ -296,21 +330,17 @@ msgstr "Στήλες"
|
||||
msgid "Company"
|
||||
msgstr "Εταιρεια"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
#: apps/client/src/components/ai-actions.tsx:119
|
||||
#: apps/client/src/components/ai-actions.tsx:122
|
||||
msgid "Confident"
|
||||
msgstr "Αυτοπεποίθηση"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Επιβεβαιώστε τον νέο κωδικό πρόσβασης"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
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"
|
||||
msgstr "Αντιγραφή"
|
||||
|
||||
@ -351,7 +381,12 @@ msgstr "Δημιουργήστε ένα τώρα"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Δημιουργία νέου βιογραφικού σημειώματος"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr "Τρέχων Κωδικός Πρόσβασης"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "Προσαρμοσμένη CSS"
|
||||
@ -360,7 +395,7 @@ msgstr "Προσαρμοσμένη CSS"
|
||||
msgid "Custom resume sections"
|
||||
msgstr "Προσαρμοσμένα τμήματα βιογραφικού σημειώματος"
|
||||
|
||||
#: apps/client/src/stores/resume.ts:47
|
||||
#: apps/client/src/stores/resume.ts:53
|
||||
msgid "Custom Section"
|
||||
msgstr "Προσαρμοσμένο τμήμα"
|
||||
|
||||
@ -386,10 +421,10 @@ msgstr "Σκούρο"
|
||||
msgid "Date"
|
||||
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/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
|
||||
msgid "Date or Date Range"
|
||||
msgstr "Ημερομηνία ή εύρος ημερομηνιών"
|
||||
@ -407,11 +442,15 @@ msgstr "Διαγραφή"
|
||||
msgid "Delete Account"
|
||||
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/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/skills.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||
msgid "Description"
|
||||
msgstr "Περιγραφή"
|
||||
|
||||
@ -423,18 +462,18 @@ msgstr "Σχεδιασμός μονοσέλιδων/πολυσέλιδων βι
|
||||
msgid "Disable"
|
||||
msgstr "Απενεργοποίηση"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Απενεργοποίηση 2FA"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Απόρριψη"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr "Εγχειρίδιο"
|
||||
|
||||
@ -442,7 +481,7 @@ msgstr "Εγχειρίδιο"
|
||||
msgid "Don't have an account?"
|
||||
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!"
|
||||
msgstr "Δεν ξέρετε από πού να ξεκινήσετε; Δείτε τα έγγραφα!"
|
||||
|
||||
@ -450,7 +489,7 @@ msgstr "Δεν ξέρετε από πού να ξεκινήσετε; Δείτε
|
||||
msgid "Don't see your language? <0>Help translate the app.</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"
|
||||
msgstr "Κάντε μία δωρεά στο Reactive Resume"
|
||||
|
||||
@ -458,12 +497,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."
|
||||
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."
|
||||
msgstr "Κατεβάστε ένα PDF του βιογραφικού σας σημειώματος. Αυτό το αρχείο μπορεί να χρησιμοποιηθεί για να εκτυπώσετε το βιογραφικό σας, να το στείλετε σε εργοδότες ή να το ανεβάσετε σε πύλες εργασίας."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Λήψη PDF"
|
||||
|
||||
@ -487,7 +525,7 @@ msgstr "Αντιγραφή ενός υπάρχοντος στοιχείου"
|
||||
msgid "Duplicate an existing resume"
|
||||
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"
|
||||
msgstr "Τροποποίηση"
|
||||
|
||||
@ -498,12 +536,12 @@ msgstr "Εφέ:"
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:90
|
||||
#: apps/client/src/pages/auth/register/page.tsx:141
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181
|
||||
msgid "Email"
|
||||
msgstr "Ηλ.Ταχυδρομείο"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Ενεργοποίηση 2FA"
|
||||
|
||||
@ -531,6 +569,10 @@ msgstr "Πληκτρολογήστε τον κωδικό πρόσβασης μι
|
||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||
msgstr "Εισάγετε τη διεύθυνση ηλεκτρονικού ταχυδρομείου σας και θα σας στείλουμε έναν σύνδεσμο για να επαναφέρετε τον κωδικό πρόσβασής σας, εάν ο λογαριασμός υπάρχει."
|
||||
|
||||
#: apps/client/src/pages/public/error.tsx:46
|
||||
msgid "Error {statusCode}"
|
||||
msgstr "Σφάλμα {statusCode}"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||
msgid "Errors"
|
||||
msgstr "Σφάλματα"
|
||||
@ -539,11 +581,22 @@ msgstr "Σφάλματα"
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr "Ακόμη και αν δεν είστε σε θέση να συνεισφέρετε οικονομικά, μπορείτε να κάνετε τη διαφορά δίνοντας ένα αστέρι στο αποθετήριο GitHub, διαδίδοντας το μήνυμα στους φίλους σας ή στέλνοντας ένα γρήγορο μήνυμα για να μου πείτε πώς σας βοήθησε το Reactive Resume. Τα σχόλιά σας και η υποστήριξή σας είναι πάντα ευπρόσδεκτα και εκτιμώνται πολύ!"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:271
|
||||
msgid "Expand All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Expand section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "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 "Εξερευνήστε τα πρότυπα που είναι διαθέσιμα στο Reactive Resume και δείτε τα βιογραφικά που έχουν δημιουργηθεί με αυτά. Θα μπορούσαν επίσης να χρησιμεύσουν ως παραδείγματα που θα σας βοηθήσουν να καθοδηγήσετε τη δημιουργία του επόμενου βιογραφικού σας."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Εξαγωγή"
|
||||
@ -564,19 +617,19 @@ msgstr "Τέλος,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Ορθογραφία & γραμματική"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Οικογένεια γραμματοσειράς"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Μέγεθος γραμματοσειράς"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Υποσύνολο γραμματοσειρών"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Παραλλαγές γραμματοσειράς"
|
||||
|
||||
@ -584,7 +637,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."
|
||||
msgstr "Για παράδειγμα, πληροφορίες σχετικά με τις εταιρείες στις οποίες στείλατε το βιογραφικό σας ή τους συνδέσμους προς τις περιγραφές θέσεων εργασίας μπορούν να σημειωθούν εδώ."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||
msgid "Forget"
|
||||
msgstr "Ξεχάστε το"
|
||||
|
||||
@ -601,7 +654,7 @@ msgstr "Ξεχάσατε τον κωδικό πρόσβασής σας;"
|
||||
msgid "Format"
|
||||
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?"
|
||||
msgstr "Βρήκατε ένα σφάλμα ή έχετε μια ιδέα για μια νέα λειτουργία;"
|
||||
|
||||
@ -609,12 +662,12 @@ msgstr "Βρήκατε ένα σφάλμα ή έχετε μια ιδέα για
|
||||
msgid "Free, forever"
|
||||
msgstr "Δωρεάν Για Πάντα"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:121
|
||||
#: apps/client/src/components/ai-actions.tsx:124
|
||||
#: apps/client/src/components/ai-actions.tsx:125
|
||||
#: apps/client/src/components/ai-actions.tsx:128
|
||||
msgid "Friendly"
|
||||
msgstr "Φιλικό"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:56
|
||||
msgid "Full Name"
|
||||
msgstr "Ονοματεπώνυμο"
|
||||
|
||||
@ -643,6 +696,10 @@ msgstr "Δώστε στο παλιό σας βιογραφικό ένα νέο
|
||||
msgid "Go to 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
|
||||
msgid "Google"
|
||||
msgstr "Google"
|
||||
@ -651,11 +708,11 @@ msgstr "Google"
|
||||
msgid "Grayscale"
|
||||
msgstr "Κλίμακα του Γκρι"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||
msgid "Grid"
|
||||
msgstr "Πλέγμα"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:70
|
||||
msgid "Headline"
|
||||
msgstr "Επικεφαλίδα"
|
||||
|
||||
@ -668,7 +725,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr "Εδώ, μπορείτε να ενημερώσετε το προφίλ σας για να προσαρμόσετε και να εξατομικεύσετε την εμπειρία σας."
|
||||
|
||||
#: 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
|
||||
msgid "Hidden"
|
||||
msgstr "Hidden"
|
||||
@ -677,7 +734,7 @@ msgstr "Hidden"
|
||||
msgid "Hide"
|
||||
msgstr "Απόκρυψη"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Απόκρυψη Εικονιδίων"
|
||||
|
||||
@ -734,7 +791,7 @@ msgstr "Βελτίωση Εγγραφής"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Σε περίπτωση που δεν μπορείτε να σαρώσετε αυτόν τον κωδικό QR, μπορείτε επίσης να αντιγράψετε αυτόν τον σύνδεσμο στην εφαρμογή ελέγχου ταυτότητας."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "Σε αυτή την ενότητα, μπορείτε να αλλάξετε τον κωδικό πρόσβασής σας και να ενεργοποιήσετε/απενεργοποιήσετε τον έλεγχο ταυτότητας δύο παραγόντων."
|
||||
|
||||
@ -743,7 +800,8 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "Σε αυτή την ενότητα, μπορείτε να διαγράψετε το λογαριασμό σας και όλα τα δεδομένα που σχετίζονται με τον χρήστη σας, αλλά λάβετε υπόψη ότι <0>αυτή η ενέργεια είναι μη αναστρέψιμη</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx: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"
|
||||
msgstr "Πληροφορίες"
|
||||
|
||||
@ -802,10 +860,10 @@ msgstr "john.doe@example.com"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||
msgid "Keywords"
|
||||
msgstr "Λέξεις-κλειδιά"
|
||||
|
||||
@ -824,7 +882,8 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Τελευταία ενημέρωση {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx: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"
|
||||
msgstr "Διάταξη"
|
||||
|
||||
@ -837,7 +896,7 @@ msgid "Letter"
|
||||
msgstr "Γράμμα"
|
||||
|
||||
#: 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"
|
||||
msgstr "Επίπεδο"
|
||||
|
||||
@ -853,7 +912,7 @@ msgstr "Φωτεινό"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Ανοιχτό ή σκοτεινό θέμα"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Ύψος Γραμμής"
|
||||
|
||||
@ -862,14 +921,14 @@ msgstr "Ύψος Γραμμής"
|
||||
msgid "LinkedIn, JSON Resume, etc."
|
||||
msgstr "LinkedIn, JSON Βιογραφικό, κλπ."
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||
msgid "List"
|
||||
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/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:120
|
||||
msgid "Location"
|
||||
msgstr "Τοποθεσία"
|
||||
|
||||
@ -897,7 +956,7 @@ msgstr "Αποσύνδεση"
|
||||
msgid "Lost your device?"
|
||||
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"
|
||||
msgstr "Κύρια"
|
||||
|
||||
@ -914,7 +973,7 @@ msgstr "Μάρτιος 2023"
|
||||
|
||||
#: 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/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
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "Μάρτιος 2023 - Παρόν"
|
||||
@ -923,7 +982,7 @@ msgstr "Μάρτιος 2023 - Παρόν"
|
||||
msgid "Margin"
|
||||
msgstr "Περιθώρια"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||
msgid "Max Tokens"
|
||||
msgstr "Μέγιστα κουπόνια"
|
||||
|
||||
@ -931,18 +990,18 @@ msgstr "Μέγιστα κουπόνια"
|
||||
msgid "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"
|
||||
msgstr "Μοντέλο"
|
||||
|
||||
#: 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/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: 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/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/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/dashboard/settings/_sections/account.tsx:153
|
||||
msgid "Name"
|
||||
@ -957,7 +1016,7 @@ msgstr "Ονομα"
|
||||
msgid "Network"
|
||||
msgstr "Τύπος δικτύου"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Νέος κωδικός"
|
||||
|
||||
@ -974,6 +1033,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Σημείωση: Αυτό θα καταστήσει το λογαριασμό σας λιγότερο ασφαλή."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Σημειώσεις"
|
||||
@ -1009,16 +1069,16 @@ msgstr "Το OpenAI δεν επέστρεψε καμία επιλογή για
|
||||
msgid "OpenAI Integration"
|
||||
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"
|
||||
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/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Ρυθμίσεις"
|
||||
|
||||
@ -1032,22 +1092,23 @@ msgid "Organization"
|
||||
msgstr "Οργανισμος"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Σελίδα"
|
||||
|
||||
#: 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}"
|
||||
msgstr "Σελίδα {pageNumber}"
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Κωδικός"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||
msgid "PDF"
|
||||
msgstr "PDF"
|
||||
|
||||
@ -1055,7 +1116,7 @@ msgstr "PDF"
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr "Προσωπικές σημειώσεις για κάθε βιογραφικό σημείωμα"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:108
|
||||
msgid "Phone"
|
||||
msgstr "Τηλέφωνο"
|
||||
|
||||
@ -1109,14 +1170,12 @@ msgstr "Powered by <0>Simple Icons</0>"
|
||||
msgid "Primary Color"
|
||||
msgstr "Βασικό χρώμα"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Πολιτική Απορρήτου"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
#: apps/client/src/components/ai-actions.tsx:113
|
||||
#: apps/client/src/components/ai-actions.tsx:116
|
||||
msgid "Professional"
|
||||
msgstr "Επαγγελματικό"
|
||||
|
||||
@ -1132,7 +1191,7 @@ msgstr "Δημόσια"
|
||||
msgid "Publisher"
|
||||
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"
|
||||
msgstr "Θέστε ένα θέμα"
|
||||
|
||||
@ -1144,11 +1203,10 @@ msgstr "Θέστε ένα θέμα"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1175,12 +1233,12 @@ msgstr "Το Reactive Resume ευδοκιμεί χάρη στη ζωντανή
|
||||
msgid "Redo"
|
||||
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
|
||||
msgid "Remove"
|
||||
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"
|
||||
msgstr "Αφαίρεση σελίδας"
|
||||
|
||||
@ -1199,7 +1257,7 @@ msgstr "Επανάληψη αποστολής συνδέσμου επιβεβα
|
||||
msgid "Reset"
|
||||
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"
|
||||
msgstr "Επαναφορά Διάταξης"
|
||||
|
||||
@ -1213,8 +1271,8 @@ msgid "Reset Zoom"
|
||||
msgstr "Επαναφορά μεγένθυνσης"
|
||||
|
||||
#: 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:37
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||
msgid "Resumes"
|
||||
msgstr "Βιογραφικά σημειώματα"
|
||||
|
||||
@ -1237,11 +1295,11 @@ msgstr "Στρογγυλεμένο"
|
||||
msgid "Save Changes"
|
||||
msgstr "Αποθήκευση Αλλαγών;"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||
msgid "Save Locally"
|
||||
msgstr "Αποθηκεύστε τοπικά"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||
msgid "Saved"
|
||||
msgstr "Αποθηκευμένο"
|
||||
|
||||
@ -1262,15 +1320,15 @@ msgstr "Μετακινηθείτε στο Pan"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Μετακινηθείτε στο Ζουμ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Αναζήτηση οικογένειας γραμματοσειρών"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Αναζήτηση οικογένειας γραμματοσειρών"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Αναζήτηση οικογένειας γραμματοσειρών"
|
||||
|
||||
@ -1282,7 +1340,7 @@ msgstr "Αναζήτηση γλώσσας"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Ασφάλεια με έλεγχο ταυτότητας δύο παραγόντων"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Ασφάλεια"
|
||||
|
||||
@ -1294,7 +1352,7 @@ msgstr "Self-host με Docker"
|
||||
msgid "Send 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"
|
||||
msgstr "Αποστολή μηνύματος"
|
||||
|
||||
@ -1314,6 +1372,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Ρυθμίστε τον έλεγχο ταυτότητας δύο παραγόντων στο λογαριασμό σας"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Κοινοποίηση"
|
||||
@ -1330,7 +1389,7 @@ msgstr "Εμφάνιση γραμμής διακοπής"
|
||||
msgid "Show Page Numbers"
|
||||
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"
|
||||
msgstr "Πλαϊνή μπάρα"
|
||||
|
||||
@ -1408,6 +1467,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Ξεκινήστε να φτιάχνετε το βιογραφικό σας δίνοντάς του ένα όνομα."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Στατιστικά"
|
||||
@ -1422,17 +1482,17 @@ msgstr "Αποθηκεύστε τους κωδικούς αντιγράφων α
|
||||
|
||||
#: 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/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/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/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "Summary"
|
||||
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!"
|
||||
msgstr "Υποστηρίξτε την εφαρμογή δωρίζοντας ό,τι μπορείτε!"
|
||||
|
||||
@ -1444,11 +1504,20 @@ msgstr "Υποστήριξη Reactive Resume"
|
||||
msgid "Supports A4/Letter page formats"
|
||||
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
|
||||
msgid "System"
|
||||
msgstr "Σύστημα"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Πρότυπο"
|
||||
@ -1465,15 +1534,20 @@ msgstr "Αναφορές πελατών"
|
||||
msgid "Text Color"
|
||||
msgstr "Χρώματα κειμένου"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "Οι κωδικοί πρόσβασης που εισάγατε δεν ταιριάζουν"
|
||||
#: apps/client/src/pages/public/error.tsx:17
|
||||
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 "Το αίτημα δεν ήταν έγκυρο."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "Το βιογραφικό σημείωμα που θέλετε να ενημερώσετε είναι κλειδωμένο, παρακαλούμε ξεκλειδώστε το αν θέλετε να κάνετε αλλαγές σε αυτό."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1604,7 @@ msgstr "Παρακολούθηση προβολών και λήψεων"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Ελεγχος ταυτότητας δυο σταδίων"
|
||||
|
||||
@ -1552,11 +1626,12 @@ msgid "Type of Study"
|
||||
msgstr "Τύπος μελέτης"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Τυπογραφία"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Υπογράμμιση συνδέσμων"
|
||||
|
||||
@ -1599,6 +1674,14 @@ msgstr "URL"
|
||||
msgid "URL must start with 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:57
|
||||
msgid "Use your backup code"
|
||||
@ -1651,7 +1734,7 @@ msgstr "Έκδοση 4"
|
||||
msgid "Views"
|
||||
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"
|
||||
msgstr "Ορατό"
|
||||
|
||||
@ -1665,15 +1748,15 @@ msgstr "Επαληθεύουμε τη διεύθυνση email σας μόνο
|
||||
|
||||
#: 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/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/experience.tsx:100
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:96
|
||||
msgid "Website"
|
||||
msgstr "Ιστοσελίδα"
|
||||
|
||||
@ -1681,10 +1764,14 @@ msgstr "Ιστοσελίδα"
|
||||
msgid "What's new in the latest version"
|
||||
msgstr "Τι νέο υπάρχει στην τελευταία έκδοση"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
||||
#: apps/client/src/pages/public/error.tsx:26
|
||||
msgid "You are not authorized to access this page."
|
||||
msgstr "Δεν είστε εξουσιοδοτημένοι να έχετε πρόσβαση σε αυτή τη σελίδα."
|
||||
|
||||
#: 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."
|
||||
msgstr "Μπορείτε να προσθέσετε πολλαπλές λέξεις-κλειδιά διαχωρίζοντάς τες με κόμμα ή πατώντας enter."
|
||||
|
||||
@ -1692,19 +1779,27 @@ msgstr "Μπορείτε να προσθέσετε πολλαπλές λέξει
|
||||
msgid "You can also enter your username."
|
||||
msgstr "Μπορείτε επίσης να εισάγετε το όνομα χρήστη σας."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||
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."
|
||||
msgstr "Μπορείτε επίσης να ενσωματωθείτε με το Ollama απλά θέτοντας το κλειδί API σε `sk-1234567890abcdef` και τη διεύθυνση URL της βάσης στη διεύθυνση URL του Ollama, π.χ. `http://localhost:11434/v1`. Μπορείτε επίσης να διαλέξετε και να επιλέξετε μοντέλα και να ορίσετε τα μέγιστα tokens σύμφωνα με τις προτιμήσεις σας."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||
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 "Μπορείτε επίσης να ενσωματώσετε με το 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
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
msgstr "Μπορείτε να χρησιμοποιήσετε το OpenAI API για να σας βοηθήσει να δημιουργήσετε περιεχόμενο, ή να βελτιώσετε το γράψιμό σας, ενώ συνθέτετε το βιογραφικό σας."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||
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 "Μπορείτε επίσης να ενσωματώσετε με την 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
|
||||
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 "Μπορείτε να παρακολουθείτε τον αριθμό των προβολών που έχει λάβει το βιογραφικό σας, ή πόσοι άνθρωποι έχουν κατεβάσει το βιογραφικό ενεργοποιώντας την κοινή χρήση του κοινού."
|
||||
|
||||
#: 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."
|
||||
msgstr "Έχετε την επιλογή <0>αποκτήστε το δικό σας κλειδί OpenAI API</0>. Αυτό το κλειδί σας δίνει τη δυνατότητα να αξιοποιήσετε το API όπως σας φαίνεται κατάλληλο. Εναλλακτικά, αν θέλετε να απενεργοποιήσετε τις λειτουργίες τεχνητής νοημοσύνης στο Reume ενεργό συνολικά, μπορείτε απλά να αφαιρέσετε το κλειδί από τις ρυθμίσεις σας."
|
||||
|
||||
@ -1721,7 +1816,7 @@ msgstr "Έχετε email!"
|
||||
msgid "Your account and all your data has been deleted successfully. 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."
|
||||
msgstr "Το κλειδί API σας αποθηκεύεται με ασφάλεια στον τοπικό αποθηκευτικό χώρο του προγράμματος περιήγησης και χρησιμοποιείται μόνο όταν κάνει αιτήσεις στο OpenAI μέσω του επίσημου SDK. Να είστε βέβαιοι ότι το κλειδί σας δεν μεταδίδεται σε κανέναν εξωτερικό διακομιστή εκτός όταν αλληλεπιδρά με τις υπηρεσίες του OpenAI."
|
||||
|
||||
@ -1733,7 +1828,7 @@ msgstr "Η διεύθυνση email σας έχει επαληθευτεί επ
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Το OpenAI API κλειδί σας δεν έχει οριστεί ακόμα. Παρακαλώ πηγαίνετε στις ρυθμίσεις του λογαριασμού σας για να ενεργοποιήσετε την ενοποίηση OpenAI."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Ο κωδικός πρόσβασής σας έχει ενημερωθεί με επιτυχία."
|
||||
|
||||
|
||||
@ -30,27 +30,27 @@ msgstr "{templatesCount} resume templates to choose from"
|
||||
msgid "{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>"
|
||||
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>"
|
||||
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."
|
||||
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>"
|
||||
msgstr "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Account"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Add a custom field"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:203
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Add a new item"
|
||||
@ -112,12 +112,12 @@ msgstr "Add a new item"
|
||||
msgid "Add a new item"
|
||||
msgstr "Add a new item"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:267
|
||||
msgid "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"
|
||||
msgstr "Add New Page"
|
||||
|
||||
@ -133,6 +133,14 @@ msgstr "Already have an account?"
|
||||
msgid "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
|
||||
msgid "and many more..."
|
||||
msgstr "and many more..."
|
||||
@ -191,6 +199,18 @@ msgstr "Available in {languagesCount} languages"
|
||||
msgid "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/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
@ -209,16 +229,16 @@ msgstr "Backup Code"
|
||||
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."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||
msgid "Base URL"
|
||||
msgstr "Base URL"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:58
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr "Basics"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
msgid "Basics"
|
||||
msgstr "Basics"
|
||||
|
||||
@ -246,8 +266,8 @@ msgstr "By the community, for the community."
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
#: apps/client/src/components/ai-actions.tsx:107
|
||||
#: apps/client/src/components/ai-actions.tsx:110
|
||||
msgid "Casual"
|
||||
msgstr "Casual"
|
||||
|
||||
@ -255,12 +275,16 @@ msgstr "Casual"
|
||||
msgid "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/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Change Password"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
#: apps/client/src/components/ai-actions.tsx:101
|
||||
msgid "Change Tone"
|
||||
msgstr "Change Tone"
|
||||
|
||||
@ -288,6 +312,16 @@ msgstr "Code"
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr "Code must be exactly 6 digits long."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:272
|
||||
msgid "Collapse All"
|
||||
msgstr "Collapse All"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Collapse section"
|
||||
msgstr "Collapse section"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136
|
||||
msgid "Columns"
|
||||
msgstr "Columns"
|
||||
@ -296,21 +330,17 @@ msgstr "Columns"
|
||||
msgid "Company"
|
||||
msgstr "Company"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
#: apps/client/src/components/ai-actions.tsx:119
|
||||
#: apps/client/src/components/ai-actions.tsx:122
|
||||
msgid "Confident"
|
||||
msgstr "Confident"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Confirm New Password"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
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"
|
||||
msgstr "Copy"
|
||||
|
||||
@ -351,7 +381,12 @@ msgstr "Create one now"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Create Sample Resume"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr "Current Password"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "Custom CSS"
|
||||
@ -360,7 +395,7 @@ msgstr "Custom CSS"
|
||||
msgid "Custom resume sections"
|
||||
msgstr "Custom resume sections"
|
||||
|
||||
#: apps/client/src/stores/resume.ts:47
|
||||
#: apps/client/src/stores/resume.ts:53
|
||||
msgid "Custom Section"
|
||||
msgstr "Custom Section"
|
||||
|
||||
@ -386,10 +421,10 @@ msgstr "Dark"
|
||||
msgid "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/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
|
||||
msgid "Date or Date Range"
|
||||
msgstr "Date or Date Range"
|
||||
@ -407,11 +442,15 @@ msgstr "Delete"
|
||||
msgid "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/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/skills.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||
msgid "Description"
|
||||
msgstr "Description"
|
||||
|
||||
@ -423,18 +462,18 @@ msgstr "Design single/multi page resumes"
|
||||
msgid "Disable"
|
||||
msgstr "Disable"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Disable 2FA"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Discard"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr "Documentation"
|
||||
|
||||
@ -442,7 +481,7 @@ msgstr "Documentation"
|
||||
msgid "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!"
|
||||
msgstr "Don't know where to begin? Hit the docs!"
|
||||
|
||||
@ -450,7 +489,7 @@ msgstr "Don't know where to begin? Hit the docs!"
|
||||
msgid "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"
|
||||
msgstr "Donate to Reactive Resume"
|
||||
|
||||
@ -458,12 +497,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."
|
||||
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."
|
||||
msgstr "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Download PDF"
|
||||
|
||||
@ -487,7 +525,7 @@ msgstr "Duplicate an existing item"
|
||||
msgid "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"
|
||||
msgstr "Edit"
|
||||
|
||||
@ -498,12 +536,12 @@ msgstr "Effects"
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:90
|
||||
#: apps/client/src/pages/auth/register/page.tsx:141
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181
|
||||
msgid "Email"
|
||||
msgstr "Email"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Enable 2FA"
|
||||
|
||||
@ -531,6 +569,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."
|
||||
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
|
||||
msgid "Errors"
|
||||
msgstr "Errors"
|
||||
@ -539,11 +581,22 @@ msgstr "Errors"
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:271
|
||||
msgid "Expand All"
|
||||
msgstr "Expand All"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Expand section"
|
||||
msgstr "Expand section"
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "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/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Export"
|
||||
@ -564,19 +617,19 @@ msgstr "Finally,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Fix Spelling & Grammar"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Font Family"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Font Size"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Font Subset"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Font Variants"
|
||||
|
||||
@ -584,7 +637,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."
|
||||
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"
|
||||
msgstr "Forget"
|
||||
|
||||
@ -601,7 +654,7 @@ msgstr "Forgot your password?"
|
||||
msgid "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?"
|
||||
msgstr "Found a bug, or have an idea for a new feature?"
|
||||
|
||||
@ -609,12 +662,12 @@ msgstr "Found a bug, or have an idea for a new feature?"
|
||||
msgid "Free, forever"
|
||||
msgstr "Free, forever"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:121
|
||||
#: apps/client/src/components/ai-actions.tsx:124
|
||||
#: apps/client/src/components/ai-actions.tsx:125
|
||||
#: apps/client/src/components/ai-actions.tsx:128
|
||||
msgid "Friendly"
|
||||
msgstr "Friendly"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:56
|
||||
msgid "Full Name"
|
||||
msgstr "Full Name"
|
||||
|
||||
@ -643,6 +696,10 @@ msgstr "Give your old resume a new name."
|
||||
msgid "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
|
||||
msgid "Google"
|
||||
msgstr "Google"
|
||||
@ -651,11 +708,11 @@ msgstr "Google"
|
||||
msgid "Grayscale"
|
||||
msgstr "Grayscale"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||
msgid "Grid"
|
||||
msgstr "Grid"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:70
|
||||
msgid "Headline"
|
||||
msgstr "Headline"
|
||||
|
||||
@ -668,7 +725,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."
|
||||
|
||||
#: 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
|
||||
msgid "Hidden"
|
||||
msgstr "Hidden"
|
||||
@ -677,7 +734,7 @@ msgstr "Hidden"
|
||||
msgid "Hide"
|
||||
msgstr "Hide"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Hide Icons"
|
||||
|
||||
@ -734,7 +791,7 @@ msgstr "Improve Writing"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
|
||||
@ -743,7 +800,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>."
|
||||
|
||||
#: 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"
|
||||
msgstr "Information"
|
||||
|
||||
@ -802,10 +860,10 @@ msgstr "john.doe@example.com"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||
msgid "Keywords"
|
||||
msgstr "Keywords"
|
||||
|
||||
@ -824,7 +882,8 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Last updated {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx: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"
|
||||
msgstr "Layout"
|
||||
|
||||
@ -837,7 +896,7 @@ msgid "Letter"
|
||||
msgstr "Letter"
|
||||
|
||||
#: 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"
|
||||
msgstr "Level"
|
||||
|
||||
@ -853,7 +912,7 @@ msgstr "Light"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Light or dark theme"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Line Height"
|
||||
|
||||
@ -862,14 +921,14 @@ msgstr "Line Height"
|
||||
msgid "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"
|
||||
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/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:120
|
||||
msgid "Location"
|
||||
msgstr "Location"
|
||||
|
||||
@ -897,7 +956,7 @@ msgstr "Logout"
|
||||
msgid "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"
|
||||
msgstr "Main"
|
||||
|
||||
@ -914,7 +973,7 @@ msgstr "March 2023"
|
||||
|
||||
#: 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/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
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "March 2023 - Present"
|
||||
@ -923,7 +982,7 @@ msgstr "March 2023 - Present"
|
||||
msgid "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"
|
||||
msgstr "Max Tokens"
|
||||
|
||||
@ -931,18 +990,18 @@ msgstr "Max Tokens"
|
||||
msgid "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"
|
||||
msgstr "Model"
|
||||
|
||||
#: 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/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: 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/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/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/dashboard/settings/_sections/account.tsx:153
|
||||
msgid "Name"
|
||||
@ -957,7 +1016,7 @@ msgstr "Name"
|
||||
msgid "Network"
|
||||
msgstr "Network"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "New Password"
|
||||
|
||||
@ -974,6 +1033,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Note: This will make your account less secure."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Notes"
|
||||
@ -1009,16 +1069,16 @@ msgstr "OpenAI did not return any choices for your text."
|
||||
msgid "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"
|
||||
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/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Options"
|
||||
|
||||
@ -1032,22 +1092,23 @@ msgid "Organization"
|
||||
msgstr "Organization"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Page"
|
||||
|
||||
#: 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}"
|
||||
msgstr "Page {pageNumber}"
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Password"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||
msgid "PDF"
|
||||
msgstr "PDF"
|
||||
|
||||
@ -1055,7 +1116,7 @@ msgstr "PDF"
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr "Personal notes for each resume"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:108
|
||||
msgid "Phone"
|
||||
msgstr "Phone"
|
||||
|
||||
@ -1109,14 +1170,12 @@ msgstr "Powered by <0>Simple Icons</0>"
|
||||
msgid "Primary Color"
|
||||
msgstr "Primary Color"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Privacy Policy"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
#: apps/client/src/components/ai-actions.tsx:113
|
||||
#: apps/client/src/components/ai-actions.tsx:116
|
||||
msgid "Professional"
|
||||
msgstr "Professional"
|
||||
|
||||
@ -1132,7 +1191,7 @@ msgstr "Public"
|
||||
msgid "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"
|
||||
msgstr "Raise an issue"
|
||||
|
||||
@ -1144,11 +1203,10 @@ msgstr "Raise an issue"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1175,12 +1233,12 @@ msgstr "Reactive Resume thrives thanks to its vibrant community. This project ow
|
||||
msgid "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
|
||||
msgid "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"
|
||||
msgstr "Remove Page"
|
||||
|
||||
@ -1199,7 +1257,7 @@ msgstr "Resend email confirmation link"
|
||||
msgid "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"
|
||||
msgstr "Reset Layout"
|
||||
|
||||
@ -1213,8 +1271,8 @@ msgid "Reset Zoom"
|
||||
msgstr "Reset Zoom"
|
||||
|
||||
#: 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:37
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||
msgid "Resumes"
|
||||
msgstr "Resumes"
|
||||
|
||||
@ -1237,11 +1295,11 @@ msgstr "Rounded"
|
||||
msgid "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"
|
||||
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"
|
||||
msgstr "Saved"
|
||||
|
||||
@ -1262,15 +1320,15 @@ msgstr "Scroll to Pan"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Scroll to Zoom"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Search for a font family"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Search for a font subset"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Search for a font variant"
|
||||
|
||||
@ -1282,7 +1340,7 @@ msgstr "Search for a language"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Secure with two-factor authentication"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Security"
|
||||
|
||||
@ -1294,7 +1352,7 @@ msgstr "Self-host with Docker"
|
||||
msgid "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"
|
||||
msgstr "Send me a message"
|
||||
|
||||
@ -1314,6 +1372,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Setup two-factor authentication on your account"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Sharing"
|
||||
@ -1330,7 +1389,7 @@ msgstr "Show Break Line"
|
||||
msgid "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"
|
||||
msgstr "Sidebar"
|
||||
|
||||
@ -1408,6 +1467,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Start building your resume by giving it a name."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Statistics"
|
||||
@ -1422,17 +1482,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/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/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/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "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!"
|
||||
msgstr "Support the app by donating what you can!"
|
||||
|
||||
@ -1444,11 +1504,20 @@ msgstr "Supporting Reactive Resume"
|
||||
msgid "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
|
||||
msgid "System"
|
||||
msgstr "System"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Template"
|
||||
@ -1465,15 +1534,20 @@ msgstr "Testimonials"
|
||||
msgid "Text Color"
|
||||
msgstr "Text Color"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "The passwords you entered do not match."
|
||||
#: apps/client/src/pages/public/error.tsx:17
|
||||
msgid "The page you're looking for doesn't exist."
|
||||
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
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1604,7 @@ msgstr "Track views and downloads"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Two-Factor Authentication"
|
||||
|
||||
@ -1552,11 +1626,12 @@ msgid "Type of Study"
|
||||
msgstr "Type of Study"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Typography"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Underline Links"
|
||||
|
||||
@ -1599,6 +1674,14 @@ msgstr "URL"
|
||||
msgid "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:57
|
||||
msgid "Use your backup code"
|
||||
@ -1651,7 +1734,7 @@ msgstr "Version 4"
|
||||
msgid "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"
|
||||
msgstr "Visible"
|
||||
|
||||
@ -1665,15 +1748,15 @@ 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/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/experience.tsx:100
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:96
|
||||
msgid "Website"
|
||||
msgstr "Website"
|
||||
|
||||
@ -1681,10 +1764,14 @@ msgstr "Website"
|
||||
msgid "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/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
||||
#: apps/client/src/pages/public/error.tsx:26
|
||||
msgid "You are not authorized to access this page."
|
||||
msgstr "You are not authorized to access this page."
|
||||
|
||||
#: 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."
|
||||
msgstr "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||
|
||||
@ -1692,19 +1779,27 @@ msgstr "You can add multiple keywords by separating them with a comma or pressin
|
||||
msgid "You can also enter your username."
|
||||
msgstr "You can also enter your username."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||
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."
|
||||
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."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||
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 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
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
msgstr "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||
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 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
|
||||
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."
|
||||
|
||||
#: 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."
|
||||
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 +1816,7 @@ msgstr "You've got mail!"
|
||||
msgid "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."
|
||||
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 +1828,7 @@ msgstr "Your email address has been verified successfully."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Your password has been updated successfully."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: es\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-11-04 14:22\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Spanish\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}}"
|
||||
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>"
|
||||
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>"
|
||||
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."
|
||||
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>"
|
||||
msgstr "<0>La comunidad ha dedicado mucho tiempo a escribir la documentación de Reactive Resume, y estoy seguro de que te ayudará al utilizar la aplicación.</0><1>También hay un montón de ejemplos que te ayudarán a empezar, y características que quizás no conozcas y que podrían ayudarte a construir un currículum perfecto.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>La autenticación de doble factor está actualmente deshabilitada.</0> Puedes habilitarla añadiendo una aplicación de autenticación a tu cuenta."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>La autenticación de doble factor está habilitada.</0> Se te pedirá que introduzcas un código cada vez que inicies sesión."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Cuenta"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Añadir campo personalizado"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:203
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Añadir un nuevo elemento"
|
||||
@ -112,12 +112,12 @@ msgstr "Añadir un nuevo elemento"
|
||||
msgid "Add a new item"
|
||||
msgstr "Añadir un nuevo elemento"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:267
|
||||
msgid "Add a new section"
|
||||
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"
|
||||
msgstr "Añadir nueva página"
|
||||
|
||||
@ -133,6 +133,14 @@ msgstr "¿Ya tienes una cuenta?"
|
||||
msgid "An error occurred while validating the file."
|
||||
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
|
||||
msgid "and many more..."
|
||||
msgstr "y mucho más..."
|
||||
@ -191,6 +199,18 @@ msgstr "Disponible en {languagesCount} idiomas"
|
||||
msgid "Awarder"
|
||||
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/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
@ -209,16 +229,16 @@ msgstr "Código de respaldo"
|
||||
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."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||
msgid "Base URL"
|
||||
msgstr "URL base"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:58
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr "Lo esencial"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
msgid "Basics"
|
||||
msgstr "Lo esencial"
|
||||
|
||||
@ -246,8 +266,8 @@ msgstr "Por la comunidad, para la comunidad."
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
#: apps/client/src/components/ai-actions.tsx:107
|
||||
#: apps/client/src/components/ai-actions.tsx:110
|
||||
msgid "Casual"
|
||||
msgstr "Informal"
|
||||
|
||||
@ -255,12 +275,16 @@ msgstr "Informal"
|
||||
msgid "Center Artboard"
|
||||
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/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Cambiar contraseña"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
#: apps/client/src/components/ai-actions.tsx:101
|
||||
msgid "Change Tone"
|
||||
msgstr "Cambiar tono"
|
||||
|
||||
@ -288,6 +312,16 @@ msgstr "Código"
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr "El código debe tener exactamente 6 dígitos."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:272
|
||||
msgid "Collapse All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Collapse section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136
|
||||
msgid "Columns"
|
||||
msgstr "Columnas"
|
||||
@ -296,21 +330,17 @@ msgstr "Columnas"
|
||||
msgid "Company"
|
||||
msgstr "Empresa"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
#: apps/client/src/components/ai-actions.tsx:119
|
||||
#: apps/client/src/components/ai-actions.tsx:122
|
||||
msgid "Confident"
|
||||
msgstr "Confiado"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Confirmar nueva contraseña"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
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"
|
||||
msgstr "Copiar"
|
||||
|
||||
@ -351,7 +381,12 @@ msgstr "Crear uno ahora"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Crear un currículum de ejemplo"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr "Contraseña actual"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "CSS personalizado"
|
||||
@ -360,7 +395,7 @@ msgstr "CSS personalizado"
|
||||
msgid "Custom resume sections"
|
||||
msgstr "Secciones de currículum personalizadas"
|
||||
|
||||
#: apps/client/src/stores/resume.ts:47
|
||||
#: apps/client/src/stores/resume.ts:53
|
||||
msgid "Custom Section"
|
||||
msgstr "Sección personalizada"
|
||||
|
||||
@ -386,10 +421,10 @@ msgstr "Oscuro"
|
||||
msgid "Date"
|
||||
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/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
|
||||
msgid "Date or Date Range"
|
||||
msgstr "Fecha o rango de fechas"
|
||||
@ -407,11 +442,15 @@ msgstr "Eliminar"
|
||||
msgid "Delete Account"
|
||||
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/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/skills.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||
msgid "Description"
|
||||
msgstr "Descripción"
|
||||
|
||||
@ -423,18 +462,18 @@ msgstr "Diseñar currículums de una o varias páginas"
|
||||
msgid "Disable"
|
||||
msgstr "Deshabilitar"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Deshabilitar 2FA"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Descartar"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr "Documentación"
|
||||
|
||||
@ -442,7 +481,7 @@ msgstr "Documentación"
|
||||
msgid "Don't have an account?"
|
||||
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!"
|
||||
msgstr "¿No sabes por dónde empezar? ¡Revisa la documentación!"
|
||||
|
||||
@ -450,7 +489,7 @@ msgstr "¿No sabes por dónde empezar? ¡Revisa la documentación!"
|
||||
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>"
|
||||
|
||||
#: 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"
|
||||
msgstr "Donar a Reactive Resume"
|
||||
|
||||
@ -458,12 +497,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."
|
||||
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."
|
||||
msgstr "Descarga un PDF de tu currículum. Este archivo se puede utilizar para imprimir tu currículum, enviarlo a los reclutadores o cargarlo en portales de empleo."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Descargar PDF"
|
||||
|
||||
@ -487,7 +525,7 @@ msgstr "Duplicar un elemento existente"
|
||||
msgid "Duplicate an existing resume"
|
||||
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"
|
||||
msgstr "Editar"
|
||||
|
||||
@ -498,12 +536,12 @@ msgstr "Efectos"
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:90
|
||||
#: apps/client/src/pages/auth/register/page.tsx:141
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181
|
||||
msgid "Email"
|
||||
msgstr "Correo electrónico"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Habilitar 2FA"
|
||||
|
||||
@ -531,6 +569,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."
|
||||
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
|
||||
msgid "Errors"
|
||||
msgstr "Errores"
|
||||
@ -539,11 +581,22 @@ msgstr "Errores"
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr "Incluso si no te encuentras en la posición de contribuir financieramente, puedes marcar la diferencia guardando el repositorio con una estrella, hablando de él con tus amigos o dejando un mensaje para saber cómo te ha ayudado Reactive Resume. ¡Tu feedback y apoyo son siempre bienvenidos y gratamente apreciados!"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:271
|
||||
msgid "Expand All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Expand section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "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 "Explora las plantillas disponibles en Reactive Resume y ve los currículums elaborados con ellas. También podrían servir como ejemplos para ayudar a guiar la creación de tu próximo currículum."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Exportar"
|
||||
@ -564,19 +617,19 @@ msgstr "Por último,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Corregir la ortografía y la gramática"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Familia tipográfica"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Tamaño de fuente"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Subconjunto de fuentes"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Variante de fuente"
|
||||
|
||||
@ -584,7 +637,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."
|
||||
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"
|
||||
msgstr "Olvidar"
|
||||
|
||||
@ -601,7 +654,7 @@ msgstr "¿Olvidaste tu contraseña?"
|
||||
msgid "Format"
|
||||
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?"
|
||||
msgstr "¿Encontraste un error o tienes una idea para una nueva característica?"
|
||||
|
||||
@ -609,12 +662,12 @@ msgstr "¿Encontraste un error o tienes una idea para una nueva característica?
|
||||
msgid "Free, forever"
|
||||
msgstr "Gratuito para siempre"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:121
|
||||
#: apps/client/src/components/ai-actions.tsx:124
|
||||
#: apps/client/src/components/ai-actions.tsx:125
|
||||
#: apps/client/src/components/ai-actions.tsx:128
|
||||
msgid "Friendly"
|
||||
msgstr "Amigable"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:56
|
||||
msgid "Full Name"
|
||||
msgstr "Nombre completo"
|
||||
|
||||
@ -643,6 +696,10 @@ msgstr "Da un nuevo nombre a tu antiguo currículum."
|
||||
msgid "Go to Dashboard"
|
||||
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
|
||||
msgid "Google"
|
||||
msgstr "Google"
|
||||
@ -651,11 +708,11 @@ msgstr "Google"
|
||||
msgid "Grayscale"
|
||||
msgstr "Escala de grises"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||
msgid "Grid"
|
||||
msgstr "Cuadrícula"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:70
|
||||
msgid "Headline"
|
||||
msgstr "Título"
|
||||
|
||||
@ -668,7 +725,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."
|
||||
|
||||
#: 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
|
||||
msgid "Hidden"
|
||||
msgstr "Oculto"
|
||||
@ -677,7 +734,7 @@ msgstr "Oculto"
|
||||
msgid "Hide"
|
||||
msgstr "Ocultar"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Ocultar iconos"
|
||||
|
||||
@ -734,7 +791,7 @@ msgstr "Mejorar la escritura"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "En caso de que no puedas escanear este código QR, también puedes copiar y pegar este enlace en tu aplicación de autenticación."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "En esta sección, puedes cambiar tu contraseña y habilitar o deshabilitar la autenticación de doble factor."
|
||||
|
||||
@ -743,7 +800,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>."
|
||||
|
||||
#: 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"
|
||||
msgstr "Información"
|
||||
|
||||
@ -802,10 +860,10 @@ msgstr "juan.nadie@ejemplo.es"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||
msgid "Keywords"
|
||||
msgstr "Palabras clave"
|
||||
|
||||
@ -824,7 +882,8 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Última actualización: {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx: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"
|
||||
msgstr "Diseño"
|
||||
|
||||
@ -837,7 +896,7 @@ msgid "Letter"
|
||||
msgstr "Carta"
|
||||
|
||||
#: 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"
|
||||
msgstr "Nivel"
|
||||
|
||||
@ -853,7 +912,7 @@ msgstr "Claro"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Tema claro u oscuro"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Altura de la línea"
|
||||
|
||||
@ -862,14 +921,14 @@ msgstr "Altura de la línea"
|
||||
msgid "LinkedIn, JSON Resume, 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"
|
||||
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/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:120
|
||||
msgid "Location"
|
||||
msgstr "Ubicación"
|
||||
|
||||
@ -897,7 +956,7 @@ msgstr "Cerrar sesión"
|
||||
msgid "Lost your device?"
|
||||
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"
|
||||
msgstr "Principal"
|
||||
|
||||
@ -914,7 +973,7 @@ msgstr "Marzo de 2023"
|
||||
|
||||
#: 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/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
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "Marzo 2023 - Presente"
|
||||
@ -923,7 +982,7 @@ msgstr "Marzo 2023 - Presente"
|
||||
msgid "Margin"
|
||||
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"
|
||||
msgstr "Máximo de tokens"
|
||||
|
||||
@ -931,18 +990,18 @@ msgstr "Máximo de tokens"
|
||||
msgid "MIT License"
|
||||
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"
|
||||
msgstr "Modelo"
|
||||
|
||||
#: 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/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: 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/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/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/dashboard/settings/_sections/account.tsx:153
|
||||
msgid "Name"
|
||||
@ -957,7 +1016,7 @@ msgstr "Nombre"
|
||||
msgid "Network"
|
||||
msgstr "Red"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Nueva contraseña"
|
||||
|
||||
@ -974,6 +1033,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Nota: Esto hará que tu cuenta sea menos segura."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Notas"
|
||||
@ -1009,16 +1069,16 @@ msgstr "OpenAI no devolvió ninguna opción para tu texto."
|
||||
msgid "OpenAI Integration"
|
||||
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"
|
||||
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/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Opciones"
|
||||
|
||||
@ -1032,22 +1092,23 @@ msgid "Organization"
|
||||
msgstr "Organización"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Página"
|
||||
|
||||
#: 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}"
|
||||
msgstr "Página {pageNumber}"
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Contraseña"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||
msgid "PDF"
|
||||
msgstr "PDF"
|
||||
|
||||
@ -1055,7 +1116,7 @@ msgstr "PDF"
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr "Notas personales para cada currículum"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:108
|
||||
msgid "Phone"
|
||||
msgstr "Teléfono"
|
||||
|
||||
@ -1109,14 +1170,12 @@ msgstr "Impulsado por <0>Simple Icons</0>"
|
||||
msgid "Primary Color"
|
||||
msgstr "Color primario"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Política de privacidad"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
#: apps/client/src/components/ai-actions.tsx:113
|
||||
#: apps/client/src/components/ai-actions.tsx:116
|
||||
msgid "Professional"
|
||||
msgstr "Profesional"
|
||||
|
||||
@ -1132,7 +1191,7 @@ msgstr "Público"
|
||||
msgid "Publisher"
|
||||
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"
|
||||
msgstr "Reportar problema"
|
||||
|
||||
@ -1144,11 +1203,10 @@ msgstr "Reportar problema"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1175,12 +1233,12 @@ msgstr "Reactive Resume prospera gracias a su vibrante comunidad. Este proyecto
|
||||
msgid "Redo"
|
||||
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
|
||||
msgid "Remove"
|
||||
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"
|
||||
msgstr "Eliminar página"
|
||||
|
||||
@ -1199,7 +1257,7 @@ msgstr "Reenviar enlace de confirmación por correo electrónico"
|
||||
msgid "Reset"
|
||||
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"
|
||||
msgstr "Restablecer diseño"
|
||||
|
||||
@ -1213,8 +1271,8 @@ msgid "Reset Zoom"
|
||||
msgstr "Restablecer zoom"
|
||||
|
||||
#: 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:37
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||
msgid "Resumes"
|
||||
msgstr "Currículums"
|
||||
|
||||
@ -1237,11 +1295,11 @@ msgstr "Redondeado"
|
||||
msgid "Save Changes"
|
||||
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"
|
||||
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"
|
||||
msgstr "Guardado"
|
||||
|
||||
@ -1262,15 +1320,15 @@ msgstr "Desplácese hasta Pan"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Zoom"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Buscar una familia tipográfica"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Buscar un subconjunto de fuentes"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Buscar una variante de fuente"
|
||||
|
||||
@ -1282,7 +1340,7 @@ msgstr "Buscar un idioma"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Seguridad con autenticación de doble factor"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Seguridad"
|
||||
|
||||
@ -1294,7 +1352,7 @@ msgstr "Auto alojamiento con Docker"
|
||||
msgid "Send 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"
|
||||
msgstr "Enviarme un mensaje"
|
||||
|
||||
@ -1314,6 +1372,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Configura la autenticación de doble factor en tu cuenta"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Compartir"
|
||||
@ -1330,7 +1389,7 @@ msgstr "Mostrar línea de ruptura"
|
||||
msgid "Show Page Numbers"
|
||||
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"
|
||||
msgstr "Barra lateral"
|
||||
|
||||
@ -1408,6 +1467,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Comienza a crear tu currículum dándole un nombre."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Estadísticas"
|
||||
@ -1422,17 +1482,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/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/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/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "Summary"
|
||||
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!"
|
||||
msgstr "¡Apoya la aplicación donando lo que puedas!"
|
||||
|
||||
@ -1444,11 +1504,20 @@ msgstr "Apoyar Reactive Resume"
|
||||
msgid "Supports A4/Letter page formats"
|
||||
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
|
||||
msgid "System"
|
||||
msgstr "Sistema"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Plantilla"
|
||||
@ -1465,15 +1534,20 @@ msgstr "Testimonios"
|
||||
msgid "Text Color"
|
||||
msgstr "Color del texto"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "Las contraseñas ingresadas no coinciden."
|
||||
#: apps/client/src/pages/public/error.tsx:17
|
||||
msgid "The page you're looking for doesn't exist."
|
||||
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
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "El currículum que deseas actualizar está bloqueado; desbloquéalo si deseas realizar algún cambio."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1604,7 @@ msgstr "Seguimiento de visitas y descargas"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Autenticación de doble factor"
|
||||
|
||||
@ -1552,11 +1626,12 @@ msgid "Type of Study"
|
||||
msgstr "Tipo de estudio"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Tipografía"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Subrayar enlaces"
|
||||
|
||||
@ -1599,6 +1674,14 @@ msgstr "URL"
|
||||
msgid "URL must start with 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:57
|
||||
msgid "Use your backup code"
|
||||
@ -1651,7 +1734,7 @@ msgstr "Versión 4"
|
||||
msgid "Views"
|
||||
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"
|
||||
msgstr "Visible"
|
||||
|
||||
@ -1665,15 +1748,15 @@ 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/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/experience.tsx:100
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:96
|
||||
msgid "Website"
|
||||
msgstr "Sitio Web"
|
||||
|
||||
@ -1681,10 +1764,14 @@ msgstr "Sitio Web"
|
||||
msgid "What's new in the latest version"
|
||||
msgstr "Novedades en la última versión"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
||||
#: apps/client/src/pages/public/error.tsx:26
|
||||
msgid "You are not authorized to access this page."
|
||||
msgstr "No está autorizado a acceder a esta página."
|
||||
|
||||
#: 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."
|
||||
msgstr "Puedes agregar varias palabras clave separándolas con una coma o presionando Enter."
|
||||
|
||||
@ -1692,19 +1779,27 @@ msgstr "Puedes agregar varias palabras clave separándolas con una coma o presio
|
||||
msgid "You can also enter your username."
|
||||
msgstr "También puedes ingresar tu nombre de usuario."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||
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."
|
||||
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."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||
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 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
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
msgstr "Puedes utilizar la API de OpenAI para ayudarte a generar contenido o mejorar tu escritura mientras redactas tu currículum."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||
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 "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
|
||||
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."
|
||||
|
||||
#: 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."
|
||||
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 +1816,7 @@ msgstr "¡Tienes mensajes!"
|
||||
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!"
|
||||
|
||||
#: 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."
|
||||
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 +1828,7 @@ msgstr "Tu dirección de correo electrónico se ha verificado con éxito."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Su clave API de OpenAI aún no ha sido configurada. Por favor, vaya a la configuración de su cuenta para habilitar la integración de OpenAI."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Tu contraseña se ha actualizado con éxito."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: fa\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-11-04 14:22\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Persian\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -30,27 +30,27 @@ msgstr "{templatesCount} قالب رزومه برای انتخاب"
|
||||
msgid "{value, plural, one {Column} other {Columns}}"
|
||||
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>"
|
||||
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>"
|
||||
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."
|
||||
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>"
|
||||
msgstr "<0>جامعه Reactive Resume زمان زیادی را صرف نوشتن مستندات کرده است، و من مطمئن هستم که به شما در شروع کار با برنامه کمک خواهد کرد.</0> <1>همچنین مثالها و تمپلتهای زیادی وجود دارد که به شما در شروع کار کمک میکند، و شاید این مثالها در شناخت امکاناتی که ممکن است در روند ساختن رزومه ندانید مفید باشند.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0> احراز هویت دو مرحلهای در حال حاضر غیرفعال است.</0> می توانید با نصب یک اپلیکیشن احراز هویت (مثل Google Authenticator یا Microsoft Authenticator) و افزودن آن به حساب خود، ورود دو مرحلهای را فعال کنید."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>احراز هویت دو عاملی فعال است.</0> در هر بار ورود، از شما خواسته میشود که یک کد وارد کنید."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "حساب"
|
||||
msgid "Add a custom field"
|
||||
msgstr "افزودن فیلد دلخواه"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:203
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "افزودن مورد جدید"
|
||||
@ -112,12 +112,12 @@ msgstr "افزودن مورد جدید"
|
||||
msgid "Add a new item"
|
||||
msgstr "افزودن مورد جدید"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:267
|
||||
msgid "Add a new section"
|
||||
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"
|
||||
msgstr "افزودن برگهٔ تازه"
|
||||
|
||||
@ -133,6 +133,14 @@ msgstr "درحال حاضر حساب کاربری دارید"
|
||||
msgid "An error occurred while validating the file."
|
||||
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
|
||||
msgid "and many more..."
|
||||
msgstr "- و خیلی چیزهای دیگر..."
|
||||
@ -191,6 +199,18 @@ msgstr "در {languagesCount} زبان موجود است"
|
||||
msgid "Awarder"
|
||||
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/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
@ -209,16 +229,16 @@ msgstr "کد پشتیبان"
|
||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||
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"
|
||||
msgstr ""
|
||||
msgstr "آدرس پایه"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:58
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr "مبانی"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
msgid "Basics"
|
||||
msgstr "مبانی"
|
||||
|
||||
@ -246,8 +266,8 @@ msgstr "توسط جامعه، برای جامعه."
|
||||
msgid "Cancel"
|
||||
msgstr "انصراف"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
#: apps/client/src/components/ai-actions.tsx:107
|
||||
#: apps/client/src/components/ai-actions.tsx:110
|
||||
msgid "Casual"
|
||||
msgstr "غیررسمی"
|
||||
|
||||
@ -255,12 +275,16 @@ msgstr "غیررسمی"
|
||||
msgid "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/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "تغییر رمز عبور"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
#: apps/client/src/components/ai-actions.tsx:101
|
||||
msgid "Change Tone"
|
||||
msgstr "تغییر لحن"
|
||||
|
||||
@ -288,6 +312,16 @@ msgstr "کد"
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr "کد باید دقیقاً 6 رقمی باشد."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:272
|
||||
msgid "Collapse All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Collapse section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136
|
||||
msgid "Columns"
|
||||
msgstr "ستونها"
|
||||
@ -296,21 +330,17 @@ msgstr "ستونها"
|
||||
msgid "Company"
|
||||
msgstr "شرکت"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
#: apps/client/src/components/ai-actions.tsx:119
|
||||
#: apps/client/src/components/ai-actions.tsx:122
|
||||
msgid "Confident"
|
||||
msgstr "مطمئن"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "تایید گذرواژه جدید"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
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"
|
||||
msgstr "کپی"
|
||||
|
||||
@ -351,16 +381,21 @@ msgstr "اکنون یکی ایجاد کنید"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "ایجاد نمونه رزومه"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr "گذرواژه فعلی"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
msgstr "CSS سفارشی"
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:62
|
||||
msgid "Custom resume sections"
|
||||
msgstr "بخشهای رزومه شخصیسازی شده"
|
||||
|
||||
#: apps/client/src/stores/resume.ts:47
|
||||
#: apps/client/src/stores/resume.ts:53
|
||||
msgid "Custom Section"
|
||||
msgstr "بخش شخصیسازی شده"
|
||||
|
||||
@ -386,10 +421,10 @@ msgstr "تاریک"
|
||||
msgid "Date"
|
||||
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/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
|
||||
msgid "Date or Date Range"
|
||||
msgstr "تاریخ دقیق یا محدوده تاریخ"
|
||||
@ -407,11 +442,15 @@ msgstr "حذف"
|
||||
msgid "Delete Account"
|
||||
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/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/skills.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||
msgid "Description"
|
||||
msgstr "توضیحات"
|
||||
|
||||
@ -423,18 +462,18 @@ msgstr "طراحی رزومه تک / چند صفحهای"
|
||||
msgid "Disable"
|
||||
msgstr "غیرفعال"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "غیرفعالسازی ورود دو مرحلهای"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "صرفنظر"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr "مستندات"
|
||||
|
||||
@ -442,7 +481,7 @@ msgstr "مستندات"
|
||||
msgid "Don't have an account?"
|
||||
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!"
|
||||
msgstr "نمی دانید از کجا شروع کنید؟ از مستندات!"
|
||||
|
||||
@ -450,7 +489,7 @@ msgstr "نمی دانید از کجا شروع کنید؟ از مستندات!"
|
||||
msgid "Don't see your language? <0>Help translate the app.</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"
|
||||
msgstr "به Reactive Resume دونیت کنید"
|
||||
|
||||
@ -458,12 +497,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."
|
||||
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."
|
||||
msgstr "دریافت یک پیدیاف از رزومهی خود. این فایل میتواند برای چاپ رزومهی شما، ارسال آن به کارفرمایان، یا آپلود آن در پورتالهای کاریابی استفاده شود."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "دربافت پیدیاف"
|
||||
|
||||
@ -487,7 +525,7 @@ msgstr "کپی یک مورد موجود"
|
||||
msgid "Duplicate an existing resume"
|
||||
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"
|
||||
msgstr "ویرایش"
|
||||
|
||||
@ -498,12 +536,12 @@ msgstr "جلوهها"
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:90
|
||||
#: apps/client/src/pages/auth/register/page.tsx:141
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181
|
||||
msgid "Email"
|
||||
msgstr "ایمیل"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "فعالسازی ورود دو مرحلهای"
|
||||
|
||||
@ -531,6 +569,10 @@ msgstr "رمز عبور یکبار مصرف ارائه شده توسط برنا
|
||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||
msgstr "ایمیل خود را وارد کنید و ما یک لینک برای بازنشانی رمز عبور به شما ارسال خواهیم کرد اگر حساب وجود داشته باشد."
|
||||
|
||||
#: apps/client/src/pages/public/error.tsx:46
|
||||
msgid "Error {statusCode}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||
msgid "Errors"
|
||||
msgstr "خطاها"
|
||||
@ -539,11 +581,22 @@ msgstr "خطاها"
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr "حتی اگر قادر به کمک مالی نباشید، هنوز میتوانید با به دادن یک ستاره در گیت هاب، گسترش خبر به دوستانتان یا ارسال یک پیام سریع برای من که چگونه Reactive Resume به شما کمک کرده است، تفاوت ایجاد کنید. بازخورد و حمایت شما همیشه خوشآمدید و بسیار قدردانی میشود!"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:271
|
||||
msgid "Expand All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Expand section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "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 "قالبهای موجود در Reactive Resume را بررسی کرده و رزومههای تولید شده با آنها را مشاهده کنید. آنها همچنین میتوانند به عنوان نمونهها برای کمک در هدایت ایجاد رزومه بعدی شما خدمت کنند."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "خروجی گرفتن"
|
||||
@ -564,19 +617,19 @@ msgstr "سرانجام،"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "تصحیح املا و گرامر"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "خانواده فونت"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "اندازه فونت"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "زیر مجموعه فونت"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "انواع فونت"
|
||||
|
||||
@ -584,7 +637,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."
|
||||
msgstr "برای مثال، اطلاعات مربوط به شرکتهایی که این رزومه را به آنها ارسال کردهاید یا لینکهایی به توضیحات شغلی میتوانند در اینجا یادداشت شوند."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||
msgid "Forget"
|
||||
msgstr "فراموش کردن"
|
||||
|
||||
@ -601,7 +654,7 @@ msgstr "گذرواژه خود را فراموش کردهاید؟"
|
||||
msgid "Format"
|
||||
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?"
|
||||
msgstr "یک اشکال پیدا کردید، یا ایده ای برای یک ویژگی جدید دارید؟"
|
||||
|
||||
@ -609,12 +662,12 @@ msgstr "یک اشکال پیدا کردید، یا ایده ای برای یک
|
||||
msgid "Free, forever"
|
||||
msgstr "رایگان برای همیشه"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:121
|
||||
#: apps/client/src/components/ai-actions.tsx:124
|
||||
#: apps/client/src/components/ai-actions.tsx:125
|
||||
#: apps/client/src/components/ai-actions.tsx:128
|
||||
msgid "Friendly"
|
||||
msgstr "دوستانه"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:56
|
||||
msgid "Full Name"
|
||||
msgstr "نام و نام خانوادگی"
|
||||
|
||||
@ -643,6 +696,10 @@ msgstr "به رزومه قدیمی خود یک نام جدید بدهید."
|
||||
msgid "Go to Dashboard"
|
||||
msgstr "رفتن به داشبورد"
|
||||
|
||||
#: apps/client/src/pages/public/error.tsx:55
|
||||
msgid "Go to home"
|
||||
msgstr "رفتن به صفحه اصلی"
|
||||
|
||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||
msgid "Google"
|
||||
msgstr "گوگل"
|
||||
@ -651,11 +708,11 @@ msgstr "گوگل"
|
||||
msgid "Grayscale"
|
||||
msgstr "سیاهوسفید"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||
msgid "Grid"
|
||||
msgstr "جدول"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:70
|
||||
msgid "Headline"
|
||||
msgstr "تيتر"
|
||||
|
||||
@ -668,7 +725,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr "در اینجا میتوانید پروفایل خود را بهروزرسانی کنید تا تجربهی خود را شخصیسازی کنید."
|
||||
|
||||
#: 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
|
||||
msgid "Hidden"
|
||||
msgstr "پنهان"
|
||||
@ -677,7 +734,7 @@ msgstr "پنهان"
|
||||
msgid "Hide"
|
||||
msgstr "پنهان کردن"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "آیکونها را پنهان کن"
|
||||
|
||||
@ -734,7 +791,7 @@ msgstr "بهبود بخشیدن نگارش"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "در صورت عدم توانایی شما برای اسکن این کد QR، میتوانید همچنین این لینک را به برنامه authenticator خود کپی و پیست کنید."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "در این بخش، شما میتوانید رمز عبور خود را تغییر دهید و احراز هویت دو عاملی را فعال یا غیرفعال کنید."
|
||||
|
||||
@ -743,7 +800,8 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "در این بحث، شما میتوانید حساب کاربری خود را و تمام دادههای مرتبط با کاربر خود حذف کنید، اما لطفاً به خاطر داشته باشید که <0>این عملیات غیرقابل بازگشت</0> است."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx: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"
|
||||
msgstr "اطلاعات"
|
||||
|
||||
@ -802,10 +860,10 @@ msgstr "john.doe@example.com"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||
msgid "Keywords"
|
||||
msgstr "کلید واژهها"
|
||||
|
||||
@ -824,7 +882,8 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "آخرین بروزرسانی {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx: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"
|
||||
msgstr "چیدمان"
|
||||
|
||||
@ -837,7 +896,7 @@ msgid "Letter"
|
||||
msgstr "نامه"
|
||||
|
||||
#: 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"
|
||||
msgstr "سطح"
|
||||
|
||||
@ -853,7 +912,7 @@ msgstr "روشن"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "تم روشن یا تاریک"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "فاصلهی بین خطوط"
|
||||
|
||||
@ -862,14 +921,14 @@ msgstr "فاصلهی بین خطوط"
|
||||
msgid "LinkedIn, JSON Resume, etc."
|
||||
msgstr "لینکدین، JSON رزومه و غیره."
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||
msgid "List"
|
||||
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/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:120
|
||||
msgid "Location"
|
||||
msgstr "موقعیت مکانی"
|
||||
|
||||
@ -897,7 +956,7 @@ msgstr "خروج"
|
||||
msgid "Lost your device?"
|
||||
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"
|
||||
msgstr "اصلی"
|
||||
|
||||
@ -914,7 +973,7 @@ msgstr "مارچ 2023"
|
||||
|
||||
#: 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/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
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "مارس 2023 - حال حاضر"
|
||||
@ -923,7 +982,7 @@ msgstr "مارس 2023 - حال حاضر"
|
||||
msgid "Margin"
|
||||
msgstr "حاشیه"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||
msgid "Max Tokens"
|
||||
msgstr ""
|
||||
|
||||
@ -931,18 +990,18 @@ msgstr ""
|
||||
msgid "MIT License"
|
||||
msgstr "مجور MIT"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
msgstr "مدل"
|
||||
|
||||
#: 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/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: 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/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/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/dashboard/settings/_sections/account.tsx:153
|
||||
msgid "Name"
|
||||
@ -957,7 +1016,7 @@ msgstr "نام"
|
||||
msgid "Network"
|
||||
msgstr "شبکه"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "رمز عبور جدید"
|
||||
|
||||
@ -974,6 +1033,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "توجه: این باعث کاهش امنیت حساب کاربری شما می شود."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "یادداشتها"
|
||||
@ -1009,16 +1069,16 @@ msgstr "OpenAI نتوانست هیچ پیشنهادی برای متن شما ا
|
||||
msgid "OpenAI Integration"
|
||||
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"
|
||||
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/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "گزینهها"
|
||||
|
||||
@ -1032,22 +1092,23 @@ msgid "Organization"
|
||||
msgstr "سازمان"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "صفحه"
|
||||
|
||||
#: 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}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "رمز عبور"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||
msgid "PDF"
|
||||
msgstr "پیدیاف"
|
||||
|
||||
@ -1055,7 +1116,7 @@ msgstr "پیدیاف"
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr "یادداشتهای شخصی برای هر رزومه"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:108
|
||||
msgid "Phone"
|
||||
msgstr "تلفن"
|
||||
|
||||
@ -1109,14 +1170,12 @@ msgstr "ساخته شده توسط <0>Simple Icons</0>"
|
||||
msgid "Primary Color"
|
||||
msgstr "رنگ اصلی"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||
msgid "Privacy Policy"
|
||||
msgstr "سیاست حفظ حریم شخصی"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
#: apps/client/src/components/ai-actions.tsx:113
|
||||
#: apps/client/src/components/ai-actions.tsx:116
|
||||
msgid "Professional"
|
||||
msgstr "حرفه ای"
|
||||
|
||||
@ -1132,7 +1191,7 @@ msgstr "عمومی"
|
||||
msgid "Publisher"
|
||||
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"
|
||||
msgstr "ایجاد یک گزارش"
|
||||
|
||||
@ -1144,11 +1203,10 @@ msgstr "ایجاد یک گزارش"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1175,12 +1233,12 @@ msgstr "Reactive Resume به دست جامعه پرانرژی خود زنده م
|
||||
msgid "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
|
||||
msgid "Remove"
|
||||
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"
|
||||
msgstr "حذف صفحه"
|
||||
|
||||
@ -1199,7 +1257,7 @@ msgstr "ارسال مجدد لینک تأیید ایمیل"
|
||||
msgid "Reset"
|
||||
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"
|
||||
msgstr "ریست طرح"
|
||||
|
||||
@ -1213,8 +1271,8 @@ msgid "Reset Zoom"
|
||||
msgstr "ریست بزرگنمایی"
|
||||
|
||||
#: 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:37
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||
msgid "Resumes"
|
||||
msgstr "رزومه ها"
|
||||
|
||||
@ -1237,11 +1295,11 @@ msgstr "گردشده"
|
||||
msgid "Save Changes"
|
||||
msgstr "ذخیرهٔ تغییرات"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||
msgid "Save Locally"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||
msgid "Saved"
|
||||
msgstr ""
|
||||
|
||||
@ -1262,15 +1320,15 @@ msgstr ""
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "جستجو برای فونت"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "جستجو برای زیرمجموعه فونت"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "جستجو برای فونت"
|
||||
|
||||
@ -1282,7 +1340,7 @@ msgstr "جستجو برای زبان"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "امن با احراز هویت دو عاملی"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "امنیت"
|
||||
|
||||
@ -1294,7 +1352,7 @@ msgstr "هاست شده توسط Docker"
|
||||
msgid "Send Email"
|
||||
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"
|
||||
msgstr "ارسال پیام"
|
||||
|
||||
@ -1314,6 +1372,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "راهاندازی تأیید هویت دو مرحلهای بر روی حساب کاربری خود"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "اشتراکگذاری"
|
||||
@ -1330,7 +1389,7 @@ msgstr "نمایش خط بین صفحه"
|
||||
msgid "Show Page Numbers"
|
||||
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"
|
||||
msgstr "نوار کناری"
|
||||
|
||||
@ -1408,6 +1467,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "شروع به ساخت رزومه خود با دادن یک نام به آن کنید."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "آمارها"
|
||||
@ -1422,17 +1482,17 @@ msgstr "کدهای پشتیبان خود را به صورت امن ذخیره ک
|
||||
|
||||
#: 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/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/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/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "Summary"
|
||||
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!"
|
||||
msgstr "با حمایت از برنامه آنچه را میتوانید اهدا کنید!"
|
||||
|
||||
@ -1444,11 +1504,20 @@ msgstr "حمایت از Reactive Resume"
|
||||
msgid "Supports A4/Letter page formats"
|
||||
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
|
||||
msgid "System"
|
||||
msgstr "سامانه"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "قالب"
|
||||
@ -1465,15 +1534,20 @@ msgstr "رضایت ها"
|
||||
msgid "Text Color"
|
||||
msgstr "رنگ متن"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "رمز عبورهایی که وارد کردهاید مطابقت ندارند."
|
||||
#: apps/client/src/pages/public/error.tsx:17
|
||||
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 ""
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "رزومهای که میخواهید بهروزرسانی کنید قفل شده است، لطفاً اگر میخواهید تغییری در آن انجام دهید آن را باز کنید."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1604,7 @@ msgstr "بررسی تعداد بازدیدها و دانلودها"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "احراز هویت دو مرحلهای"
|
||||
|
||||
@ -1552,11 +1626,12 @@ msgid "Type of Study"
|
||||
msgstr "نوع تحصیلات"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "تایپوگرافی"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "زیر پیوندها خط بکش"
|
||||
|
||||
@ -1599,6 +1674,14 @@ msgstr "آدرس وبسایت"
|
||||
msgid "URL must start with 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:57
|
||||
msgid "Use your backup code"
|
||||
@ -1651,7 +1734,7 @@ msgstr "نسخه ۴"
|
||||
msgid "Views"
|
||||
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"
|
||||
msgstr "قابل مشاهده"
|
||||
|
||||
@ -1665,15 +1748,15 @@ msgstr "ما آدرس ایمیل شما را تأیید می کنیم تا فق
|
||||
|
||||
#: 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/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/experience.tsx:100
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:96
|
||||
msgid "Website"
|
||||
msgstr "وبسایت"
|
||||
|
||||
@ -1681,10 +1764,14 @@ msgstr "وبسایت"
|
||||
msgid "What's new in the latest version"
|
||||
msgstr "چه خبر در آخرین نسخه"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
||||
#: apps/client/src/pages/public/error.tsx:26
|
||||
msgid "You are not authorized to access this page."
|
||||
msgstr ""
|
||||
|
||||
#: 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."
|
||||
msgstr "شما میتوانید کلمات متعددی را با جداکردن آنها با یک کاما یا فشردن کلید اینتر اضافه کنید."
|
||||
|
||||
@ -1692,19 +1779,27 @@ msgstr "شما میتوانید کلمات متعددی را با جداکر
|
||||
msgid "You can also enter your username."
|
||||
msgstr "شما همچنین میتوانید نام کاربری خود را وارد کنید."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||
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."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||
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 ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
msgstr "شما می توانید از API OpenAI استفاده کنید تا به شما در تولید محتوا کمک کند یا نوشتن شما را بهتر کند در حالی که رزومه خود را تنظیم می کنید."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||
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 ""
|
||||
|
||||
#: 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."
|
||||
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."
|
||||
msgstr "شما قادر به <0>دریافت کلید API اختصاصی OpenAI خودتان هستید</0>. این کلید به شما این امکان را می دهد که از API به دلخواه خود استفاده کنید. به عنوان یک گزینه دیگر، اگر می خواهید قابلیت های هوش مصنوعی در Reactive Resume را کاملاً غیرفعال کنید، می توانید به سادگی این کلید را از تنظیمات خود حذف کنید."
|
||||
|
||||
@ -1721,7 +1816,7 @@ msgstr "شما ایمیل دریافت کردید"
|
||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||
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."
|
||||
msgstr "کلید API شما به صورت ایمن در حافظه مرورگر دستگاه ذخیره می شود و تنها هنگام ارسال درخواست به OpenAI از طریق SDK رسمی آنها استفاده می شود. اطمینان حاصل کنید که کلید شما به هیچ سرور خارجی انتقال داده نمی شود مگر اینکه برای تعامل با خدمات OpenAI استفاده شود."
|
||||
|
||||
@ -1733,7 +1828,7 @@ msgstr "آدرس ایمیل شما با موفقیت تأیید شد."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "کلید API OpenAI شما هنوز تنظیم نشده است. لطفاً به تنظیمات حساب کاربری خود بروید تا امکان ادغام OpenAI را فعال کنید."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "رمز عبور شما با موفقیت به روز شد."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: fi\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-11-04 14:22\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Finnish\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}}"
|
||||
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>"
|
||||
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>"
|
||||
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."
|
||||
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>"
|
||||
msgstr "<0>Yhteisö on käyttänyt paljon aikaa kirjoittaakseen dokumentaation Reaktiiviselle ansioluettelolle, ja olen varma, että se auttaa sinua pääsemään alkuun sovelluksessa.</0><1>Siellä on myös paljon esimerkkejä auttamaan sinua pääsemään alkuun, ja ominaisuuksia, joista et ehkä tiedä ja jotka voisivat auttaa sinua rakentamaan täydellisen ansioluettelosi.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>Kaksivaiheinen todennus on tällä hetkellä poistettu käytöstä.</0> Voit ottaa sen käyttöön lisäämällä aitoustunnistussovelluksen tilillesi."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>Kaksivaiheinen todennus on käytössä.</0> Sinua pyydetään syöttämään koodi joka kerta, kun kirjaudut sisään."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Tili"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Lisää mukautettu kenttä"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:203
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Lisää uusi kohde"
|
||||
@ -112,12 +112,12 @@ msgstr "Lisää uusi kohde"
|
||||
msgid "Add a new item"
|
||||
msgstr "Lisää uusi kohde"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:267
|
||||
msgid "Add a new section"
|
||||
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"
|
||||
msgstr "Lisää uusi sivu"
|
||||
|
||||
@ -133,6 +133,14 @@ msgstr "Onko sinulla jo tili?"
|
||||
msgid "An error occurred while validating the file."
|
||||
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
|
||||
msgid "and many more..."
|
||||
msgstr "ja monia muita..."
|
||||
@ -191,6 +199,18 @@ msgstr "Saatavilla {languagesCount} kielillä"
|
||||
msgid "Awarder"
|
||||
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/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
@ -209,16 +229,16 @@ msgstr "Varmuuskoodi"
|
||||
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ä."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||
msgid "Base URL"
|
||||
msgstr "Perus URL-osoite"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:58
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr "Perusasiat"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
msgid "Basics"
|
||||
msgstr "Perusasiat"
|
||||
|
||||
@ -246,8 +266,8 @@ msgstr "Yhteisön tekemä, yhteisölle."
|
||||
msgid "Cancel"
|
||||
msgstr "Peruuta"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
#: apps/client/src/components/ai-actions.tsx:107
|
||||
#: apps/client/src/components/ai-actions.tsx:110
|
||||
msgid "Casual"
|
||||
msgstr "Rentoutunut"
|
||||
|
||||
@ -255,12 +275,16 @@ msgstr "Rentoutunut"
|
||||
msgid "Center Artboard"
|
||||
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/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Vaihda salasana"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
#: apps/client/src/components/ai-actions.tsx:101
|
||||
msgid "Change Tone"
|
||||
msgstr "Vaihda sävyä"
|
||||
|
||||
@ -288,6 +312,16 @@ msgstr "Koodi"
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr "Koodin on oltava tarkalleen 6 numeroa pitkä."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:272
|
||||
msgid "Collapse All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Collapse section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136
|
||||
msgid "Columns"
|
||||
msgstr "Sarakkeet"
|
||||
@ -296,21 +330,17 @@ msgstr "Sarakkeet"
|
||||
msgid "Company"
|
||||
msgstr "Yritys"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
#: apps/client/src/components/ai-actions.tsx:119
|
||||
#: apps/client/src/components/ai-actions.tsx:122
|
||||
msgid "Confident"
|
||||
msgstr "Itsevarma"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Vahvista uusi salasana"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
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"
|
||||
msgstr "Kopioi"
|
||||
|
||||
@ -351,7 +381,12 @@ msgstr "Luo yksi nyt"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Luo esimerkki ansioluettelosta"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr "Nykyinen Salasana"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "Mukautettu CSS"
|
||||
@ -360,7 +395,7 @@ msgstr "Mukautettu CSS"
|
||||
msgid "Custom resume sections"
|
||||
msgstr "Mukautetut ansioluettelon osiot"
|
||||
|
||||
#: apps/client/src/stores/resume.ts:47
|
||||
#: apps/client/src/stores/resume.ts:53
|
||||
msgid "Custom Section"
|
||||
msgstr "Mukautettu osio"
|
||||
|
||||
@ -386,10 +421,10 @@ msgstr "Tumma"
|
||||
msgid "Date"
|
||||
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/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
|
||||
msgid "Date or Date Range"
|
||||
msgstr "Päivämäärä tai Päivämääräväli"
|
||||
@ -407,11 +442,15 @@ msgstr "Poista"
|
||||
msgid "Delete Account"
|
||||
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/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/skills.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||
msgid "Description"
|
||||
msgstr "Kuvaus"
|
||||
|
||||
@ -423,18 +462,18 @@ msgstr "Suunnittele yksittäisiä/multi-sivuisia ansioluetteloita"
|
||||
msgid "Disable"
|
||||
msgstr "Poista käytöstä"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Poista kaksivaiheinen todennus"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Hylkää"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentointi"
|
||||
|
||||
@ -442,7 +481,7 @@ msgstr "Dokumentointi"
|
||||
msgid "Don't have an account?"
|
||||
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!"
|
||||
msgstr "Älä tiedä mistä aloittaa? Aloita dokumenteista!"
|
||||
|
||||
@ -450,7 +489,7 @@ msgstr "Älä tiedä mistä aloittaa? Aloita dokumenteista!"
|
||||
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>"
|
||||
|
||||
#: 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"
|
||||
msgstr " Lahjoita reaktiiviselle CV:lle"
|
||||
|
||||
@ -458,12 +497,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."
|
||||
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."
|
||||
msgstr "Lataa PDF-ansioluettelosi. Tätä tiedostoa voidaan käyttää ansioluettelon tulostamiseen, lähettämiseen rekrytoijille tai lataamiseen työportaaleihin."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Lataa PDF"
|
||||
|
||||
@ -487,7 +525,7 @@ msgstr "Tee kaksoiskappale olemassa olevasta kohteesta"
|
||||
msgid "Duplicate an existing resume"
|
||||
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"
|
||||
msgstr "Muokkaa"
|
||||
|
||||
@ -498,12 +536,12 @@ msgstr "Efektit"
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:90
|
||||
#: apps/client/src/pages/auth/register/page.tsx:141
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181
|
||||
msgid "Email"
|
||||
msgstr "Sähköposti"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Ota käyttöön 2FA"
|
||||
|
||||
@ -531,6 +569,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."
|
||||
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
|
||||
msgid "Errors"
|
||||
msgstr "Virheet"
|
||||
@ -539,11 +581,22 @@ msgstr "Virheet"
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr "Vaikka et pystyisikään antamaan taloudellista panostusta, voit silti tehdä eron antamalla GitHub-varastolle tähti, levittämällä sanaa ystävillesi tai lähettämällä nopean viestin kertoaksesi, miten Reactive Resume on auttanut sinua. Palaute ja tuki ovat aina tervetulleita ja erittäin arvostettuja!"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:271
|
||||
msgid "Expand All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Expand section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "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 "Tutustu saatavilla oleviin mallipohjiin Reactive Resumessa ja katsele niiden avulla luotuja ansioluetteloita. Ne voivat toimia myös esimerkkeinä auttaakseen seuraavan ansioluettelosi luomisessa."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Vie"
|
||||
@ -564,19 +617,19 @@ msgstr "Lopuksi,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Korjaa oikeinkirjoitus ja kielioppi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Fontin perhe"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Fontin koko"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Fontin alajoukko"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Fonttivariantit"
|
||||
|
||||
@ -584,7 +637,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."
|
||||
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"
|
||||
msgstr "Unohda"
|
||||
|
||||
@ -601,7 +654,7 @@ msgstr "Unohditko salasanasi?"
|
||||
msgid "Format"
|
||||
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?"
|
||||
msgstr "Löysitkö virheen tai onko sinulla idea uudesta ominaisuudesta?"
|
||||
|
||||
@ -609,12 +662,12 @@ msgstr "Löysitkö virheen tai onko sinulla idea uudesta ominaisuudesta?"
|
||||
msgid "Free, forever"
|
||||
msgstr "Ilmainen, ikuisesti"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:121
|
||||
#: apps/client/src/components/ai-actions.tsx:124
|
||||
#: apps/client/src/components/ai-actions.tsx:125
|
||||
#: apps/client/src/components/ai-actions.tsx:128
|
||||
msgid "Friendly"
|
||||
msgstr "Ystävällinen"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:56
|
||||
msgid "Full Name"
|
||||
msgstr "Koko nimi"
|
||||
|
||||
@ -643,6 +696,10 @@ msgstr "Anna vanhalle ansioluettelollesi uusi nimi."
|
||||
msgid "Go to Dashboard"
|
||||
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
|
||||
msgid "Google"
|
||||
msgstr "Google"
|
||||
@ -651,11 +708,11 @@ msgstr "Google"
|
||||
msgid "Grayscale"
|
||||
msgstr "Harmaasävy"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||
msgid "Grid"
|
||||
msgstr "Ruudukko"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:70
|
||||
msgid "Headline"
|
||||
msgstr "Otsikko"
|
||||
|
||||
@ -668,7 +725,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."
|
||||
|
||||
#: 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
|
||||
msgid "Hidden"
|
||||
msgstr "Piilotettu"
|
||||
@ -677,7 +734,7 @@ msgstr "Piilotettu"
|
||||
msgid "Hide"
|
||||
msgstr "Piilota"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Piilota kuvakkeet"
|
||||
|
||||
@ -734,7 +791,7 @@ msgstr "Paranna kirjoitusta"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Mikäli et voi skannata tätä QR-koodia, voit myös kopioida tämän linkin ja liittää sen tunnistussovellukseen."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "Tässä osiossa voit vaihtaa salasanasi ja ottaa käyttöön/poistaa kaksivaiheisen tunnistuksen."
|
||||
|
||||
@ -743,7 +800,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>."
|
||||
|
||||
#: 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"
|
||||
msgstr "Tiedot"
|
||||
|
||||
@ -802,10 +860,10 @@ msgstr "matti.meikäläinen@example.com"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||
msgid "Keywords"
|
||||
msgstr "Avainsanat"
|
||||
|
||||
@ -824,7 +882,8 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Päivitetty viimeksi {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx: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"
|
||||
msgstr "Asettelu"
|
||||
|
||||
@ -837,7 +896,7 @@ msgid "Letter"
|
||||
msgstr "Kirje"
|
||||
|
||||
#: 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"
|
||||
msgstr "Taso"
|
||||
|
||||
@ -853,7 +912,7 @@ msgstr "Vaalea"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Vaalea tai tumma teema"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Riviväli"
|
||||
|
||||
@ -862,14 +921,14 @@ msgstr "Riviväli"
|
||||
msgid "LinkedIn, JSON Resume, etc."
|
||||
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"
|
||||
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/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:120
|
||||
msgid "Location"
|
||||
msgstr "Sijainti"
|
||||
|
||||
@ -897,7 +956,7 @@ msgstr "Kirjaudu ulos"
|
||||
msgid "Lost your device?"
|
||||
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"
|
||||
msgstr "Pää"
|
||||
|
||||
@ -914,7 +973,7 @@ msgstr "Maaliskuu 2023"
|
||||
|
||||
#: 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/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
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "Maaliskuu 2023 - Tähän asti"
|
||||
@ -923,7 +982,7 @@ msgstr "Maaliskuu 2023 - Tähän asti"
|
||||
msgid "Margin"
|
||||
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"
|
||||
msgstr "Max merkit"
|
||||
|
||||
@ -931,18 +990,18 @@ msgstr "Max merkit"
|
||||
msgid "MIT License"
|
||||
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"
|
||||
msgstr "Malli"
|
||||
|
||||
#: 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/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: 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/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/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/dashboard/settings/_sections/account.tsx:153
|
||||
msgid "Name"
|
||||
@ -957,7 +1016,7 @@ msgstr "Nimi"
|
||||
msgid "Network"
|
||||
msgstr "Verkko"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Uusi salasana"
|
||||
|
||||
@ -974,6 +1033,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Huom: Tämä tekee tilisi vähemmän turvalliseksi."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Muistiinpanot"
|
||||
@ -1009,16 +1069,16 @@ msgstr "OpenAI ei palauttanut mitään valintoja tekstillesi."
|
||||
msgid "OpenAI Integration"
|
||||
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"
|
||||
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/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Asetukset"
|
||||
|
||||
@ -1032,22 +1092,23 @@ msgid "Organization"
|
||||
msgstr "Organisaatio"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Sivu"
|
||||
|
||||
#: 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}"
|
||||
msgstr "Sivu {pageNumber}"
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Salasana"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||
msgid "PDF"
|
||||
msgstr "PDF"
|
||||
|
||||
@ -1055,7 +1116,7 @@ msgstr "PDF"
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr "Henkilökohtaiset muistiinpanot jokaiselle ansioluettelolle"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:108
|
||||
msgid "Phone"
|
||||
msgstr "Puhelin"
|
||||
|
||||
@ -1109,14 +1170,12 @@ msgstr "Powered by <0>Simple Icons</0>"
|
||||
msgid "Primary Color"
|
||||
msgstr "Primary Color"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Tietosuojakäytäntö"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
#: apps/client/src/components/ai-actions.tsx:113
|
||||
#: apps/client/src/components/ai-actions.tsx:116
|
||||
msgid "Professional"
|
||||
msgstr "Professional"
|
||||
|
||||
@ -1132,7 +1191,7 @@ msgstr "Julkinen"
|
||||
msgid "Publisher"
|
||||
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"
|
||||
msgstr "Luo ongelma"
|
||||
|
||||
@ -1144,11 +1203,10 @@ msgstr "Luo ongelma"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1175,12 +1233,12 @@ msgstr "Reaktiivinen ansioluettelo kukoistaa sen elinvoimaisen yhteisön ansiost
|
||||
msgid "Redo"
|
||||
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
|
||||
msgid "Remove"
|
||||
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"
|
||||
msgstr "Poista sivu"
|
||||
|
||||
@ -1199,7 +1257,7 @@ msgstr "Lähetä sähköpostin vahvistuslinkki uudelleen"
|
||||
msgid "Reset"
|
||||
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"
|
||||
msgstr "Nollaa asettelu"
|
||||
|
||||
@ -1213,8 +1271,8 @@ msgid "Reset Zoom"
|
||||
msgstr "Nollaa zoomaus"
|
||||
|
||||
#: 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:37
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||
msgid "Resumes"
|
||||
msgstr "Ansioluettelot"
|
||||
|
||||
@ -1237,11 +1295,11 @@ msgstr "Pyöristetty"
|
||||
msgid "Save Changes"
|
||||
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"
|
||||
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"
|
||||
msgstr "Tallennettu"
|
||||
|
||||
@ -1262,15 +1320,15 @@ msgstr "Vieritä kohtaan Pan"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Vieritä zoomaukseen"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Etsi fonttiperhettä"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Etsi fonttialueetta"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Etsi fonttivarianttia"
|
||||
|
||||
@ -1282,7 +1340,7 @@ msgstr "Etsi kieltä"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Turvaa kaksivaiheisella todennuksella"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Turvallisuus"
|
||||
|
||||
@ -1294,7 +1352,7 @@ msgstr "Itse-isännöidy Dockerilla"
|
||||
msgid "Send Email"
|
||||
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"
|
||||
msgstr "Lähetä minulle viesti"
|
||||
|
||||
@ -1314,6 +1372,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Aseta kaksivaiheinen todennus tilillesi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Jakaminen"
|
||||
@ -1330,7 +1389,7 @@ msgstr "Näytä rivinvaihto"
|
||||
msgid "Show Page Numbers"
|
||||
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"
|
||||
msgstr "Sivupalkki"
|
||||
|
||||
@ -1408,6 +1467,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Aloita ansioluettelosi rakentaminen antamalla sille nimi."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Tilastot"
|
||||
@ -1422,17 +1482,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/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/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/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "Summary"
|
||||
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!"
|
||||
msgstr "Tue sovellusta lahjoittamalla mitä voit!"
|
||||
|
||||
@ -1444,11 +1504,20 @@ msgstr "Reaktiivisen ansioluettelon tukeminen"
|
||||
msgid "Supports A4/Letter page formats"
|
||||
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
|
||||
msgid "System"
|
||||
msgstr "Järjestelmä"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Pohja"
|
||||
@ -1465,15 +1534,20 @@ msgstr "Asiakaspalautteet"
|
||||
msgid "Text Color"
|
||||
msgstr "Tekstin väri"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "Syöttämäsi salasanat eivät täsmää."
|
||||
#: apps/client/src/pages/public/error.tsx:17
|
||||
msgid "The page you're looking for doesn't exist."
|
||||
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
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "Ansioluetteloa, jonka haluat päivittää, on lukittu. Ole hyvä ja avaa se, jos haluat tehdä siihen muutoksia."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1604,7 @@ msgstr "Seuraa näkymiä ja latauksia"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Kaksivaiheinen tunnistautuminen"
|
||||
|
||||
@ -1552,11 +1626,12 @@ msgid "Type of Study"
|
||||
msgstr "Opiskelumuoto"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Typografia"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Alleviivaa Linkit"
|
||||
|
||||
@ -1599,6 +1674,14 @@ msgstr "URL"
|
||||
msgid "URL must start with https://"
|
||||
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:57
|
||||
msgid "Use your backup code"
|
||||
@ -1651,7 +1734,7 @@ msgstr "Versio 4"
|
||||
msgid "Views"
|
||||
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"
|
||||
msgstr "Näkyvä"
|
||||
|
||||
@ -1665,15 +1748,15 @@ 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/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/experience.tsx:100
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:96
|
||||
msgid "Website"
|
||||
msgstr "Verkkosivusto"
|
||||
|
||||
@ -1681,10 +1764,14 @@ msgstr "Verkkosivusto"
|
||||
msgid "What's new in the latest version"
|
||||
msgstr "Mitä uutta viimeisimmässä versiossa"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
||||
#: apps/client/src/pages/public/error.tsx:26
|
||||
msgid "You are not authorized to access this page."
|
||||
msgstr "Sinulla ei ole oikeutta käyttää tätä sivua."
|
||||
|
||||
#: 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."
|
||||
msgstr "Voit lisätä useita avainsanoja erottelemalla ne pilkulla tai painamalla enter."
|
||||
|
||||
@ -1692,19 +1779,27 @@ msgstr "Voit lisätä useita avainsanoja erottelemalla ne pilkulla tai painamall
|
||||
msgid "You can also enter your username."
|
||||
msgstr "Voit myös syöttää käyttäjänimesi."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||
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."
|
||||
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."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||
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 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
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
msgstr "Voit käyttää OpenAI API:a auttamaan sinua sisällön luomisessa tai parantamaan kirjoittamistasi laatimalla ansioluettelosi."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||
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 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
|
||||
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."
|
||||
|
||||
#: 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."
|
||||
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 +1816,7 @@ msgstr "Sinulle on tullut postia!"
|
||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||
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."
|
||||
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 +1828,7 @@ msgstr "Sähköpostiosoitteesi on vahvistettu onnistuneesti."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "OpenAI API-avaintasi ei ole vielä asetettu. Siirry tilisi asetuksiin ottaaksesi OpenAI-integraation käyttöön."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Salasanasi on päivitetty onnistuneesti."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: fr\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-11-04 14:22\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: French\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}}"
|
||||
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>"
|
||||
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>"
|
||||
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."
|
||||
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>"
|
||||
msgstr "<0>La communauté a passé beaucoup de temps à écrire la documentation de Reactive Resume, et je suis sûr qu'elle vous aidera à démarrer avec l'application.</0><1>Il y a aussi beaucoup d'exemples pour vous aider à démarrer, et des fonctionnalités que vous ne connaissez peut-être pas et qui pourraient vous aider à construire votre CV parfait.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>L'authentification à deux facteurs est actuellement désactivée.</0> Vous pouvez l'activer en ajoutant une application d'authentification à votre compte."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>L'authentification à deux facteurs est activée.</0> Il vous sera demandé de saisir un code à chaque connexion."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Compte"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Ajouter un champ personnalisé"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:203
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Ajouter un nouvel élément"
|
||||
@ -112,12 +112,12 @@ msgstr "Ajouter un nouvel élément"
|
||||
msgid "Add a new item"
|
||||
msgstr "Ajouter un nouvel élément"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:267
|
||||
msgid "Add a new 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"
|
||||
msgstr "Ajouter une Nouvelle Page"
|
||||
|
||||
@ -133,6 +133,14 @@ msgstr "Vous avez déjà un compte ?"
|
||||
msgid "An error occurred while validating the file."
|
||||
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
|
||||
msgid "and many more..."
|
||||
msgstr "et bien d'autres..."
|
||||
@ -191,6 +199,18 @@ msgstr "Disponible en {languagesCount} langues"
|
||||
msgid "Awarder"
|
||||
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/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
@ -209,16 +229,16 @@ msgstr "Code de récupération"
|
||||
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."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||
msgid "Base URL"
|
||||
msgstr "URL de base"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:58
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr "Les bases"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
msgid "Basics"
|
||||
msgstr "Les bases"
|
||||
|
||||
@ -246,8 +266,8 @@ msgstr "Par la communauté, pour la communauté."
|
||||
msgid "Cancel"
|
||||
msgstr "Annuler"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
#: apps/client/src/components/ai-actions.tsx:107
|
||||
#: apps/client/src/components/ai-actions.tsx:110
|
||||
msgid "Casual"
|
||||
msgstr "Décontracté"
|
||||
|
||||
@ -255,12 +275,16 @@ msgstr "Décontracté"
|
||||
msgid "Center Artboard"
|
||||
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/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Changer le mot de passe"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
#: apps/client/src/components/ai-actions.tsx:101
|
||||
msgid "Change Tone"
|
||||
msgstr "Changer de ton"
|
||||
|
||||
@ -288,6 +312,16 @@ msgstr "Code"
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr "Le code doit comporter exactement 6 chiffres."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:272
|
||||
msgid "Collapse All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Collapse section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136
|
||||
msgid "Columns"
|
||||
msgstr "Colonnes"
|
||||
@ -296,21 +330,17 @@ msgstr "Colonnes"
|
||||
msgid "Company"
|
||||
msgstr "Société"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
#: apps/client/src/components/ai-actions.tsx:119
|
||||
#: apps/client/src/components/ai-actions.tsx:122
|
||||
msgid "Confident"
|
||||
msgstr "Confiant"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Confirmez le nouveau mot de passe"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
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"
|
||||
msgstr "Copier"
|
||||
|
||||
@ -351,7 +381,12 @@ msgstr "Créez-en un maintenant"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Créer un exemple de CV"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr "Mot de passe actuel"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "CSS personnalisé"
|
||||
@ -360,7 +395,7 @@ msgstr "CSS personnalisé"
|
||||
msgid "Custom resume sections"
|
||||
msgstr "Sections de CV personnalisées"
|
||||
|
||||
#: apps/client/src/stores/resume.ts:47
|
||||
#: apps/client/src/stores/resume.ts:53
|
||||
msgid "Custom Section"
|
||||
msgstr "Section personnalisée"
|
||||
|
||||
@ -386,10 +421,10 @@ msgstr "Sombre"
|
||||
msgid "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/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
|
||||
msgid "Date or Date Range"
|
||||
msgstr "Période ou date"
|
||||
@ -407,11 +442,15 @@ msgstr "Supprimer"
|
||||
msgid "Delete Account"
|
||||
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/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/skills.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||
msgid "Description"
|
||||
msgstr "Description"
|
||||
|
||||
@ -423,18 +462,18 @@ msgstr "Concevoir des CV d'une ou plusieurs pages"
|
||||
msgid "Disable"
|
||||
msgstr "Désactiver"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Désactiver la 2FA"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Abandonner"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr "Documentation"
|
||||
|
||||
@ -442,7 +481,7 @@ msgstr "Documentation"
|
||||
msgid "Don't have an account?"
|
||||
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!"
|
||||
msgstr "Vous ne savez pas par où commencer ? La doc !"
|
||||
|
||||
@ -450,7 +489,7 @@ msgstr "Vous ne savez pas par où commencer ? La doc !"
|
||||
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>"
|
||||
|
||||
#: 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"
|
||||
msgstr "Faire un don à Reactive Resume"
|
||||
|
||||
@ -458,12 +497,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."
|
||||
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."
|
||||
msgstr "Téléchargez un PDF de votre CV. Ce fichier peut être utilisé pour imprimer votre CV, l'envoyer aux recruteurs ou le télécharger sur des portails d'emploi."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Télécharger au format PDF"
|
||||
|
||||
@ -487,7 +525,7 @@ msgstr "Dupliquer un élément existant"
|
||||
msgid "Duplicate an existing resume"
|
||||
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"
|
||||
msgstr "Editer"
|
||||
|
||||
@ -498,12 +536,12 @@ msgstr "Effets"
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:90
|
||||
#: apps/client/src/pages/auth/register/page.tsx:141
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181
|
||||
msgid "Email"
|
||||
msgstr "Email"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Activer l'A2F"
|
||||
|
||||
@ -531,6 +569,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."
|
||||
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
|
||||
msgid "Errors"
|
||||
msgstr "Erreurs"
|
||||
@ -539,11 +581,22 @@ msgstr "Erreurs"
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr "Même si vous n'êtes pas en mesure de contribuer financièrement, vous pouvez toujours faire la différence en attribuant une étoile au référentiel GitHub, en passant le message à vos amis ou en envoyant un message rapide pour me faire savoir comment Reactive Resume vous a aidé. Vos commentaires et votre soutien sont toujours les bienvenus et très appréciés !"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:271
|
||||
msgid "Expand All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Expand section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "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 "Explorez les modèles disponibles dans Reactive Resume et consultez les CV qui en sont issus. Ils peuvent également servir d'exemples pour guider la création de votre prochain CV."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Exporter"
|
||||
@ -564,19 +617,19 @@ msgstr "Enfin,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Correcteur orthographique"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Famille de police"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Taille de la police"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Sous-ensemble de polices"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Variantes de polices"
|
||||
|
||||
@ -584,7 +637,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."
|
||||
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"
|
||||
msgstr "Oublier"
|
||||
|
||||
@ -601,7 +654,7 @@ msgstr "Vous avez oublié votre mot de passe ?"
|
||||
msgid "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?"
|
||||
msgstr "Vous avez trouvé un bug, ou avez une idée pour une nouvelle fonctionnalité?"
|
||||
|
||||
@ -609,12 +662,12 @@ msgstr "Vous avez trouvé un bug, ou avez une idée pour une nouvelle fonctionna
|
||||
msgid "Free, forever"
|
||||
msgstr "Gratuit, pour toujours"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:121
|
||||
#: apps/client/src/components/ai-actions.tsx:124
|
||||
#: apps/client/src/components/ai-actions.tsx:125
|
||||
#: apps/client/src/components/ai-actions.tsx:128
|
||||
msgid "Friendly"
|
||||
msgstr "Amical"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:56
|
||||
msgid "Full Name"
|
||||
msgstr "Prénom et Nom"
|
||||
|
||||
@ -643,6 +696,10 @@ msgstr "Donnez un nouveau nom à votre ancien CV."
|
||||
msgid "Go to Dashboard"
|
||||
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
|
||||
msgid "Google"
|
||||
msgstr "Google"
|
||||
@ -651,11 +708,11 @@ msgstr "Google"
|
||||
msgid "Grayscale"
|
||||
msgstr "Niveaux de gris"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||
msgid "Grid"
|
||||
msgstr "Grille"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:70
|
||||
msgid "Headline"
|
||||
msgstr "Titre"
|
||||
|
||||
@ -668,7 +725,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."
|
||||
|
||||
#: 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
|
||||
msgid "Hidden"
|
||||
msgstr "Masqué"
|
||||
@ -677,7 +734,7 @@ msgstr "Masqué"
|
||||
msgid "Hide"
|
||||
msgstr "Masquer"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Masquer les icônes"
|
||||
|
||||
@ -734,7 +791,7 @@ msgstr "Améliorer l'écriture"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Si vous ne parvenez pas à scanner ce code QR, vous pouvez également copier-coller ce lien dans votre application d'authentification."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "Dans cette section, vous pouvez modifier votre mot de passe et activer/désactiver l'authentification à deux facteurs."
|
||||
|
||||
@ -743,7 +800,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>."
|
||||
|
||||
#: 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"
|
||||
msgstr "Information"
|
||||
|
||||
@ -802,10 +860,10 @@ msgstr "john.doe@example.com"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||
msgid "Keywords"
|
||||
msgstr "Mots-clés"
|
||||
|
||||
@ -824,7 +882,8 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Dernière mise à jour {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx: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"
|
||||
msgstr "Mise en page"
|
||||
|
||||
@ -837,7 +896,7 @@ msgid "Letter"
|
||||
msgstr "Lettre"
|
||||
|
||||
#: 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"
|
||||
msgstr "Niveau"
|
||||
|
||||
@ -853,7 +912,7 @@ msgstr "Clair"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Thème clair ou sombre"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Interligne"
|
||||
|
||||
@ -862,14 +921,14 @@ msgstr "Interligne"
|
||||
msgid "LinkedIn, JSON Resume, 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"
|
||||
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/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:120
|
||||
msgid "Location"
|
||||
msgstr "Emplacement"
|
||||
|
||||
@ -897,7 +956,7 @@ msgstr "Déconnexion"
|
||||
msgid "Lost your device?"
|
||||
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"
|
||||
msgstr "Principal"
|
||||
|
||||
@ -914,7 +973,7 @@ msgstr "Mars 2023"
|
||||
|
||||
#: 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/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
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "Mars 2023 - Aujourd'hui"
|
||||
@ -923,7 +982,7 @@ msgstr "Mars 2023 - Aujourd'hui"
|
||||
msgid "Margin"
|
||||
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"
|
||||
msgstr "Token maximum"
|
||||
|
||||
@ -931,18 +990,18 @@ msgstr "Token maximum"
|
||||
msgid "MIT License"
|
||||
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"
|
||||
msgstr "Modèle"
|
||||
|
||||
#: 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/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: 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/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/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/dashboard/settings/_sections/account.tsx:153
|
||||
msgid "Name"
|
||||
@ -957,7 +1016,7 @@ msgstr "Nom"
|
||||
msgid "Network"
|
||||
msgstr "Réseau"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Nouveau mot de passe"
|
||||
|
||||
@ -974,6 +1033,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Remarque : Cela rendra votre compte moins sécurisé."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Notes"
|
||||
@ -1009,16 +1069,16 @@ msgstr "OpenAI n'a renvoyé aucun choix pour votre texte."
|
||||
msgid "OpenAI Integration"
|
||||
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"
|
||||
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/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Options"
|
||||
|
||||
@ -1032,22 +1092,23 @@ msgid "Organization"
|
||||
msgstr "Organisation"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Page"
|
||||
|
||||
#: 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}"
|
||||
msgstr "Page {pageNumber}"
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Mot de passe"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||
msgid "PDF"
|
||||
msgstr "PDF"
|
||||
|
||||
@ -1055,7 +1116,7 @@ msgstr "PDF"
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr "Notes personnelles pour chaque CV"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:108
|
||||
msgid "Phone"
|
||||
msgstr "Téléphone"
|
||||
|
||||
@ -1109,14 +1170,12 @@ msgstr "Réalisé par <0>Simple Icons</0>"
|
||||
msgid "Primary Color"
|
||||
msgstr "Couleur Primaire"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Politique de confidentialité"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
#: apps/client/src/components/ai-actions.tsx:113
|
||||
#: apps/client/src/components/ai-actions.tsx:116
|
||||
msgid "Professional"
|
||||
msgstr "Professionnel"
|
||||
|
||||
@ -1132,7 +1191,7 @@ msgstr "Public"
|
||||
msgid "Publisher"
|
||||
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"
|
||||
msgstr "Signaler un problème"
|
||||
|
||||
@ -1144,11 +1203,10 @@ msgstr "Signaler un problème"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1175,12 +1233,12 @@ msgstr "Reactive Resume prospère grâce à sa communauté dynamique. Ce projet
|
||||
msgid "Redo"
|
||||
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
|
||||
msgid "Remove"
|
||||
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"
|
||||
msgstr "Supprimer la Page"
|
||||
|
||||
@ -1199,7 +1257,7 @@ msgstr "Renvoyer l'e-mail de confirmation"
|
||||
msgid "Reset"
|
||||
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"
|
||||
msgstr "Réinitialiser la mise en page"
|
||||
|
||||
@ -1213,8 +1271,8 @@ msgid "Reset Zoom"
|
||||
msgstr "Réinitialiser le zoom"
|
||||
|
||||
#: 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:37
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||
msgid "Resumes"
|
||||
msgstr "CVs"
|
||||
|
||||
@ -1237,11 +1295,11 @@ msgstr "Arrondi"
|
||||
msgid "Save Changes"
|
||||
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"
|
||||
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"
|
||||
msgstr "Enregistré"
|
||||
|
||||
@ -1262,15 +1320,15 @@ msgstr "Défilement vers Pan"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Défilement vers le zoom"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Rechercher une famille de polices"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Rechercher un sous-ensemble de polices"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Rechercher une variante de police"
|
||||
|
||||
@ -1282,7 +1340,7 @@ msgstr "Rechercher une langue"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Sécurisé avec l'authentification à deux facteurs"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Sécurité"
|
||||
|
||||
@ -1294,7 +1352,7 @@ msgstr "Auto-hébergement avec Docker"
|
||||
msgid "Send Email"
|
||||
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"
|
||||
msgstr "M'envoyer un message"
|
||||
|
||||
@ -1314,6 +1372,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Configurer l'authentification à deux facteurs sur votre compte"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Partager"
|
||||
@ -1330,7 +1389,7 @@ msgstr "Afficher la ligne de saut"
|
||||
msgid "Show Page Numbers"
|
||||
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"
|
||||
msgstr "Panneau latéral"
|
||||
|
||||
@ -1408,6 +1467,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Commencez à créer votre CV en lui donnant un nom."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Statistiques"
|
||||
@ -1422,17 +1482,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/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/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/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "Summary"
|
||||
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!"
|
||||
msgstr "Soutenez l'application en donnant ce que vous pouvez !"
|
||||
|
||||
@ -1444,11 +1504,20 @@ msgstr "Soutenir le Reactive Resume"
|
||||
msgid "Supports A4/Letter page formats"
|
||||
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
|
||||
msgid "System"
|
||||
msgstr "Système"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Modèle"
|
||||
@ -1465,15 +1534,20 @@ msgstr "Témoignages"
|
||||
msgid "Text Color"
|
||||
msgstr "Couleur du texte"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "Les mots de passe saisis ne correspondent pas."
|
||||
#: apps/client/src/pages/public/error.tsx:17
|
||||
msgid "The page you're looking for doesn't exist."
|
||||
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
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "Le CV que vous souhaitez mettre à jour est verrouillé, veuillez le déverrouiller si vous souhaitez y apporter des modifications."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1604,7 @@ msgstr "Suivre les vues et les téléchargements"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Authentification à deux facteurs"
|
||||
|
||||
@ -1552,11 +1626,12 @@ msgid "Type of Study"
|
||||
msgstr "Type d'étude"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Typographie"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Souligner les liens"
|
||||
|
||||
@ -1599,6 +1674,14 @@ msgstr "URL"
|
||||
msgid "URL must start with 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:57
|
||||
msgid "Use your backup code"
|
||||
@ -1651,7 +1734,7 @@ msgstr "Version 4"
|
||||
msgid "Views"
|
||||
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"
|
||||
msgstr "Visible"
|
||||
|
||||
@ -1665,15 +1748,15 @@ 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/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/experience.tsx:100
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:96
|
||||
msgid "Website"
|
||||
msgstr "Site Web"
|
||||
|
||||
@ -1681,10 +1764,14 @@ msgstr "Site Web"
|
||||
msgid "What's new in the latest 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/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
||||
#: apps/client/src/pages/public/error.tsx:26
|
||||
msgid "You are not authorized to access this page."
|
||||
msgstr "Vous n'êtes pas autorisé à accéder à cette page."
|
||||
|
||||
#: 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."
|
||||
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 +1779,27 @@ msgstr "Vous pouvez ajouter plusieurs mots-clés en les séparant par une virgul
|
||||
msgid "You can also enter your username."
|
||||
msgstr "Vous pouvez également saisir votre nom d'utilisateur."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||
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."
|
||||
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."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||
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 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
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
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."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||
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 é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
|
||||
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."
|
||||
|
||||
#: 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."
|
||||
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 +1816,7 @@ msgstr "Vous avez un message !"
|
||||
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!"
|
||||
|
||||
#: 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."
|
||||
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 +1828,7 @@ msgstr "Votre adresse e-mail a été vérifiée avec succès."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Votre clé API OpenAI n'a pas encore été définie. Veuillez accéder aux paramètres de votre compte pour activer l'intégration OpenAI."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Votre mot de passe a été mis à jour."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: hi\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-11-04 14:22\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Hindi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -30,27 +30,27 @@ msgstr "चुनने के लिए {templatesCount} बायोडाट
|
||||
msgid "{value, plural, one {Column} other {Columns}}"
|
||||
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>"
|
||||
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>"
|
||||
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."
|
||||
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>"
|
||||
msgstr "<0>समुदाय ने रिएक्टिव रेज़्यूमे के लिए दस्तावेज़ लिखने में बहुत समय बिताया है, और मुझे यकीन है कि यह आपको ऐप के साथ शुरुआत करने में मदद करेगा।</0> <1>शुरुआत करने में आपकी मदद करने के लिए बहुत सारे उदाहरण भी हैं, और ऐसी विशेषताएं भी हैं जिनके बारे में आप नहीं जानते होंगे जो आपको अपना संपूर्ण बायोडाटा बनाने में मदद कर सकती हैं।</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>दो-कारक प्रमाणीकरण वर्तमान में अक्षम है।</0> आप अपने खाते में एक प्रमाणक ऐप जोड़कर इसे सक्षम कर सकते हैं।"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>दो-कारक प्रमाणीकरण सक्षम है।</0> हर बार साइन इन करने पर आपसे एक कोड दर्ज करने के लिए कहा जाएगा।"
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "खाता"
|
||||
msgid "Add a custom field"
|
||||
msgstr "नया कस्टम फ़ील्ड जोड़ें"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:203
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "एक नया आइटम जोड़ें"
|
||||
@ -112,12 +112,12 @@ msgstr "एक नया आइटम जोड़ें"
|
||||
msgid "Add a new item"
|
||||
msgstr "एक नया आइटम जोड़ें"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:267
|
||||
msgid "Add a new section"
|
||||
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"
|
||||
msgstr "नया पेज जोड़ें"
|
||||
|
||||
@ -133,6 +133,14 @@ msgstr "क्या आपके पास पहले से एक खात
|
||||
msgid "An error occurred while validating the file."
|
||||
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
|
||||
msgid "and many more..."
|
||||
msgstr "और भी कई..."
|
||||
@ -191,6 +199,18 @@ msgstr "{languagesCount} भाषाओं में उपलब्ध है"
|
||||
msgid "Awarder"
|
||||
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/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
@ -209,16 +229,16 @@ msgstr "बैकअप कोड"
|
||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||
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"
|
||||
msgstr ""
|
||||
msgstr "बेस URL"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:58
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr "बुनियादी"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
msgid "Basics"
|
||||
msgstr "बुनियादी"
|
||||
|
||||
@ -246,8 +266,8 @@ msgstr "समुदाय द्वारा, समुदाय के लि
|
||||
msgid "Cancel"
|
||||
msgstr "रद्द करें"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
#: apps/client/src/components/ai-actions.tsx:107
|
||||
#: apps/client/src/components/ai-actions.tsx:110
|
||||
msgid "Casual"
|
||||
msgstr "साधारण"
|
||||
|
||||
@ -255,12 +275,16 @@ msgstr "साधारण"
|
||||
msgid "Center Artboard"
|
||||
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/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "पासवर्ड बदलिए"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
#: apps/client/src/components/ai-actions.tsx:101
|
||||
msgid "Change Tone"
|
||||
msgstr "तान बदलें"
|
||||
|
||||
@ -288,6 +312,16 @@ msgstr "कोड"
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr "कोड बिल्कुल 6 अंक लंबा होना चाहिए."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:272
|
||||
msgid "Collapse All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Collapse section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136
|
||||
msgid "Columns"
|
||||
msgstr "कॉलम"
|
||||
@ -296,21 +330,17 @@ msgstr "कॉलम"
|
||||
msgid "Company"
|
||||
msgstr "कंपनी"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
#: apps/client/src/components/ai-actions.tsx:119
|
||||
#: apps/client/src/components/ai-actions.tsx:122
|
||||
msgid "Confident"
|
||||
msgstr "आत्मविश्वासी"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "नए पासवर्ड की पुष्टि करें"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
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"
|
||||
msgstr "कॉपी करें"
|
||||
|
||||
@ -351,16 +381,21 @@ msgstr "अभी एक बनाएं"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "नमूना बायोडाटा बनाएं"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr "वर्तमान पासवर्ड"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
msgstr "कस्टम सीएसएस"
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:62
|
||||
msgid "Custom resume sections"
|
||||
msgstr "कस्टम बायोडाटा अनुभाग"
|
||||
|
||||
#: apps/client/src/stores/resume.ts:47
|
||||
#: apps/client/src/stores/resume.ts:53
|
||||
msgid "Custom Section"
|
||||
msgstr "कस्टम अनुभाग"
|
||||
|
||||
@ -386,10 +421,10 @@ msgstr "गहरी"
|
||||
msgid "Date"
|
||||
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/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
|
||||
msgid "Date or Date Range"
|
||||
msgstr "तारीख या तारीख सीमा"
|
||||
@ -407,11 +442,15 @@ msgstr "हटाएं"
|
||||
msgid "Delete Account"
|
||||
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/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/skills.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||
msgid "Description"
|
||||
msgstr "विवरण"
|
||||
|
||||
@ -423,18 +462,18 @@ msgstr "सिंगल/मल्टी पेज बायोडाटा ड
|
||||
msgid "Disable"
|
||||
msgstr "अक्षम करें"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "2FA निलम्बित करें"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "रद्द करें"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr "आलेख"
|
||||
|
||||
@ -442,7 +481,7 @@ msgstr "आलेख"
|
||||
msgid "Don't have an account?"
|
||||
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!"
|
||||
msgstr "पता नहीं कहाँ से शुरू करें? दस्तावेज़ पढ़ें"
|
||||
|
||||
@ -450,7 +489,7 @@ msgstr "पता नहीं कहाँ से शुरू करें?
|
||||
msgid "Don't see your language? <0>Help translate the app.</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"
|
||||
msgstr "रिएक्टिव रेज़्यूमे के लिए दान करें"
|
||||
|
||||
@ -458,12 +497,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."
|
||||
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."
|
||||
msgstr "अपने बायोडाटा का एक पीडीएफ डाउनलोड करें। इस फ़ाइल का उपयोग आपके बायोडाटा को प्रिंट करने, भर्तीकर्ताओं को भेजने या नौकरी पोर्टल पर अपलोड करने के लिए किया जा सकता है।"
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "डाउनलोड PDF"
|
||||
|
||||
@ -487,7 +525,7 @@ msgstr "किसी मौजूदा आइटम का नक़ल बन
|
||||
msgid "Duplicate an existing resume"
|
||||
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"
|
||||
msgstr "एडिट करें"
|
||||
|
||||
@ -498,12 +536,12 @@ msgstr "प्रभाव"
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:90
|
||||
#: apps/client/src/pages/auth/register/page.tsx:141
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181
|
||||
msgid "Email"
|
||||
msgstr "ई-मेल"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "2FA चालू करें"
|
||||
|
||||
@ -531,6 +569,10 @@ msgstr "नीचे आपके प्रमाणक ऐप द्वार
|
||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||
msgstr "अपना ईमेल पता दर्ज करें और यदि खाता मौजूद है तो हम आपको अपना पासवर्ड रीसेट करने के लिए एक लिंक भेजेंगे।"
|
||||
|
||||
#: apps/client/src/pages/public/error.tsx:46
|
||||
msgid "Error {statusCode}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||
msgid "Errors"
|
||||
msgstr "त्रुटि"
|
||||
@ -539,11 +581,22 @@ msgstr "त्रुटि"
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr "भले ही आप वित्तीय रूप से योगदान करने की स्थिति में नहीं हैं, फिर भी आप GitHub रिपॉजिटरी को एक स्टार देकर, अपने दोस्तों तक बात फैलाकर, या मुझे यह बताने के लिए एक त्वरित संदेश भेजकर अंतर ला सकते हैं कि रिएक्टिव रेज़्यूमे ने आपकी कैसे मदद की है। आपकी प्रतिक्रिया और समर्थन का हमेशा स्वागत है और बहुत सराहना की जाती है!"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:271
|
||||
msgid "Expand All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Expand section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "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 "रिएक्टिव रेज़्यूमे में उपलब्ध टेम्पलेट्स का अन्वेषण करें और उनके साथ तैयार किए गए रेज़्यूमे देखें। वे आपके अगले बायोडाटा के निर्माण में मार्गदर्शन के लिए उदाहरण के रूप में भी काम कर सकते हैं।"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "निर्यात"
|
||||
@ -564,19 +617,19 @@ msgstr "अंत में,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "वर्तनी और व्याकरण ठीक करें"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "फ़ॉन्ट फ़ैमिली"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "फ़ॉन्ट आकार"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "फ़ॉन्ट उपसमुच्चय"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "फ़ॉन्ट प्रकार"
|
||||
|
||||
@ -584,7 +637,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."
|
||||
msgstr "उदाहरण के लिए, आपने किन कंपनियों को यह बायोडाटा भेजा है, इसकी जानकारी या नौकरी विवरण के लिंक यहां नोट किए जा सकते हैं।"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||
msgid "Forget"
|
||||
msgstr "हटाएं"
|
||||
|
||||
@ -601,7 +654,7 @@ msgstr "पासवर्ड भूल गए हैं?"
|
||||
msgid "Format"
|
||||
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?"
|
||||
msgstr "कोई बग मिला, या किसी नई सुविधा के बारे में कोई विचार है?"
|
||||
|
||||
@ -609,12 +662,12 @@ msgstr "कोई बग मिला, या किसी नई सुवि
|
||||
msgid "Free, forever"
|
||||
msgstr "हमेशा के लिए मुफ़्त"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:121
|
||||
#: apps/client/src/components/ai-actions.tsx:124
|
||||
#: apps/client/src/components/ai-actions.tsx:125
|
||||
#: apps/client/src/components/ai-actions.tsx:128
|
||||
msgid "Friendly"
|
||||
msgstr "मित्रतापूर्ण"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:56
|
||||
msgid "Full Name"
|
||||
msgstr "पूरा नाम"
|
||||
|
||||
@ -643,6 +696,10 @@ msgstr "अपने पुराने बायोडाटा को नय
|
||||
msgid "Go to Dashboard"
|
||||
msgstr "डैशबोर्ड पर जाएँ"
|
||||
|
||||
#: apps/client/src/pages/public/error.tsx:55
|
||||
msgid "Go to home"
|
||||
msgstr "मुखपृष्ठ पर जाएं"
|
||||
|
||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||
msgid "Google"
|
||||
msgstr "गूगल"
|
||||
@ -651,11 +708,11 @@ msgstr "गूगल"
|
||||
msgid "Grayscale"
|
||||
msgstr "ग्रेस्केल"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||
msgid "Grid"
|
||||
msgstr "ग्रिड"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:70
|
||||
msgid "Headline"
|
||||
msgstr "शीर्षक"
|
||||
|
||||
@ -668,7 +725,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr "यहां, आप अपने अनुभव को अनुकूलित और वैयक्तिकृत करने के लिए अपनी प्रोफ़ाइल को अपडेट कर सकते हैं।"
|
||||
|
||||
#: 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
|
||||
msgid "Hidden"
|
||||
msgstr "छुपा हुआ"
|
||||
@ -677,7 +734,7 @@ msgstr "छुपा हुआ"
|
||||
msgid "Hide"
|
||||
msgstr "छुपायें"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "ऑइकन छुपायें"
|
||||
|
||||
@ -734,7 +791,7 @@ msgstr "लेखन में सुधार करें"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "यदि आप इस क्यूआर कोड को स्कैन करने में असमर्थ हैं, तो आप इस लिंक को अपने प्रमाणक ऐप में कॉपी-पेस्ट भी कर सकते हैं।"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "इस अनुभाग में, आप अपना पासवर्ड बदल सकते हैं और दो-कारक प्रमाणीकरण को सक्षम/अक्षम कर सकते हैं।"
|
||||
|
||||
@ -743,7 +800,8 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "इस अनुभाग में, आप अपना खाता और अपने उपयोगकर्ता से जुड़े सभी डेटा को हटा सकते हैं, लेकिन कृपया ध्यान रखें कि <0>यह कार्रवाई अपरिवर्तनीय है</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx: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"
|
||||
msgstr "जानकारी"
|
||||
|
||||
@ -802,10 +860,10 @@ msgstr "john.doe@example.com"
|
||||
msgid "JSON"
|
||||
msgstr "जेसन"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||
msgid "Keywords"
|
||||
msgstr "खोजशब्द:"
|
||||
|
||||
@ -824,7 +882,8 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "अंतिम अद्यतन {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx: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"
|
||||
msgstr "लेआउट"
|
||||
|
||||
@ -837,7 +896,7 @@ msgid "Letter"
|
||||
msgstr "अक्षर"
|
||||
|
||||
#: 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"
|
||||
msgstr "स्तर"
|
||||
|
||||
@ -853,7 +912,7 @@ msgstr "हल्का रंग"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "प्रकाश या अंधेरा थीम"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "पंक्ति ऊँचाई"
|
||||
|
||||
@ -862,14 +921,14 @@ msgstr "पंक्ति ऊँचाई"
|
||||
msgid "LinkedIn, JSON Resume, etc."
|
||||
msgstr "लिंक्डइन, JSON बायोडाटा, आदि।"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||
msgid "List"
|
||||
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/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:120
|
||||
msgid "Location"
|
||||
msgstr "स्थान"
|
||||
|
||||
@ -897,7 +956,7 @@ msgstr "लॉगआउट"
|
||||
msgid "Lost your device?"
|
||||
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"
|
||||
msgstr "मुख्य"
|
||||
|
||||
@ -914,7 +973,7 @@ msgstr "मार्च 2023"
|
||||
|
||||
#: 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/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
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "मार्च 2023 - वर्तमान"
|
||||
@ -923,7 +982,7 @@ msgstr "मार्च 2023 - वर्तमान"
|
||||
msgid "Margin"
|
||||
msgstr "अंतर"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||
msgid "Max Tokens"
|
||||
msgstr ""
|
||||
|
||||
@ -931,18 +990,18 @@ msgstr ""
|
||||
msgid "MIT License"
|
||||
msgstr "मआईटी लाईसन्स"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
msgstr "मॉडल"
|
||||
|
||||
#: 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/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: 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/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/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/dashboard/settings/_sections/account.tsx:153
|
||||
msgid "Name"
|
||||
@ -957,7 +1016,7 @@ msgstr "नाम"
|
||||
msgid "Network"
|
||||
msgstr "नेटवर्क"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "नया पासवर्ड"
|
||||
|
||||
@ -974,6 +1033,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "नोट: इससे आपका खाता कम सुरक्षित हो जाएगा."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "टिप्पणियाँ"
|
||||
@ -1009,16 +1069,16 @@ msgstr "OpenAI ने आपके टेक्स्ट के लिए को
|
||||
msgid "OpenAI Integration"
|
||||
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"
|
||||
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/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "विकल्प"
|
||||
|
||||
@ -1032,22 +1092,23 @@ msgid "Organization"
|
||||
msgstr "संगठन"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "पृष्ठ"
|
||||
|
||||
#: 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}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "पासवर्ड"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||
msgid "PDF"
|
||||
msgstr "पीडीएफ"
|
||||
|
||||
@ -1055,7 +1116,7 @@ msgstr "पीडीएफ"
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr "प्रत्येक बायोडाटा के लिए व्यक्तिगत नोट्स"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:108
|
||||
msgid "Phone"
|
||||
msgstr "फ़ोन"
|
||||
|
||||
@ -1109,14 +1170,12 @@ msgstr "<0>सिंपल आइकॉन</0> द्वारा संचा
|
||||
msgid "Primary Color"
|
||||
msgstr "प्राथमिक रंग"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||
msgid "Privacy Policy"
|
||||
msgstr "गोपनीयता नीति"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
#: apps/client/src/components/ai-actions.tsx:113
|
||||
#: apps/client/src/components/ai-actions.tsx:116
|
||||
msgid "Professional"
|
||||
msgstr "प्रोफेशनल"
|
||||
|
||||
@ -1132,7 +1191,7 @@ msgstr "सार्वजनिक"
|
||||
msgid "Publisher"
|
||||
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"
|
||||
msgstr "एक मुद्दा उठाओ"
|
||||
|
||||
@ -1144,11 +1203,10 @@ msgstr "एक मुद्दा उठाओ"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1175,12 +1233,12 @@ msgstr "रिएक्टिव रेज़्यूमे अपने जी
|
||||
msgid "Redo"
|
||||
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
|
||||
msgid "Remove"
|
||||
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"
|
||||
msgstr "हटाएँ पेज"
|
||||
|
||||
@ -1199,7 +1257,7 @@ msgstr "ईमेल पुष्टिकरण लिंक पुनः भ
|
||||
msgid "Reset"
|
||||
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"
|
||||
msgstr "लेआउट रिसेट"
|
||||
|
||||
@ -1213,8 +1271,8 @@ msgid "Reset Zoom"
|
||||
msgstr "ज़ूम रीसेट करें"
|
||||
|
||||
#: 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:37
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||
msgid "Resumes"
|
||||
msgstr "बायोडाटा"
|
||||
|
||||
@ -1237,11 +1295,11 @@ msgstr "गोल"
|
||||
msgid "Save Changes"
|
||||
msgstr "परिवर्तन सेव करें"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1262,15 +1320,15 @@ msgstr ""
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "फ़ॉन्ट परिवार खोजें"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "फ़ॉन्ट उपसमुच्चय खोजें"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "फ़ॉन्ट प्रकार खोजें"
|
||||
|
||||
@ -1282,7 +1340,7 @@ msgstr "एक भाषा के लिए खोज करे"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "दो-कारक प्रमाणीकरण के साथ सुरक्षित"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "सुरक्षा"
|
||||
|
||||
@ -1294,7 +1352,7 @@ msgstr "डॉकर के साथ स्व-मेज़बान"
|
||||
msgid "Send Email"
|
||||
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"
|
||||
msgstr "संदेश भेजें"
|
||||
|
||||
@ -1314,6 +1372,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "अपने खाते पर दो-कारक प्रमाणीकरण सेट करें"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "साझा करना"
|
||||
@ -1330,7 +1389,7 @@ msgstr "ब्रेक लाइन दिखाएँ"
|
||||
msgid "Show Page Numbers"
|
||||
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"
|
||||
msgstr "साइडबार"
|
||||
|
||||
@ -1408,6 +1467,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "अपना बायोडाटा एक नाम देकर बनाना शुरू करें।"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "आंकड़े"
|
||||
@ -1422,17 +1482,17 @@ msgstr "अपने बैकअप कोड सुरक्षित रू
|
||||
|
||||
#: 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/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/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/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "Summary"
|
||||
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!"
|
||||
msgstr "आप जो कर सकते हैं दान करके ऐप का समर्थन करें!"
|
||||
|
||||
@ -1444,11 +1504,20 @@ msgstr "रिएक्टिव रेज़्यूमे समर्थन"
|
||||
msgid "Supports A4/Letter page formats"
|
||||
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
|
||||
msgid "System"
|
||||
msgstr "सिस्टम"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "खाका"
|
||||
@ -1465,15 +1534,20 @@ msgstr "प्रशंसापत्र"
|
||||
msgid "Text Color"
|
||||
msgstr "अक्षरों का रंग"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "आपके द्वारा दर्ज किया गया पासवर्ड मेल नहीं खाता है।"
|
||||
#: apps/client/src/pages/public/error.tsx:17
|
||||
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 ""
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "आप जिस बायोडाटा को अपडेट करना चाहते हैं वह लॉक है, यदि आप इसमें कोई बदलाव करना चाहते हैं तो कृपया अनलॉक करें।"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1604,7 @@ msgstr "दृश्य और डाउनलोड ट्रैक करे
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "दो कारक प्रमाणीकरण"
|
||||
|
||||
@ -1552,11 +1626,12 @@ msgid "Type of Study"
|
||||
msgstr "अध्ययन का प्रकार"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "टाइपोग्राफी"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "लिंक को रेखांकित करें"
|
||||
|
||||
@ -1599,6 +1674,14 @@ msgstr "यूआरएल"
|
||||
msgid "URL must start with 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:57
|
||||
msgid "Use your backup code"
|
||||
@ -1651,7 +1734,7 @@ msgstr "संस्करण 4"
|
||||
msgid "Views"
|
||||
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"
|
||||
msgstr "दर्शनीय"
|
||||
|
||||
@ -1665,15 +1748,15 @@ msgstr "हम आपके ईमेल पते को केवल यह
|
||||
|
||||
#: 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/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/experience.tsx:100
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:96
|
||||
msgid "Website"
|
||||
msgstr "वेबसाइट"
|
||||
|
||||
@ -1681,10 +1764,14 @@ msgstr "वेबसाइट"
|
||||
msgid "What's new in the latest version"
|
||||
msgstr "नवीनतम संस्करण में नया क्या है"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
||||
#: apps/client/src/pages/public/error.tsx:26
|
||||
msgid "You are not authorized to access this page."
|
||||
msgstr ""
|
||||
|
||||
#: 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."
|
||||
msgstr "आप एकाधिक कीवर्ड को अल्पविराम से अलग करके या एंटर दबाकर जोड़ सकते हैं।"
|
||||
|
||||
@ -1692,19 +1779,27 @@ msgstr "आप एकाधिक कीवर्ड को अल्पवि
|
||||
msgid "You can also enter your username."
|
||||
msgstr "आप अपना उपयोगकर्ता नाम भी दर्ज कर सकते हैं."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||
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."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||
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 ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
msgstr "आप सामग्री तैयार करने में मदद के लिए या अपना बायोडाटा बनाते समय अपने लेखन को बेहतर बनाने के लिए OpenAI API का उपयोग कर सकते हैं।"
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||
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 ""
|
||||
|
||||
#: 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."
|
||||
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."
|
||||
msgstr "आपके पास <0>अपनी स्वयं की OpenAI API कुंजी प्राप्त करने का विकल्प है</0>. यह कुंजी आपको अपनी इच्छानुसार एपीआई का लाभ उठाने का अधिकार देती है। वैकल्पिक रूप से, यदि आप रिएक्टिव रेज़्यूमे में एआई सुविधाओं को पूरी तरह से अक्षम करना चाहते हैं, तो आप बस अपनी सेटिंग्स से कुंजी को हटा सकते हैं।"
|
||||
|
||||
@ -1721,7 +1816,7 @@ msgstr "आपको मेल प्राप्त हुआ है"
|
||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||
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."
|
||||
msgstr "आपकी एपीआई कुंजी ब्राउज़र के स्थानीय भंडारण में सुरक्षित रूप से संग्रहीत है और इसका उपयोग केवल उनके आधिकारिक एसडीके के माध्यम से OpenAI से अनुरोध करते समय किया जाता है। निश्चिंत रहें कि आपकी कुंजी OpenAI की सेवाओं के साथ इंटरैक्ट करने के अलावा किसी भी बाहरी सर्वर पर प्रसारित नहीं होती है।"
|
||||
|
||||
@ -1733,7 +1828,7 @@ msgstr "आपका ईमेल पता सफलतापूर्वक
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "आपकी OpenAI API कुंजी अभी तक सेट नहीं की गई है। OpenAI एकीकरण को सक्षम करने के लिए कृपया अपनी खाता सेटिंग में जाएं।"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "आपका पासवर्ड बदला जा चुका है।"
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: hu\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-11-04 14:22\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Hungarian\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}}"
|
||||
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>"
|
||||
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>"
|
||||
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."
|
||||
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>"
|
||||
msgstr "<0>A közösség rengeteg időt töltött a Reactive Resume dokumentációjának megírásával, és biztos vagyok benne, hogy ez segíteni fog az alkalmazás használatának megkezdésében.</0><1>Rengeteg példát is találsz a kezdéshez, és olyan funkciókat, amelyekről talán nem is tudsz, és amelyek segíthetnek a tökéletes önéletrajz elkészítésében.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>A kétfaktoros hitelesítés jelenleg ki van kapcsolva.</0> A hitelesítést egy hitelesítő alkalmazás hozzáadásával engedélyezheti a fiókjához."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>A kétfaktoros hitelesítés engedélyezve van.</0> Minden bejelentkezéskor meg kell adnia egy kódot."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Fiók"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Egyéni mező hozzáadása"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:203
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Elem hozzáadása"
|
||||
@ -112,12 +112,12 @@ msgstr "Elem hozzáadása"
|
||||
msgid "Add a new item"
|
||||
msgstr "Elem hozzáadása"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:267
|
||||
msgid "Add a new section"
|
||||
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"
|
||||
msgstr "Új oldal hozzáadása"
|
||||
|
||||
@ -133,6 +133,14 @@ msgstr "Van már fiókod?"
|
||||
msgid "An error occurred while validating the file."
|
||||
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
|
||||
msgid "and many more..."
|
||||
msgstr "- És még sok más..."
|
||||
@ -191,6 +199,18 @@ msgstr "{languagesCount} nyelven érhető el"
|
||||
msgid "Awarder"
|
||||
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/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
@ -209,16 +229,16 @@ msgstr "Biztonsági kód"
|
||||
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."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||
msgid "Base URL"
|
||||
msgstr "Bázis URL"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:58
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr "Alapadatok"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
msgid "Basics"
|
||||
msgstr "Alapadatok"
|
||||
|
||||
@ -246,8 +266,8 @@ msgstr "A közösség által, a közösségért."
|
||||
msgid "Cancel"
|
||||
msgstr "Mégsem"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
#: apps/client/src/components/ai-actions.tsx:107
|
||||
#: apps/client/src/components/ai-actions.tsx:110
|
||||
msgid "Casual"
|
||||
msgstr "Alkalmi"
|
||||
|
||||
@ -255,12 +275,16 @@ msgstr "Alkalmi"
|
||||
msgid "Center Artboard"
|
||||
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/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Jelszó módosítása"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
#: apps/client/src/components/ai-actions.tsx:101
|
||||
msgid "Change Tone"
|
||||
msgstr "Hangszínváltás"
|
||||
|
||||
@ -288,6 +312,16 @@ msgstr "Kód"
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr "A kódnak pontosan 6 számjegyből kell állnia."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:272
|
||||
msgid "Collapse All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Collapse section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136
|
||||
msgid "Columns"
|
||||
msgstr "Oszlopok"
|
||||
@ -296,21 +330,17 @@ msgstr "Oszlopok"
|
||||
msgid "Company"
|
||||
msgstr "Cég"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
#: apps/client/src/components/ai-actions.tsx:119
|
||||
#: apps/client/src/components/ai-actions.tsx:122
|
||||
msgid "Confident"
|
||||
msgstr "Magabiztos"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Új jelszó megerősítése"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
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"
|
||||
msgstr "Másolás"
|
||||
|
||||
@ -351,7 +381,12 @@ msgstr "Létrehozás most"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Minta önéletrajz létrehozása"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr "Jelenlegi jelszó"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "Egyéni CSS"
|
||||
@ -360,7 +395,7 @@ msgstr "Egyéni CSS"
|
||||
msgid "Custom resume sections"
|
||||
msgstr "Egyéni önéletrajz szakaszok"
|
||||
|
||||
#: apps/client/src/stores/resume.ts:47
|
||||
#: apps/client/src/stores/resume.ts:53
|
||||
msgid "Custom Section"
|
||||
msgstr "Egyéni szekció"
|
||||
|
||||
@ -386,10 +421,10 @@ msgstr "Sötét"
|
||||
msgid "Date"
|
||||
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/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
|
||||
msgid "Date or Date Range"
|
||||
msgstr "Dátum vagy dátumtartomány"
|
||||
@ -407,11 +442,15 @@ msgstr "Törlés"
|
||||
msgid "Delete Account"
|
||||
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/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/skills.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||
msgid "Description"
|
||||
msgstr "Leírás"
|
||||
|
||||
@ -423,18 +462,18 @@ msgstr "Egy/több oldalas önéletrajzok tervezése"
|
||||
msgid "Disable"
|
||||
msgstr "Letiltás"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "2FA Kikapcsolása"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Elvetés"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentáció"
|
||||
|
||||
@ -442,7 +481,7 @@ msgstr "Dokumentáció"
|
||||
msgid "Don't have an account?"
|
||||
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!"
|
||||
msgstr "Nem tudod, hol kezd? Nézd meg a dokumentációt!"
|
||||
|
||||
@ -450,7 +489,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>"
|
||||
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"
|
||||
msgstr "Adományozás a Reactive Resumenak"
|
||||
|
||||
@ -458,12 +497,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."
|
||||
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."
|
||||
msgstr "Töltsd le önéletrajzod PDF formátumban. Ezzel a fájllal kinyomtathatod önéletrajzod, elküldheted a toborzóknak, vagy feltöltheted az állásportálokra."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "PDF letöltése"
|
||||
|
||||
@ -487,7 +525,7 @@ msgstr "Meglévő elem duplikálása"
|
||||
msgid "Duplicate an existing resume"
|
||||
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"
|
||||
msgstr "Szerkesztés"
|
||||
|
||||
@ -498,12 +536,12 @@ msgstr "Effektek"
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:90
|
||||
#: apps/client/src/pages/auth/register/page.tsx:141
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181
|
||||
msgid "Email"
|
||||
msgstr "E-mail"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "2FA bekapcsolása"
|
||||
|
||||
@ -531,6 +569,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."
|
||||
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
|
||||
msgid "Errors"
|
||||
msgstr "Hibák"
|
||||
@ -539,11 +581,22 @@ msgstr "Hibák"
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr "Még ha nem is vagy abban a helyzetben, hogy anyagilag hozzájárulj, akkor is tehetsz valamit, ha csillagot adsz a GitHub tárolónak, továbbítod a hírt barátaidnak, vagy küldesz egy gyors üzenetet, hogy tudasd velem, hogyan segített neked a Reactive Resume. Visszajelzéseiteket és támogatásotokat mindig szívesen fogadjuk és nagyra értékeljük!"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:271
|
||||
msgid "Expand All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Expand section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "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 "Fedezze fel a Reaktív önéletrajzban elérhető sablonokat, és tekintse meg a velük készített önéletrajzokat. Ezek példaként is szolgálhatnak a következő önéletrajzának elkészítéséhez."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Exportálás"
|
||||
@ -564,19 +617,19 @@ msgstr "Végül,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Helyesírás és nyelvtan javítása"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Betűkészlet"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Betűméret"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Betűkészlet részhalmaz"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Betűtípusok"
|
||||
|
||||
@ -584,7 +637,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."
|
||||
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"
|
||||
msgstr "Elfelejt"
|
||||
|
||||
@ -601,7 +654,7 @@ msgstr "Elfelejtette a jelszavát?"
|
||||
msgid "Format"
|
||||
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?"
|
||||
msgstr "Találtál egy hibát, vagy van egy új funkcióra vonatkozó ötleted?"
|
||||
|
||||
@ -609,12 +662,12 @@ msgstr "Találtál egy hibát, vagy van egy új funkcióra vonatkozó ötleted?"
|
||||
msgid "Free, forever"
|
||||
msgstr "Mindig ingyenes"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:121
|
||||
#: apps/client/src/components/ai-actions.tsx:124
|
||||
#: apps/client/src/components/ai-actions.tsx:125
|
||||
#: apps/client/src/components/ai-actions.tsx:128
|
||||
msgid "Friendly"
|
||||
msgstr "Barátságos"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:56
|
||||
msgid "Full Name"
|
||||
msgstr "Teljes név"
|
||||
|
||||
@ -643,6 +696,10 @@ msgstr "Adjon új nevet a régi önéletrajzának."
|
||||
msgid "Go to Dashboard"
|
||||
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
|
||||
msgid "Google"
|
||||
msgstr "Google"
|
||||
@ -651,11 +708,11 @@ msgstr "Google"
|
||||
msgid "Grayscale"
|
||||
msgstr "Szürkeárnyalatos"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||
msgid "Grid"
|
||||
msgstr "Rács"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:70
|
||||
msgid "Headline"
|
||||
msgstr "Főcím"
|
||||
|
||||
@ -668,7 +725,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."
|
||||
|
||||
#: 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
|
||||
msgid "Hidden"
|
||||
msgstr "Rejtett"
|
||||
@ -677,7 +734,7 @@ msgstr "Rejtett"
|
||||
msgid "Hide"
|
||||
msgstr "Elrejtés"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Ikonok elrejtése"
|
||||
|
||||
@ -734,7 +791,7 @@ msgstr "Az írás javítása"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Ha nem tudja beolvasni ezt a QR-kódot, akkor másolja be ezt a linket a hitelesítési alkalmazásba."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "Ebben a szakaszban módosíthatja jelszavát, és engedélyezheti/letilthatja a kétfaktoros hitelesítést."
|
||||
|
||||
@ -743,7 +800,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>."
|
||||
|
||||
#: 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"
|
||||
msgstr "Információ"
|
||||
|
||||
@ -802,10 +860,10 @@ msgstr "gipsz.jakab@example.com"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||
msgid "Keywords"
|
||||
msgstr "Kulcsszavak"
|
||||
|
||||
@ -824,7 +882,8 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Utoljára frissítve {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx: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"
|
||||
msgstr "Elrendezés"
|
||||
|
||||
@ -837,7 +896,7 @@ msgid "Letter"
|
||||
msgstr "Levél"
|
||||
|
||||
#: 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"
|
||||
msgstr "Szint"
|
||||
|
||||
@ -853,7 +912,7 @@ msgstr "Fény"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Világos vagy sötét téma"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Vonalmagasság"
|
||||
|
||||
@ -862,14 +921,14 @@ msgstr "Vonalmagasság"
|
||||
msgid "LinkedIn, JSON Resume, etc."
|
||||
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"
|
||||
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/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:120
|
||||
msgid "Location"
|
||||
msgstr "Helyszín"
|
||||
|
||||
@ -897,7 +956,7 @@ msgstr "Kijelentkezés"
|
||||
msgid "Lost your device?"
|
||||
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"
|
||||
msgstr "Fő"
|
||||
|
||||
@ -914,7 +973,7 @@ msgstr "2023. március"
|
||||
|
||||
#: 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/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
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "2023. március – jelen"
|
||||
@ -923,7 +982,7 @@ msgstr "2023. március – jelen"
|
||||
msgid "Margin"
|
||||
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"
|
||||
msgstr "Max zsetonok"
|
||||
|
||||
@ -931,18 +990,18 @@ msgstr "Max zsetonok"
|
||||
msgid "MIT License"
|
||||
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"
|
||||
msgstr "Modell"
|
||||
|
||||
#: 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/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: 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/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/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/dashboard/settings/_sections/account.tsx:153
|
||||
msgid "Name"
|
||||
@ -957,7 +1016,7 @@ msgstr "Név"
|
||||
msgid "Network"
|
||||
msgstr "Honlap"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Új Jelszó"
|
||||
|
||||
@ -974,6 +1033,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Megjegyzés: Ezzel fiókja kevésbé lesz biztonságos."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Jegyzetek"
|
||||
@ -1009,16 +1069,16 @@ msgstr "Az OpenAI nem adott vissza semmilyen választási lehetőséget a szöve
|
||||
msgid "OpenAI Integration"
|
||||
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"
|
||||
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/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Opciók"
|
||||
|
||||
@ -1032,22 +1092,23 @@ msgid "Organization"
|
||||
msgstr "Szervezet"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Oldal"
|
||||
|
||||
#: 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}"
|
||||
msgstr "Oldal {pageNumber}"
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Jelszó"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||
msgid "PDF"
|
||||
msgstr "PDF"
|
||||
|
||||
@ -1055,7 +1116,7 @@ msgstr "PDF"
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr "Személyes megjegyzések minden önéletrajzhoz"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:108
|
||||
msgid "Phone"
|
||||
msgstr "Telefonszám"
|
||||
|
||||
@ -1109,14 +1170,12 @@ msgstr "Készítette: <0>Simple Icons</0>"
|
||||
msgid "Primary Color"
|
||||
msgstr "Elsődleges szín"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Adatvédelmi irányelvek"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
#: apps/client/src/components/ai-actions.tsx:113
|
||||
#: apps/client/src/components/ai-actions.tsx:116
|
||||
msgid "Professional"
|
||||
msgstr "Professzionális"
|
||||
|
||||
@ -1132,7 +1191,7 @@ msgstr "Nyilvános"
|
||||
msgid "Publisher"
|
||||
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"
|
||||
msgstr "Kérdés felvetése"
|
||||
|
||||
@ -1144,11 +1203,10 @@ msgstr "Kérdés felvetése"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1175,12 +1233,12 @@ msgstr "A Reactive Resume élénk közösségének köszönhetően virágzik. Ez
|
||||
msgid "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
|
||||
msgid "Remove"
|
||||
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"
|
||||
msgstr "Oldal eltávolítása"
|
||||
|
||||
@ -1199,7 +1257,7 @@ msgstr "E-mail megerősítő link újraküldése"
|
||||
msgid "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"
|
||||
msgstr "Elrendezés visszaállítása"
|
||||
|
||||
@ -1213,8 +1271,8 @@ msgid "Reset Zoom"
|
||||
msgstr "Zoom visszaállítása"
|
||||
|
||||
#: 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:37
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||
msgid "Resumes"
|
||||
msgstr "Önéletrajzok"
|
||||
|
||||
@ -1237,11 +1295,11 @@ msgstr "Kerekített"
|
||||
msgid "Save Changes"
|
||||
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"
|
||||
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"
|
||||
msgstr "Megmentett"
|
||||
|
||||
@ -1262,15 +1320,15 @@ msgstr "Görgessen a Pan-ra"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Görgessen a nagyításhoz"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Betűcsalád keresése"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Betűkészlet keresése"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Betűtípus-változat keresése"
|
||||
|
||||
@ -1282,7 +1340,7 @@ msgstr "Nyelv keresése"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Biztonságos kétfaktoros hitelesítéssel"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Biztonság"
|
||||
|
||||
@ -1294,7 +1352,7 @@ msgstr "Self-host Dockerrel"
|
||||
msgid "Send Email"
|
||||
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"
|
||||
msgstr "Küldjön üzenetet"
|
||||
|
||||
@ -1314,6 +1372,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Kétfaktoros hitelesítés beállítása a fiókjában"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Megosztás"
|
||||
@ -1330,7 +1389,7 @@ msgstr "Mutasd a törésvonalat"
|
||||
msgid "Show Page Numbers"
|
||||
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"
|
||||
msgstr "Oldalsáv"
|
||||
|
||||
@ -1408,6 +1467,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Kezdje el az önéletrajz felépítését azzal, hogy nevet ad neki."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Statisztikák"
|
||||
@ -1422,17 +1482,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/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/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/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "Summary"
|
||||
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!"
|
||||
msgstr "Támogasd az alkalmazást azzal, hogy adományozol, amit tudsz!"
|
||||
|
||||
@ -1444,11 +1504,20 @@ msgstr "Reaktív önéletrajz támogatása"
|
||||
msgid "Supports A4/Letter page formats"
|
||||
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
|
||||
msgid "System"
|
||||
msgstr "Rendszer"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Sablon"
|
||||
@ -1465,15 +1534,20 @@ msgstr "Ajánlások"
|
||||
msgid "Text Color"
|
||||
msgstr "Szöveg színe"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "A megadott jelszavak nem egyeznek."
|
||||
#: apps/client/src/pages/public/error.tsx:17
|
||||
msgid "The page you're looking for doesn't exist."
|
||||
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
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "A frissíteni kívánt önéletrajz zárolva van, kérjük, oldja fel a zárolást, ha változtatni szeretne rajta."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1604,7 @@ msgstr "Nézettség és letöltések nyomon követése"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Kétfaktoros hitelesítés"
|
||||
|
||||
@ -1552,11 +1626,12 @@ msgid "Type of Study"
|
||||
msgstr "Tanulmány típusa"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Tipográfia"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Linkek aláhúzása"
|
||||
|
||||
@ -1599,6 +1674,14 @@ msgstr "URL"
|
||||
msgid "URL must start with https://"
|
||||
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:57
|
||||
msgid "Use your backup code"
|
||||
@ -1651,7 +1734,7 @@ msgstr "4. verzió"
|
||||
msgid "Views"
|
||||
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"
|
||||
msgstr "Látható"
|
||||
|
||||
@ -1665,15 +1748,15 @@ 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/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/experience.tsx:100
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:96
|
||||
msgid "Website"
|
||||
msgstr "Honlap"
|
||||
|
||||
@ -1681,10 +1764,14 @@ msgstr "Honlap"
|
||||
msgid "What's new in the latest version"
|
||||
msgstr "Újdonságok a legújabb verzióban"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
||||
#: apps/client/src/pages/public/error.tsx:26
|
||||
msgid "You are not authorized to access this page."
|
||||
msgstr "Ön nem jogosult az oldal elérésére."
|
||||
|
||||
#: 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."
|
||||
msgstr "Több kulcsszót is hozzáadhat, ha vesszővel választja el őket, vagy megnyomja az enter billentyűt."
|
||||
|
||||
@ -1692,19 +1779,27 @@ msgstr "Több kulcsszót is hozzáadhat, ha vesszővel választja el őket, vagy
|
||||
msgid "You can also enter your username."
|
||||
msgstr "Megadhatja a felhasználónevét is."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||
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."
|
||||
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."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||
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 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
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
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."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||
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 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
|
||||
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."
|
||||
|
||||
#: 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."
|
||||
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 +1816,7 @@ msgstr "Levelet kaptál!"
|
||||
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!"
|
||||
|
||||
#: 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."
|
||||
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 +1828,7 @@ msgstr "Az e-mail címét sikeresen ellenőriztük."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Az OpenAI API kulcsa még nem lett beállítva. Kérjük, lépjen be a fiókbeállításokba az OpenAI integráció engedélyezéséhez."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Jelszavát sikeresen frissítettük."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: id\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-11-04 14:22\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Indonesian\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
|
||||
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
|
||||
msgid "{value, plural, one {Column} other {Columns}}"
|
||||
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>"
|
||||
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>"
|
||||
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."
|
||||
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>"
|
||||
msgstr "<0>Komunitas ini telah menghabiskan banyak waktu untuk menulis dokumentasi untuk Reactive Resume, dan saya yakin ini akan membantu Anda mulai menggunakan aplikasi ini.</0><1>Ada juga banyak contoh untuk membantu Anda memulai, dan fitur-fitur yang mungkin tidak Anda ketahui yang dapat membantu Anda membuat resume yang sempurna.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>Autentikasi dua faktor saat ini dinonaktifkan.</0> Anda dapat mengaktifkannya dengan menambahkan aplikasi pengautentikasi ke akun Anda."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>Autentikasi dua faktor diaktifkan.</0> Anda akan diminta untuk memasukkan kode setiap kali masuk."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Akun"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Tambahkan kolom kustom"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:203
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Tambah item baru"
|
||||
@ -112,12 +112,12 @@ msgstr "Tambah item baru"
|
||||
msgid "Add a new item"
|
||||
msgstr "Tambah item baru"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:267
|
||||
msgid "Add a new section"
|
||||
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"
|
||||
msgstr "Tambah halaman baru"
|
||||
|
||||
@ -133,6 +133,14 @@ msgstr "Sudah memiliki akun?"
|
||||
msgid "An error occurred while validating the 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
|
||||
msgid "and many more..."
|
||||
msgstr "dan masih banyak lagi..."
|
||||
@ -191,6 +199,18 @@ msgstr "Tersedia dalam {languagesCount} bahasa"
|
||||
msgid "Awarder"
|
||||
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/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
@ -209,16 +229,16 @@ msgstr "Kode Cadangan"
|
||||
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."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||
msgid "Base URL"
|
||||
msgstr "URL dasar"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:58
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr "Dasar-dasar"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
msgid "Basics"
|
||||
msgstr "Dasar-dasar"
|
||||
|
||||
@ -246,8 +266,8 @@ msgstr "Oleh komunitas, untuk komunitas."
|
||||
msgid "Cancel"
|
||||
msgstr "Batalkan"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
#: apps/client/src/components/ai-actions.tsx:107
|
||||
#: apps/client/src/components/ai-actions.tsx:110
|
||||
msgid "Casual"
|
||||
msgstr "Santai"
|
||||
|
||||
@ -255,12 +275,16 @@ msgstr "Santai"
|
||||
msgid "Center Artboard"
|
||||
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/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Ubah Kata Sandi"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
#: apps/client/src/components/ai-actions.tsx:101
|
||||
msgid "Change Tone"
|
||||
msgstr "Ubah Nada"
|
||||
|
||||
@ -288,6 +312,16 @@ msgstr "Kode"
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr "Kode harus terdiri dari 6 digit."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:272
|
||||
msgid "Collapse All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Collapse section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136
|
||||
msgid "Columns"
|
||||
msgstr "Kolom"
|
||||
@ -296,21 +330,17 @@ msgstr "Kolom"
|
||||
msgid "Company"
|
||||
msgstr "Perusahaan"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
#: apps/client/src/components/ai-actions.tsx:119
|
||||
#: apps/client/src/components/ai-actions.tsx:122
|
||||
msgid "Confident"
|
||||
msgstr "Percaya diri"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Konfirmasi Kata Sandi Baru"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
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"
|
||||
msgstr "Salin"
|
||||
|
||||
@ -351,7 +381,12 @@ msgstr "Buat satu sekarang"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Buat Contoh Resume"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr "Kata Sandi Saat Ini"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "CSS khusus"
|
||||
@ -360,7 +395,7 @@ msgstr "CSS khusus"
|
||||
msgid "Custom resume sections"
|
||||
msgstr "Bagian resume khusus"
|
||||
|
||||
#: apps/client/src/stores/resume.ts:47
|
||||
#: apps/client/src/stores/resume.ts:53
|
||||
msgid "Custom Section"
|
||||
msgstr "Bagian Khusus"
|
||||
|
||||
@ -386,10 +421,10 @@ msgstr "Gelap"
|
||||
msgid "Date"
|
||||
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/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
|
||||
msgid "Date or Date Range"
|
||||
msgstr "Tanggal atau Rentang Tanggal"
|
||||
@ -407,11 +442,15 @@ msgstr "Menghapus"
|
||||
msgid "Delete Account"
|
||||
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/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/skills.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||
msgid "Description"
|
||||
msgstr "Deskripsi"
|
||||
|
||||
@ -423,18 +462,18 @@ msgstr "Desain resume satu / beberapa halaman"
|
||||
msgid "Disable"
|
||||
msgstr "Nonaktifkan"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Nonaktifkan 2FA"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Buang"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentasi"
|
||||
|
||||
@ -442,7 +481,7 @@ msgstr "Dokumentasi"
|
||||
msgid "Don't have an account?"
|
||||
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!"
|
||||
msgstr "Tidak tahu mulai dari mana? Buka dokumen!"
|
||||
|
||||
@ -450,7 +489,7 @@ msgstr "Tidak tahu mulai dari mana? Buka dokumen!"
|
||||
msgid "Don't see your language? <0>Help translate the app.</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"
|
||||
msgstr "Sumbangan ke Reactive Resume"
|
||||
|
||||
@ -458,12 +497,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."
|
||||
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."
|
||||
msgstr "Unduh file PDF resume Anda. File ini dapat digunakan untuk mencetak resume Anda, mengirimkannya ke perekrut, atau mengunggahnya di portal pekerjaan."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Unduh PDF"
|
||||
|
||||
@ -487,7 +525,7 @@ msgstr "Menduplikasi item yang sudah ada"
|
||||
msgid "Duplicate an existing resume"
|
||||
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"
|
||||
msgstr "Sunting"
|
||||
|
||||
@ -498,12 +536,12 @@ msgstr "Efek"
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:90
|
||||
#: apps/client/src/pages/auth/register/page.tsx:141
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181
|
||||
msgid "Email"
|
||||
msgstr "Email"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Aktifkan 2FA"
|
||||
|
||||
@ -531,6 +569,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."
|
||||
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
|
||||
msgid "Errors"
|
||||
msgstr "Kesalahan"
|
||||
@ -539,11 +581,22 @@ msgstr "Kesalahan"
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr "Meskipun Anda belum bisa berkontribusi secara finansial, Anda masih bisa berkontribusi dengan cara memberikan bintang pada repositori GitHub, menyebarkannya ke teman-teman Anda, atau mengirimkan pesan singkat kepada saya bagaimana Reactive Resume telah membantu Anda. Umpan balik dan dukungan Anda selalu diterima dan sangat kami hargai!"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:271
|
||||
msgid "Expand All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Expand section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "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 "Jelajahi templat yang tersedia di Reactive Resume dan melihat resume yang dibuat dengan templat tersebut. Templat ini juga dapat digunakan sebagai contoh untuk membantu dalam pembuatan resume Anda."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Ekspor"
|
||||
@ -564,19 +617,19 @@ msgstr "Akhirnya,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Perbaiki Ejaan & Tata Bahasa"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Keluarga Font"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Ukuran Font"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Subset Font"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Varian Font"
|
||||
|
||||
@ -584,7 +637,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."
|
||||
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"
|
||||
msgstr "Lupakan."
|
||||
|
||||
@ -601,7 +654,7 @@ msgstr "Lupa kata sandi Anda?"
|
||||
msgid "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?"
|
||||
msgstr "Ada bug, atau ide untuk fitur baru?"
|
||||
|
||||
@ -609,12 +662,12 @@ msgstr "Ada bug, atau ide untuk fitur baru?"
|
||||
msgid "Free, forever"
|
||||
msgstr "Gratis, selamanya"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:121
|
||||
#: apps/client/src/components/ai-actions.tsx:124
|
||||
#: apps/client/src/components/ai-actions.tsx:125
|
||||
#: apps/client/src/components/ai-actions.tsx:128
|
||||
msgid "Friendly"
|
||||
msgstr "Ramah"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:56
|
||||
msgid "Full Name"
|
||||
msgstr "Nama Lengkap"
|
||||
|
||||
@ -643,6 +696,10 @@ msgstr "Berikan nama baru pada resume lama Anda."
|
||||
msgid "Go to Dashboard"
|
||||
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
|
||||
msgid "Google"
|
||||
msgstr "Google"
|
||||
@ -651,11 +708,11 @@ msgstr "Google"
|
||||
msgid "Grayscale"
|
||||
msgstr "Skala abu-abu"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||
msgid "Grid"
|
||||
msgstr "Grid"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:70
|
||||
msgid "Headline"
|
||||
msgstr "Judul"
|
||||
|
||||
@ -668,7 +725,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."
|
||||
|
||||
#: 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
|
||||
msgid "Hidden"
|
||||
msgstr "Tersembunyi"
|
||||
@ -677,7 +734,7 @@ msgstr "Tersembunyi"
|
||||
msgid "Hide"
|
||||
msgstr "Sembunyikan"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Sembunyikan Ikon"
|
||||
|
||||
@ -734,7 +791,7 @@ msgstr "Meningkatkan kualitasPenulisan"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Jika Anda tidak dapat memindai Kode QR ini, Anda juga dapat menyalin dan tempel tautan ini ke dalam aplikasi autentikator Anda."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "Pada bagian ini, Anda dapat mengubah kata sandi dan mengaktifkan/menonaktifkan autentikasi dua faktor."
|
||||
|
||||
@ -743,7 +800,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>."
|
||||
|
||||
#: 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"
|
||||
msgstr "Informasi"
|
||||
|
||||
@ -802,10 +860,10 @@ msgstr "john.doe@example.com"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||
msgid "Keywords"
|
||||
msgstr "Kata kunci"
|
||||
|
||||
@ -824,7 +882,8 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Terakhir diperbarui {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx: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"
|
||||
msgstr "Tata letak"
|
||||
|
||||
@ -837,7 +896,7 @@ msgid "Letter"
|
||||
msgstr "Surat"
|
||||
|
||||
#: 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"
|
||||
msgstr "Tingkat"
|
||||
|
||||
@ -853,7 +912,7 @@ msgstr "Cahaya"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Tema terang atau gelap"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Tinggi Garis"
|
||||
|
||||
@ -862,14 +921,14 @@ msgstr "Tinggi Garis"
|
||||
msgid "LinkedIn, JSON Resume, etc."
|
||||
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"
|
||||
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/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:120
|
||||
msgid "Location"
|
||||
msgstr "Lokasi"
|
||||
|
||||
@ -897,7 +956,7 @@ msgstr "Keluar"
|
||||
msgid "Lost your device?"
|
||||
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"
|
||||
msgstr "Utama"
|
||||
|
||||
@ -914,7 +973,7 @@ msgstr "Maret 2023"
|
||||
|
||||
#: 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/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
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "Maret 2023 - Sekarang"
|
||||
@ -923,7 +982,7 @@ msgstr "Maret 2023 - Sekarang"
|
||||
msgid "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"
|
||||
msgstr "Token Max"
|
||||
|
||||
@ -931,18 +990,18 @@ msgstr "Token Max"
|
||||
msgid "MIT License"
|
||||
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"
|
||||
msgstr "Model"
|
||||
|
||||
#: 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/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: 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/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/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/dashboard/settings/_sections/account.tsx:153
|
||||
msgid "Name"
|
||||
@ -957,7 +1016,7 @@ msgstr "Nama"
|
||||
msgid "Network"
|
||||
msgstr "Jaringan"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Kata Sandi Baru"
|
||||
|
||||
@ -974,6 +1033,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Catatan: Hal ini akan membuat akun Anda kurang aman."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Catatan"
|
||||
@ -1009,16 +1069,16 @@ msgstr "OpenAI tidak mengembalikan pilihan apa pun untuk teks Anda."
|
||||
msgid "OpenAI Integration"
|
||||
msgstr "Integrasi OpenAI"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
||||
msgid "OpenAI/Ollama API Key"
|
||||
msgstr "Kunci API OpenAI/Ollama"
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||
msgstr "Integrasi OpenAI/Azure OpenAI/Ollama"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
||||
msgid "OpenAI/Ollama Integration"
|
||||
msgstr "Integrasi OpenAI/Ollama"
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||
msgid "OpenAI/Ollama API Key"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Pilihan"
|
||||
|
||||
@ -1032,22 +1092,23 @@ msgid "Organization"
|
||||
msgstr "Organisasi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Halaman"
|
||||
|
||||
#: 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}"
|
||||
msgstr "Halaman {pageNumber}"
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Kata sandi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||
msgid "PDF"
|
||||
msgstr "PDF"
|
||||
|
||||
@ -1055,7 +1116,7 @@ msgstr "PDF"
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr "Catatan pribadi untuk setiap resume"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:108
|
||||
msgid "Phone"
|
||||
msgstr "Telepon"
|
||||
|
||||
@ -1109,14 +1170,12 @@ msgstr "Didukung oleh <0>Simple Icons</0>"
|
||||
msgid "Primary Color"
|
||||
msgstr "Warna Primer"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Kebijakan Privasi"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
#: apps/client/src/components/ai-actions.tsx:113
|
||||
#: apps/client/src/components/ai-actions.tsx:116
|
||||
msgid "Professional"
|
||||
msgstr "Profesional"
|
||||
|
||||
@ -1132,7 +1191,7 @@ msgstr "Publik"
|
||||
msgid "Publisher"
|
||||
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"
|
||||
msgstr "Mengajukan masalah"
|
||||
|
||||
@ -1144,11 +1203,10 @@ msgstr "Mengajukan masalah"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1175,12 +1233,12 @@ msgstr "Reactive Resume berkembang berkat komunitasnya yang dinamis. Proyek ini
|
||||
msgid "Redo"
|
||||
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
|
||||
msgid "Remove"
|
||||
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"
|
||||
msgstr "Hapus Halaman"
|
||||
|
||||
@ -1199,7 +1257,7 @@ msgstr "Kirim ulang tautan konfirmasi email"
|
||||
msgid "Reset"
|
||||
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"
|
||||
msgstr "Atur Ulang Tata Letak"
|
||||
|
||||
@ -1213,8 +1271,8 @@ msgid "Reset Zoom"
|
||||
msgstr "Atur Ulang Zoom"
|
||||
|
||||
#: 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:37
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||
msgid "Resumes"
|
||||
msgstr "Resume"
|
||||
|
||||
@ -1237,11 +1295,11 @@ msgstr "Bulat"
|
||||
msgid "Save Changes"
|
||||
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"
|
||||
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"
|
||||
msgstr "Tersimpan"
|
||||
|
||||
@ -1262,15 +1320,15 @@ msgstr "Gulir ke Geser"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Gulir ke Zoom"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Mencari keluarga font"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Mencari subset font"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Mencari varian font"
|
||||
|
||||
@ -1282,7 +1340,7 @@ msgstr "Mencari bahasa"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Aman dengan autentikasi dua faktor"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Keamanan"
|
||||
|
||||
@ -1294,7 +1352,7 @@ msgstr "Host mandiri dengan Docker"
|
||||
msgid "Send 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"
|
||||
msgstr "Kirimi saya pesan"
|
||||
|
||||
@ -1314,6 +1372,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Menyiapkan autentikasi dua faktor di akun Anda"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Berbagi"
|
||||
@ -1330,7 +1389,7 @@ msgstr "Tampilkan Garis Istirahat"
|
||||
msgid "Show Page Numbers"
|
||||
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"
|
||||
msgstr "Bilah samping"
|
||||
|
||||
@ -1408,6 +1467,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Mulailah membuat resume Anda dengan memberikan nama."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Statistik"
|
||||
@ -1422,17 +1482,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/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/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/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "Summary"
|
||||
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!"
|
||||
msgstr "Dukung aplikasi ini dengan menyumbangkan apa yang Anda bisa!"
|
||||
|
||||
@ -1444,11 +1504,20 @@ msgstr "Mendukung Resume Reaktif"
|
||||
msgid "Supports A4/Letter page formats"
|
||||
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
|
||||
msgid "System"
|
||||
msgstr "Sistem"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Templat"
|
||||
@ -1465,15 +1534,20 @@ msgstr "Testimonial"
|
||||
msgid "Text Color"
|
||||
msgstr "Warna Teks"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "Kata sandi yang Anda masukkan tidak cocok."
|
||||
#: apps/client/src/pages/public/error.tsx:17
|
||||
msgid "The page you're looking for doesn't exist."
|
||||
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
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "Resume yang ingin Anda perbarui terkunci, silakan buka kuncinya jika Anda ingin melakukan perubahan."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1604,7 @@ msgstr "Melacak tampilan dan unduhan"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Autentikasi Dua Faktor"
|
||||
|
||||
@ -1552,11 +1626,12 @@ msgid "Type of Study"
|
||||
msgstr "Jenis Studi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Tipografi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Garis bawahi Tautan"
|
||||
|
||||
@ -1599,6 +1674,14 @@ msgstr "URL"
|
||||
msgid "URL must start with 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:57
|
||||
msgid "Use your backup code"
|
||||
@ -1651,7 +1734,7 @@ msgstr "Versi 4"
|
||||
msgid "Views"
|
||||
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"
|
||||
msgstr "Terlihat"
|
||||
|
||||
@ -1665,15 +1748,15 @@ 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/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/experience.tsx:100
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:96
|
||||
msgid "Website"
|
||||
msgstr "Situs web"
|
||||
|
||||
@ -1681,10 +1764,14 @@ msgstr "Situs web"
|
||||
msgid "What's new in the latest version"
|
||||
msgstr "Apa yang baru dalam versi terbaru"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
||||
#: apps/client/src/pages/public/error.tsx:26
|
||||
msgid "You are not authorized to access this page."
|
||||
msgstr "Anda tidak berwenang untuk mengakses halaman ini."
|
||||
|
||||
#: 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."
|
||||
msgstr "Anda dapat menambahkan beberapa kata kunci dengan memisahkannya dengan koma atau menekan enter."
|
||||
|
||||
@ -1692,19 +1779,27 @@ msgstr "Anda dapat menambahkan beberapa kata kunci dengan memisahkannya dengan k
|
||||
msgid "You can also enter your username."
|
||||
msgstr "Anda juga dapat memasukkan nama pengguna Anda."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||
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."
|
||||
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."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||
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 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
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
msgstr "Anda dapat memanfaatkan API OpenAI untuk membantu Anda menghasilkan konten, atau meningkatkan tulisan Anda saat membuat resume."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||
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 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
|
||||
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."
|
||||
|
||||
#: 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."
|
||||
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 +1816,7 @@ msgstr "Kau punya surat!"
|
||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||
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."
|
||||
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 +1828,7 @@ msgstr "Alamat email Anda telah berhasil diverifikasi."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Kunci API OpenAI Anda belum ditetapkan. Silakan buka pengaturan akun Anda untuk mengaktifkan Integrasi OpenAI."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Kata sandi Anda telah berhasil diperbarui."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: it\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-11-04 14:22\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Italian\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}}"
|
||||
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>"
|
||||
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>"
|
||||
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."
|
||||
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>"
|
||||
msgstr "<0>La community ha dedicato molto tempo a scrivere la documentazione per Reactive Resume e sono sicuro che ti aiuterà a iniziare a utilizzare l'app.</0> <1>Ci sono anche molti esempi per aiutarti a iniziare e funzionalità che potresti non conoscere e che potrebbero aiutarti a creare il tuo curriculum perfetto.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>L'autenticazione a due fattori è attualmente disabilitata.</0> Puoi abilitarlo aggiungendo un'app di autenticazione al tuo account."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>L'autenticazione a due fattori è abilitata.</0> Ti verrà chiesto di inserire un codice ogni volta che accedi."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Account"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Aggiungi un campo personalizzato"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:203
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Aggiungi nuovo elemento"
|
||||
@ -112,12 +112,12 @@ msgstr "Aggiungi nuovo elemento"
|
||||
msgid "Add a new item"
|
||||
msgstr "Aggiungi nuovo elemento"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:267
|
||||
msgid "Add a new section"
|
||||
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"
|
||||
msgstr "Aggiungi una nuova pagina"
|
||||
|
||||
@ -133,6 +133,14 @@ msgstr "Ha già un account?"
|
||||
msgid "An error occurred while validating the 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
|
||||
msgid "and many more..."
|
||||
msgstr "e molti altri..."
|
||||
@ -191,6 +199,18 @@ msgstr "Disponibile in {languagesCount} lingue"
|
||||
msgid "Awarder"
|
||||
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/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
@ -209,16 +229,16 @@ msgstr "Codice di Backup"
|
||||
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."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||
msgid "Base URL"
|
||||
msgstr "URL di base"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:58
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr "Basi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
msgid "Basics"
|
||||
msgstr "Basi"
|
||||
|
||||
@ -246,8 +266,8 @@ msgstr "Dalla comunità, per la comunità."
|
||||
msgid "Cancel"
|
||||
msgstr "Annulla"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
#: apps/client/src/components/ai-actions.tsx:107
|
||||
#: apps/client/src/components/ai-actions.tsx:110
|
||||
msgid "Casual"
|
||||
msgstr "Casuale"
|
||||
|
||||
@ -255,12 +275,16 @@ msgstr "Casuale"
|
||||
msgid "Center Artboard"
|
||||
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/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Cambia password"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
#: apps/client/src/components/ai-actions.tsx:101
|
||||
msgid "Change Tone"
|
||||
msgstr "Cambia tono"
|
||||
|
||||
@ -288,6 +312,16 @@ msgstr "Codice"
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr "Il codice deve essere lungo esattamente 6 cifre."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:272
|
||||
msgid "Collapse All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Collapse section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136
|
||||
msgid "Columns"
|
||||
msgstr "Colonne"
|
||||
@ -296,21 +330,17 @@ msgstr "Colonne"
|
||||
msgid "Company"
|
||||
msgstr "Azienda"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
#: apps/client/src/components/ai-actions.tsx:119
|
||||
#: apps/client/src/components/ai-actions.tsx:122
|
||||
msgid "Confident"
|
||||
msgstr "Fiducioso"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Conferma nuova password"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
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"
|
||||
msgstr "Copia"
|
||||
|
||||
@ -351,7 +381,12 @@ msgstr "Creane uno ora"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Creare un campione di curriculum"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr "Password attuale"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "CSS personalizzato"
|
||||
@ -360,7 +395,7 @@ msgstr "CSS personalizzato"
|
||||
msgid "Custom resume sections"
|
||||
msgstr "Sezioni di curriculum personalizzate"
|
||||
|
||||
#: apps/client/src/stores/resume.ts:47
|
||||
#: apps/client/src/stores/resume.ts:53
|
||||
msgid "Custom Section"
|
||||
msgstr "Sezione personalizzata"
|
||||
|
||||
@ -386,10 +421,10 @@ msgstr "Scuro"
|
||||
msgid "Date"
|
||||
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/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
|
||||
msgid "Date or Date Range"
|
||||
msgstr "Data o Intervallo di date"
|
||||
@ -407,11 +442,15 @@ msgstr "Elimina"
|
||||
msgid "Delete 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/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/skills.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||
msgid "Description"
|
||||
msgstr "Descrizione"
|
||||
|
||||
@ -423,18 +462,18 @@ msgstr "Progetta curriculum a pagina singola/multipagina"
|
||||
msgid "Disable"
|
||||
msgstr "Disabilita"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Disabilita l'autenticazione a due fattori"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Scarta"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr "Documentazione"
|
||||
|
||||
@ -442,7 +481,7 @@ msgstr "Documentazione"
|
||||
msgid "Don't have an 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!"
|
||||
msgstr "Non sai da dove cominciare? Fai un giro nei documenti!"
|
||||
|
||||
@ -450,7 +489,7 @@ msgstr "Non sai da dove cominciare? Fai un giro nei documenti!"
|
||||
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>"
|
||||
|
||||
#: 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"
|
||||
msgstr "Fai una donazione a Reactive Resume"
|
||||
|
||||
@ -458,12 +497,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."
|
||||
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."
|
||||
msgstr "Scarica un PDF del tuo curriculum. Questo file può essere utilizzato per stampare il tuo curriculum, inviarlo ai reclutatori o caricarlo su portali di lavoro."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Scarica PDF"
|
||||
|
||||
@ -487,7 +525,7 @@ msgstr "Duplica un elemento esistente"
|
||||
msgid "Duplicate an existing resume"
|
||||
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"
|
||||
msgstr "Modifica"
|
||||
|
||||
@ -498,12 +536,12 @@ msgstr "Effetti"
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:90
|
||||
#: apps/client/src/pages/auth/register/page.tsx:141
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181
|
||||
msgid "Email"
|
||||
msgstr "Email"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Abilita 2FA"
|
||||
|
||||
@ -531,6 +569,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."
|
||||
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
|
||||
msgid "Errors"
|
||||
msgstr "Errori"
|
||||
@ -539,11 +581,22 @@ msgstr "Errori"
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr "Anche se non sei nella posizione di contribuire finanziariamente, puoi comunque fare la differenza assegnando una stella al repository GitHub, spargendo la voce ai tuoi amici o inviando un breve messaggio per farmi sapere come Reactive Resume ti ha aiutato. Il tuo feedback e il tuo supporto sono sempre benvenuti e molto apprezzati!"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:271
|
||||
msgid "Expand All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Expand section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "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 "Esplora i modelli disponibili in Reactive Resume e visualizza i curriculum realizzati con essi. Potrebbero anche servire come esempi per guidare la creazione del tuo prossimo curriculum."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Esporta"
|
||||
@ -564,19 +617,19 @@ msgstr "Finalmente,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Correggi ortografia e grammatica"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Famiglia font"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Dimensioni carattere"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Sottoinsieme di caratteri"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Varianti di carattere"
|
||||
|
||||
@ -584,7 +637,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."
|
||||
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"
|
||||
msgstr "Dimentica"
|
||||
|
||||
@ -601,7 +654,7 @@ msgstr "Hai dimenticato la password?"
|
||||
msgid "Format"
|
||||
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?"
|
||||
msgstr "Hai trovato un bug o hai un'idea per una nuova funzionalità?"
|
||||
|
||||
@ -609,12 +662,12 @@ msgstr "Hai trovato un bug o hai un'idea per una nuova funzionalità?"
|
||||
msgid "Free, forever"
|
||||
msgstr "Gratis, per sempre"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:121
|
||||
#: apps/client/src/components/ai-actions.tsx:124
|
||||
#: apps/client/src/components/ai-actions.tsx:125
|
||||
#: apps/client/src/components/ai-actions.tsx:128
|
||||
msgid "Friendly"
|
||||
msgstr "Amichevole"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:56
|
||||
msgid "Full Name"
|
||||
msgstr "Nome Completo"
|
||||
|
||||
@ -643,6 +696,10 @@ msgstr "Dai un nuovo nome al tuo vecchio curriculum."
|
||||
msgid "Go to 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
|
||||
msgid "Google"
|
||||
msgstr "Google"
|
||||
@ -651,11 +708,11 @@ msgstr "Google"
|
||||
msgid "Grayscale"
|
||||
msgstr "Scala di grigi"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||
msgid "Grid"
|
||||
msgstr "Griglia"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:70
|
||||
msgid "Headline"
|
||||
msgstr "Titolo"
|
||||
|
||||
@ -668,7 +725,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."
|
||||
|
||||
#: 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
|
||||
msgid "Hidden"
|
||||
msgstr "Nascosto"
|
||||
@ -677,7 +734,7 @@ msgstr "Nascosto"
|
||||
msgid "Hide"
|
||||
msgstr "Nascondi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Nascondi icone"
|
||||
|
||||
@ -734,7 +791,7 @@ msgstr "Migliora la scrittura"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Nel caso in cui non riuscisse a scansionare questo Codice QR, può anche copiare-incollare questo link nella sua app Authenticator."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "In questa sezione puoi modificare la tua password e abilitare/disabilitare l'autenticazione a due fattori."
|
||||
|
||||
@ -743,7 +800,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>."
|
||||
|
||||
#: 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"
|
||||
msgstr "Informazioni"
|
||||
|
||||
@ -802,10 +860,10 @@ msgstr "mario.rossi@esempio.it"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||
msgid "Keywords"
|
||||
msgstr "Parole chiave"
|
||||
|
||||
@ -824,7 +882,8 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Ultimo aggiornamento: {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx: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"
|
||||
msgstr "Disposizione"
|
||||
|
||||
@ -837,7 +896,7 @@ msgid "Letter"
|
||||
msgstr "Lettera"
|
||||
|
||||
#: 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"
|
||||
msgstr "Livello"
|
||||
|
||||
@ -853,7 +912,7 @@ msgstr "Chiaro"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Tema chiaro o scuro"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Altezza linea"
|
||||
|
||||
@ -862,14 +921,14 @@ msgstr "Altezza linea"
|
||||
msgid "LinkedIn, JSON Resume, etc."
|
||||
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"
|
||||
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/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:120
|
||||
msgid "Location"
|
||||
msgstr "Posizione"
|
||||
|
||||
@ -897,7 +956,7 @@ msgstr "Disconnessione"
|
||||
msgid "Lost your device?"
|
||||
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"
|
||||
msgstr "Principale"
|
||||
|
||||
@ -914,7 +973,7 @@ msgstr "Marzo 2023"
|
||||
|
||||
#: 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/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
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "Marzo 2023 - Presente"
|
||||
@ -923,7 +982,7 @@ msgstr "Marzo 2023 - Presente"
|
||||
msgid "Margin"
|
||||
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"
|
||||
msgstr "Gettoni massimi"
|
||||
|
||||
@ -931,18 +990,18 @@ msgstr "Gettoni massimi"
|
||||
msgid "MIT License"
|
||||
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"
|
||||
msgstr "Modello"
|
||||
|
||||
#: 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/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: 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/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/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/dashboard/settings/_sections/account.tsx:153
|
||||
msgid "Name"
|
||||
@ -957,7 +1016,7 @@ msgstr "Nome"
|
||||
msgid "Network"
|
||||
msgstr "Rete"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Nuova Password"
|
||||
|
||||
@ -974,6 +1033,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Nota: ciò renderà il tuo account meno sicuro."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Note"
|
||||
@ -1009,16 +1069,16 @@ msgstr "OpenAI non ha restituito alcuna scelta per il tuo testo."
|
||||
msgid "OpenAI Integration"
|
||||
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"
|
||||
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/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Opzioni"
|
||||
|
||||
@ -1032,22 +1092,23 @@ msgid "Organization"
|
||||
msgstr "Organizzazione"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Pagina"
|
||||
|
||||
#: 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}"
|
||||
msgstr "Pagina {pageNumber}"
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Password"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||
msgid "PDF"
|
||||
msgstr "PDF"
|
||||
|
||||
@ -1055,7 +1116,7 @@ msgstr "PDF"
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr "Note personali per ogni curriculum"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:108
|
||||
msgid "Phone"
|
||||
msgstr "Telefono"
|
||||
|
||||
@ -1109,14 +1170,12 @@ msgstr "Offerto da <0>Icone semplici</0>"
|
||||
msgid "Primary Color"
|
||||
msgstr "Colore primario"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Politica Sulla Privacy"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
#: apps/client/src/components/ai-actions.tsx:113
|
||||
#: apps/client/src/components/ai-actions.tsx:116
|
||||
msgid "Professional"
|
||||
msgstr "Professionale"
|
||||
|
||||
@ -1132,7 +1191,7 @@ msgstr "Pubblico"
|
||||
msgid "Publisher"
|
||||
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"
|
||||
msgstr "Segnala un problema"
|
||||
|
||||
@ -1144,11 +1203,10 @@ msgstr "Segnala un problema"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1175,12 +1233,12 @@ msgstr "Reactive Resume prospera grazie alla sua vivace comunità. Questo proget
|
||||
msgid "Redo"
|
||||
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
|
||||
msgid "Remove"
|
||||
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"
|
||||
msgstr "Rimuovi pagina"
|
||||
|
||||
@ -1199,7 +1257,7 @@ msgstr "Rinvio del link di conferma dell'e-mail"
|
||||
msgid "Reset"
|
||||
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"
|
||||
msgstr "Ripristina Layout"
|
||||
|
||||
@ -1213,8 +1271,8 @@ msgid "Reset Zoom"
|
||||
msgstr "Ripristina zoom"
|
||||
|
||||
#: 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:37
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||
msgid "Resumes"
|
||||
msgstr "Curricula"
|
||||
|
||||
@ -1237,11 +1295,11 @@ msgstr "Arrotondato"
|
||||
msgid "Save Changes"
|
||||
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"
|
||||
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"
|
||||
msgstr "Salvato"
|
||||
|
||||
@ -1262,15 +1320,15 @@ msgstr "Scorri fino a Pan"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Scorri per zoomare"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Cerca una famiglia di caratteri"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Cerca un sottoinsieme di caratteri"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Cerca una variante del carattere"
|
||||
|
||||
@ -1282,7 +1340,7 @@ msgstr "Cerca una lingua"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Proteggi con l'autenticazione a due fattori"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Sicurezza"
|
||||
|
||||
@ -1294,7 +1352,7 @@ msgstr "Self-host con Docker"
|
||||
msgid "Send 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"
|
||||
msgstr "Inviami un messaggio"
|
||||
|
||||
@ -1314,6 +1372,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Imposta l'autenticazione a due fattori sul tuo account"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Condivisione"
|
||||
@ -1330,7 +1389,7 @@ msgstr "Mostra linea di interruzione"
|
||||
msgid "Show Page Numbers"
|
||||
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"
|
||||
msgstr "Barra laterale"
|
||||
|
||||
@ -1408,6 +1467,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Inizia a costruire il tuo curriculum dandogli un nome."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Statistiche"
|
||||
@ -1422,17 +1482,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/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/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/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "Summary"
|
||||
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!"
|
||||
msgstr "Sostieni l'app donando quello che puoi!"
|
||||
|
||||
@ -1444,11 +1504,20 @@ msgstr "Supportare Reactive Resume"
|
||||
msgid "Supports A4/Letter page formats"
|
||||
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
|
||||
msgid "System"
|
||||
msgstr "Sistema"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Modello"
|
||||
@ -1465,15 +1534,20 @@ msgstr "Testimonial"
|
||||
msgid "Text Color"
|
||||
msgstr "Colore del testo"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "Le password inserite non corrispondono."
|
||||
#: apps/client/src/pages/public/error.tsx:17
|
||||
msgid "The page you're looking for doesn't exist."
|
||||
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
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "Il curriculum che desideri aggiornare è bloccato, sbloccalo se desideri apportarvi modifiche."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1604,7 @@ msgstr "Tieni traccia delle visualizzazioni e dei download"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Autenticazione a due fattori"
|
||||
|
||||
@ -1552,11 +1626,12 @@ msgid "Type of Study"
|
||||
msgstr "Tipo di studio"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Tipografia"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Sottolinea i link"
|
||||
|
||||
@ -1599,6 +1674,14 @@ msgstr "URL"
|
||||
msgid "URL must start with 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:57
|
||||
msgid "Use your backup code"
|
||||
@ -1651,7 +1734,7 @@ msgstr "Versione 4"
|
||||
msgid "Views"
|
||||
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"
|
||||
msgstr "Visibile"
|
||||
|
||||
@ -1665,15 +1748,15 @@ 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/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/experience.tsx:100
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:96
|
||||
msgid "Website"
|
||||
msgstr "Sito Web"
|
||||
|
||||
@ -1681,10 +1764,14 @@ msgstr "Sito Web"
|
||||
msgid "What's new in the latest version"
|
||||
msgstr "Cosa c'è di nuovo nell'ultima versione"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
||||
#: apps/client/src/pages/public/error.tsx:26
|
||||
msgid "You are not authorized to access this page."
|
||||
msgstr "Non sei autorizzato ad accedere a questa pagina."
|
||||
|
||||
#: 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."
|
||||
msgstr "Puoi aggiungere più parole chiave separandole con una virgola o premendo Invio."
|
||||
|
||||
@ -1692,19 +1779,27 @@ msgstr "Puoi aggiungere più parole chiave separandole con una virgola o premend
|
||||
msgid "You can also enter your username."
|
||||
msgstr "Può anche inserire il suo nome utente."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||
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."
|
||||
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."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||
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 "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
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
msgstr "Può utilizzare l'API OpenAI per aiutarla a generare contenuti, o migliorare la sua scrittura mentre compone il suo curriculum."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||
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 "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
|
||||
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."
|
||||
|
||||
#: 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."
|
||||
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 +1816,7 @@ msgstr "C’è posta per te!"
|
||||
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!"
|
||||
|
||||
#: 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."
|
||||
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 +1828,7 @@ msgstr "Il tuo indirizzo e-mail è stato verificato correttamente."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "La tua chiave API OpenAI non è stata ancora impostata. Vai alle impostazioni del tuo account per abilitare l'integrazione OpenAI."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "L'aggiornamento della password è stato completato con successo."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ja\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-11-04 14:22\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Japanese\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
@ -30,27 +30,27 @@ msgstr "{templatesCount} 個のテンプレートから選択できます"
|
||||
msgid "{value, plural, one {Column} other {Columns}}"
|
||||
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>"
|
||||
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>"
|
||||
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."
|
||||
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>"
|
||||
msgstr "<0>コミュニティはReactive Resumeのドキュメントを作成することに多くの時間を費やしました。</0><1>また、使い始めるのに役立つ例や、完璧な履歴書を作成するのに役立つあなたが知らないかもしれない機能もたくさんあります。</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>二要素認証は現在無効になっています。</0>アカウントに認証アプリを追加することで有効にできます。"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>二要素認証が有効になっています。</0>サインインのたびにコードの入力が求められます。"
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "アカウント"
|
||||
msgid "Add a custom field"
|
||||
msgstr "カスタムフィールドを追加"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:203
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "アイテムを追加"
|
||||
@ -112,12 +112,12 @@ msgstr "アイテムを追加"
|
||||
msgid "Add a new item"
|
||||
msgstr "アイテムを追加"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:267
|
||||
msgid "Add a new section"
|
||||
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"
|
||||
msgstr "ページを追加"
|
||||
|
||||
@ -133,6 +133,14 @@ msgstr "既にアカウントをお持ちですか?"
|
||||
msgid "An error occurred while validating the file."
|
||||
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
|
||||
msgid "and many more..."
|
||||
msgstr "他にもたくさん"
|
||||
@ -191,6 +199,18 @@ msgstr "{languagesCount} 言語で利用可能"
|
||||
msgid "Awarder"
|
||||
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/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
@ -209,16 +229,16 @@ msgstr "バックアップコード"
|
||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||
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"
|
||||
msgstr "ベースURL"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:58
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr "基礎"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
msgid "Basics"
|
||||
msgstr "基礎"
|
||||
|
||||
@ -246,8 +266,8 @@ msgstr "コミュニティによるコミュニティのための。"
|
||||
msgid "Cancel"
|
||||
msgstr "キャンセル"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
#: apps/client/src/components/ai-actions.tsx:107
|
||||
#: apps/client/src/components/ai-actions.tsx:110
|
||||
msgid "Casual"
|
||||
msgstr "カジュアル"
|
||||
|
||||
@ -255,12 +275,16 @@ msgstr "カジュアル"
|
||||
msgid "Center Artboard"
|
||||
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/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "パスワードを変更"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
#: apps/client/src/components/ai-actions.tsx:101
|
||||
msgid "Change Tone"
|
||||
msgstr "トーンを変更"
|
||||
|
||||
@ -288,6 +312,16 @@ msgstr "コード"
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr "コードは6桁の長さでなければなりません。"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:272
|
||||
msgid "Collapse All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Collapse section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136
|
||||
msgid "Columns"
|
||||
msgstr "カラム"
|
||||
@ -296,21 +330,17 @@ msgstr "カラム"
|
||||
msgid "Company"
|
||||
msgstr "会社名"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
#: apps/client/src/components/ai-actions.tsx:119
|
||||
#: apps/client/src/components/ai-actions.tsx:122
|
||||
msgid "Confident"
|
||||
msgstr "自信があります"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "新しいパスワードの確認"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
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"
|
||||
msgstr "コピー"
|
||||
|
||||
@ -351,7 +381,12 @@ msgstr "今すぐ作成する"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "サンプルの再開を作成"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr "現在のパスワード"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "カスタムCSS"
|
||||
@ -360,7 +395,7 @@ msgstr "カスタムCSS"
|
||||
msgid "Custom resume sections"
|
||||
msgstr "カスタム履歴書セクション"
|
||||
|
||||
#: apps/client/src/stores/resume.ts:47
|
||||
#: apps/client/src/stores/resume.ts:53
|
||||
msgid "Custom Section"
|
||||
msgstr "カスタムセクション"
|
||||
|
||||
@ -386,10 +421,10 @@ msgstr "ダーク"
|
||||
msgid "Date"
|
||||
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/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
|
||||
msgid "Date or Date Range"
|
||||
msgstr "日付または日付の範囲"
|
||||
@ -407,11 +442,15 @@ msgstr "削除する"
|
||||
msgid "Delete Account"
|
||||
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/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/skills.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||
msgid "Description"
|
||||
msgstr "説明"
|
||||
|
||||
@ -423,18 +462,18 @@ msgstr "デザインシングル/マルチページの再開"
|
||||
msgid "Disable"
|
||||
msgstr "無効"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "2段階認証を無効にする"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "破棄する"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr "ドキュメンテーション"
|
||||
|
||||
@ -442,7 +481,7 @@ msgstr "ドキュメンテーション"
|
||||
msgid "Don't have an account?"
|
||||
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!"
|
||||
msgstr "どこから始めたらいいかわからない?ドキュメントをヒット!"
|
||||
|
||||
@ -450,7 +489,7 @@ msgstr "どこから始めたらいいかわからない?ドキュメントを
|
||||
msgid "Don't see your language? <0>Help translate the app.</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"
|
||||
msgstr "Reactive Resume に寄付する"
|
||||
|
||||
@ -458,12 +497,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."
|
||||
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."
|
||||
msgstr "履歴書のPDFをダウンロードします。このファイルは履歴書の印刷、採用担当者への送信、ジョブポータルへのアップロードに使用できます。"
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "PDFをダウンロード"
|
||||
|
||||
@ -487,7 +525,7 @@ msgstr "既存のアイテムを複製"
|
||||
msgid "Duplicate an existing resume"
|
||||
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"
|
||||
msgstr "編集"
|
||||
|
||||
@ -498,12 +536,12 @@ msgstr "効果"
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:90
|
||||
#: apps/client/src/pages/auth/register/page.tsx:141
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181
|
||||
msgid "Email"
|
||||
msgstr "Eメール"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "二段階認証を有効にする"
|
||||
|
||||
@ -531,6 +569,10 @@ msgstr "認証アプリが提供するワンタイムパスワードを以下に
|
||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||
msgstr "メールアドレスを入力してください。アカウントが存在する場合、パスワードをリセットするためのリンクを送信します。"
|
||||
|
||||
#: apps/client/src/pages/public/error.tsx:46
|
||||
msgid "Error {statusCode}"
|
||||
msgstr "エラー {statusCode}"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||
msgid "Errors"
|
||||
msgstr "エラー"
|
||||
@ -539,11 +581,22 @@ msgstr "エラー"
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr "たとえ金銭的に貢献する立場にないとしても、GitHubリポジトリにスターを付けることで違いを生み出すことができます。 あなたの友人に言葉を広めるか、またはReactive Resume があなたをどのように役立ったかを私に知らせるためにクイックメッセージを落とす。 あなたのフィードバックとサポートはいつでも歓迎し、非常に感謝しています!"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:271
|
||||
msgid "Expand All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Expand section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "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 "Reactive Resume で利用可能なテンプレートを探索し、作成した履歴書を表示します。 また、次の履歴書の作成をガイドするための例としても役立ちます。"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "輸出"
|
||||
@ -564,19 +617,19 @@ msgstr "最後に"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Fix Spelling & Grammar"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "フォントファミリー"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Font Size"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "フォントサブセット"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Font Variants"
|
||||
|
||||
@ -584,7 +637,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."
|
||||
msgstr "例えば、どの会社にこの履歴書を送ったか、または仕事の説明へのリンクについての情報はここに記述することができる。"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||
msgid "Forget"
|
||||
msgstr "忘れた"
|
||||
|
||||
@ -601,7 +654,7 @@ msgstr "パスワードをお忘れですか?"
|
||||
msgid "Format"
|
||||
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?"
|
||||
msgstr "バグを見つけたり、新しい機能を考えたりしましたか?"
|
||||
|
||||
@ -609,12 +662,12 @@ msgstr "バグを見つけたり、新しい機能を考えたりしましたか
|
||||
msgid "Free, forever"
|
||||
msgstr "無料、永久に"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:121
|
||||
#: apps/client/src/components/ai-actions.tsx:124
|
||||
#: apps/client/src/components/ai-actions.tsx:125
|
||||
#: apps/client/src/components/ai-actions.tsx:128
|
||||
msgid "Friendly"
|
||||
msgstr "フレンドリーな"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:56
|
||||
msgid "Full Name"
|
||||
msgstr "フルネーム"
|
||||
|
||||
@ -643,6 +696,10 @@ msgstr "古い履歴書に新しい名前を付けてください。"
|
||||
msgid "Go to Dashboard"
|
||||
msgstr "ダッシュボードに移動"
|
||||
|
||||
#: apps/client/src/pages/public/error.tsx:55
|
||||
msgid "Go to home"
|
||||
msgstr "ホームに戻る"
|
||||
|
||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||
msgid "Google"
|
||||
msgstr "Google"
|
||||
@ -651,11 +708,11 @@ msgstr "Google"
|
||||
msgid "Grayscale"
|
||||
msgstr "Grayscale"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||
msgid "Grid"
|
||||
msgstr "グリッド"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:70
|
||||
msgid "Headline"
|
||||
msgstr "見出し"
|
||||
|
||||
@ -668,7 +725,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr "ここでは、あなたの経験をカスタマイズし、パーソナライズするためにプロフィールを更新することができます。"
|
||||
|
||||
#: 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
|
||||
msgid "Hidden"
|
||||
msgstr "Hidden"
|
||||
@ -677,7 +734,7 @@ msgstr "Hidden"
|
||||
msgid "Hide"
|
||||
msgstr "非表示"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "アイコンを隠す"
|
||||
|
||||
@ -734,7 +791,7 @@ msgstr "ライティングの改善"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "このQRコードをスキャンできない場合は、このリンクを認証アプリにコピー&ペーストすることもできます。"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "このセクションでは、パスワードを変更し、2段階認証を有効/無効にすることができます。"
|
||||
|
||||
@ -743,7 +800,8 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "このセクションでは、アカウントとユーザーに関連付けられているすべてのデータを削除できます。 しかし、このアクションは <0>不可逆</0>であることに留意してください。"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx: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"
|
||||
msgstr "情報"
|
||||
|
||||
@ -802,10 +860,10 @@ msgstr "john.doe@example.com"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||
msgid "Keywords"
|
||||
msgstr "キーワード"
|
||||
|
||||
@ -824,7 +882,8 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "最終更新 {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx: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"
|
||||
msgstr "レイアウト"
|
||||
|
||||
@ -837,7 +896,7 @@ msgid "Letter"
|
||||
msgstr "手紙"
|
||||
|
||||
#: 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"
|
||||
msgstr "レベル"
|
||||
|
||||
@ -853,7 +912,7 @@ msgstr "ライト"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "ライトまたはダークテーマ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "行の高さ"
|
||||
|
||||
@ -862,14 +921,14 @@ msgstr "行の高さ"
|
||||
msgid "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"
|
||||
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/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:120
|
||||
msgid "Location"
|
||||
msgstr "場所"
|
||||
|
||||
@ -897,7 +956,7 @@ msgstr "ログアウト"
|
||||
msgid "Lost your device?"
|
||||
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"
|
||||
msgstr "メイン"
|
||||
|
||||
@ -914,7 +973,7 @@ msgstr "2023年3月"
|
||||
|
||||
#: 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/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
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "2023年3月-現在"
|
||||
@ -923,7 +982,7 @@ msgstr "2023年3月-現在"
|
||||
msgid "Margin"
|
||||
msgstr "マージン(マージン)"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||
msgid "Max Tokens"
|
||||
msgstr "最大トークン"
|
||||
|
||||
@ -931,18 +990,18 @@ msgstr "最大トークン"
|
||||
msgid "MIT License"
|
||||
msgstr "MIT ライセンス"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||
msgid "Model"
|
||||
msgstr "モデル"
|
||||
|
||||
#: 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/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: 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/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/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/dashboard/settings/_sections/account.tsx:153
|
||||
msgid "Name"
|
||||
@ -957,7 +1016,7 @@ msgstr "名前"
|
||||
msgid "Network"
|
||||
msgstr "ネットワーク"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "新しいパスワード"
|
||||
|
||||
@ -974,6 +1033,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "注意: これにより、アカウントの安全性が低下します。"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "メモ"
|
||||
@ -1009,16 +1069,16 @@ msgstr "OpenAIはテキストの選択肢を返しませんでした。"
|
||||
msgid "OpenAI Integration"
|
||||
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"
|
||||
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/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "オプション"
|
||||
|
||||
@ -1032,22 +1092,23 @@ msgid "Organization"
|
||||
msgstr "組織"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "ページ"
|
||||
|
||||
#: 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}"
|
||||
msgstr "ページ {pageNumber}"
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "パスワード"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||
msgid "PDF"
|
||||
msgstr "PDF"
|
||||
|
||||
@ -1055,7 +1116,7 @@ msgstr "PDF"
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr "各履歴書の個人的なメモ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:108
|
||||
msgid "Phone"
|
||||
msgstr "電話番号"
|
||||
|
||||
@ -1109,14 +1170,12 @@ msgstr "Powered by <0>Simple Icons</0>"
|
||||
msgid "Primary Color"
|
||||
msgstr "プライマリ色"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||
msgid "Privacy Policy"
|
||||
msgstr "プライバシーポリシー"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
#: apps/client/src/components/ai-actions.tsx:113
|
||||
#: apps/client/src/components/ai-actions.tsx:116
|
||||
msgid "Professional"
|
||||
msgstr "プロフェッショナル"
|
||||
|
||||
@ -1132,7 +1191,7 @@ msgstr "公開"
|
||||
msgid "Publisher"
|
||||
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"
|
||||
msgstr "課題を上げる"
|
||||
|
||||
@ -1144,11 +1203,10 @@ msgstr "課題を上げる"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1175,12 +1233,12 @@ msgstr "Reactive Resume は、その活気に満ちたコミュニティのお
|
||||
msgid "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
|
||||
msgid "Remove"
|
||||
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"
|
||||
msgstr "ページを削除"
|
||||
|
||||
@ -1199,7 +1257,7 @@ msgstr "メール確認リンクを再送信する"
|
||||
msgid "Reset"
|
||||
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"
|
||||
msgstr "レイアウトをリセット"
|
||||
|
||||
@ -1213,8 +1271,8 @@ msgid "Reset Zoom"
|
||||
msgstr "Reset Zoom"
|
||||
|
||||
#: 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:37
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||
msgid "Resumes"
|
||||
msgstr "再開する"
|
||||
|
||||
@ -1237,11 +1295,11 @@ msgstr "四捨五入済み"
|
||||
msgid "Save Changes"
|
||||
msgstr "変更を保存"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||
msgid "Save Locally"
|
||||
msgstr "地元で節約する"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||
msgid "Saved"
|
||||
msgstr "保存"
|
||||
|
||||
@ -1262,15 +1320,15 @@ msgstr "パンまでスクロール"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "スクロールしてズーム"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "フォントファミリーを検索"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "フォントサブセットを検索"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "フォントバリアントを検索"
|
||||
|
||||
@ -1282,7 +1340,7 @@ msgstr "言語を検索"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "2要素認証で保護"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "セキュリティ"
|
||||
|
||||
@ -1294,7 +1352,7 @@ msgstr "Dockerを使ったセルフホスト"
|
||||
msgid "Send Email"
|
||||
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"
|
||||
msgstr "メッセージを送る"
|
||||
|
||||
@ -1314,6 +1372,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "アカウントに2要素認証を設定する"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "共有"
|
||||
@ -1330,7 +1389,7 @@ msgstr "改行を表示"
|
||||
msgid "Show Page Numbers"
|
||||
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"
|
||||
msgstr "Sidebar"
|
||||
|
||||
@ -1408,6 +1467,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "履歴書の作成を開始するには名前を付けてください。"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "統計情報"
|
||||
@ -1422,17 +1482,17 @@ msgstr "バックアップコードを安全に保管してください"
|
||||
|
||||
#: 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/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/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/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "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!"
|
||||
msgstr "できることを寄付してアプリをサポートしましょう!"
|
||||
|
||||
@ -1444,11 +1504,20 @@ msgstr "リアクティブレジュームをサポート"
|
||||
msgid "Supports A4/Letter page formats"
|
||||
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
|
||||
msgid "System"
|
||||
msgstr "システム"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "テンプレート"
|
||||
@ -1465,15 +1534,20 @@ msgstr "Testimonials"
|
||||
msgid "Text Color"
|
||||
msgstr "テキストの色"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "入力したパスワードが一致しません。"
|
||||
#: apps/client/src/pages/public/error.tsx:17
|
||||
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 "リクエストが無効です。"
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "更新したい履歴書はロックされています。変更を加えたい場合はロックを解除してください。"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1604,7 @@ msgstr "ビューとダウンロードを追跡する"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "2要素認証"
|
||||
|
||||
@ -1552,11 +1626,12 @@ msgid "Type of Study"
|
||||
msgstr "研究の種類"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "タイポグラフィー(文法)"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "下線リンク"
|
||||
|
||||
@ -1599,6 +1674,14 @@ msgstr "URL"
|
||||
msgid "URL must start with 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:57
|
||||
msgid "Use your backup code"
|
||||
@ -1651,7 +1734,7 @@ msgstr "バージョン4"
|
||||
msgid "Views"
|
||||
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"
|
||||
msgstr "表示"
|
||||
|
||||
@ -1665,15 +1748,15 @@ msgstr "パスワードを忘れた場合に備えて、パスワードリセッ
|
||||
|
||||
#: 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/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/experience.tsx:100
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:96
|
||||
msgid "Website"
|
||||
msgstr "Webサイト"
|
||||
|
||||
@ -1681,10 +1764,14 @@ msgstr "Webサイト"
|
||||
msgid "What's new in the latest version"
|
||||
msgstr "最新バージョンの新機能"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
||||
#: apps/client/src/pages/public/error.tsx:26
|
||||
msgid "You are not authorized to access this page."
|
||||
msgstr "このページのアクセスは許可されていません。"
|
||||
|
||||
#: 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."
|
||||
msgstr "複数のキーワードを追加するには、カンマで区切るか、Enterキーを押します。"
|
||||
|
||||
@ -1692,19 +1779,27 @@ msgstr "複数のキーワードを追加するには、カンマで区切るか
|
||||
msgid "You can also enter your username."
|
||||
msgstr "ユーザー名を入力することもできます。"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||
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."
|
||||
msgstr "APIキーを`sk-1234567890abcdef`に設定し、ベースURLをOllamaのURL、つまり`http://localhost:11434/v1`に設定するだけで、Ollamaと統合することもできます。また、好みに応じてモデルを選択し、最大トークンを設定することもできます。"
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||
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 "<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
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
msgstr "OpenAI API を使用して、コンテンツを生成したり、履歴書を作成したりする際に書き込みを改善したりできます。"
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||
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キーを<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
|
||||
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 "公開共有を有効にすることで、履歴書が受信した閲覧数や履歴書をダウンロードした人数を追跡できます。"
|
||||
|
||||
#: 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."
|
||||
msgstr "<0>あなた自身のOpenAI APIキー</0>を取得するオプションがあります。このキーは、あなたが適切にAPIを活用することを可能にします。 Reactive Resume で AI 機能を完全に無効にしたい場合は、設定からキーを削除することもできます。"
|
||||
|
||||
@ -1721,7 +1816,7 @@ msgstr "メールを受け取りました!"
|
||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||
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."
|
||||
msgstr "API キーはブラウザーのローカルストレージに安全に保存され、公式の SDK 経由で OpenAI へのリクエストを行う場合にのみ使用されます。 OpenAIのサービスと相互作用する場合を除き、キーが外部サーバーに送信されることはありませんのでご安心ください。"
|
||||
|
||||
@ -1733,7 +1828,7 @@ msgstr "メールアドレスの確認が完了しました。"
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "OpenAI API キーがまだ設定されていません。OpenAI 統合を有効にするには、アカウント設定を開いてください。"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "パスワードが正常に更新されました。"
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: km\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-11-04 14:22\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Khmer\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
@ -30,27 +30,27 @@ msgstr ""
|
||||
msgid "{value, plural, one {Column} other {Columns}}"
|
||||
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>"
|
||||
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>"
|
||||
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."
|
||||
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>"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr ""
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr ""
|
||||
msgid "Add a custom field"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:203
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr ""
|
||||
@ -112,12 +112,12 @@ msgstr ""
|
||||
msgid "Add a new item"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:267
|
||||
msgid "Add a new section"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -133,6 +133,14 @@ msgstr ""
|
||||
msgid "An error occurred while validating the file."
|
||||
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
|
||||
msgid "and many more..."
|
||||
msgstr ""
|
||||
@ -191,6 +199,18 @@ msgstr ""
|
||||
msgid "Awarder"
|
||||
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/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
@ -209,16 +229,16 @@ msgstr ""
|
||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||
msgid "Base URL"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:58
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
msgid "Basics"
|
||||
msgstr ""
|
||||
|
||||
@ -246,8 +266,8 @@ msgstr ""
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
#: apps/client/src/components/ai-actions.tsx:107
|
||||
#: apps/client/src/components/ai-actions.tsx:110
|
||||
msgid "Casual"
|
||||
msgstr ""
|
||||
|
||||
@ -255,12 +275,16 @@ msgstr ""
|
||||
msgid "Center Artboard"
|
||||
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/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
#: apps/client/src/components/ai-actions.tsx:101
|
||||
msgid "Change Tone"
|
||||
msgstr ""
|
||||
|
||||
@ -288,6 +312,16 @@ msgstr ""
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:272
|
||||
msgid "Collapse All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Collapse section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
@ -296,21 +330,17 @@ msgstr ""
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
#: apps/client/src/components/ai-actions.tsx:119
|
||||
#: apps/client/src/components/ai-actions.tsx:122
|
||||
msgid "Confident"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -351,7 +381,12 @@ msgstr ""
|
||||
msgid "Create Sample Resume"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
@ -360,7 +395,7 @@ msgstr ""
|
||||
msgid "Custom resume sections"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/stores/resume.ts:47
|
||||
#: apps/client/src/stores/resume.ts:53
|
||||
msgid "Custom Section"
|
||||
msgstr ""
|
||||
|
||||
@ -386,10 +421,10 @@ msgstr ""
|
||||
msgid "Date"
|
||||
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/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
|
||||
msgid "Date or Date Range"
|
||||
msgstr ""
|
||||
@ -407,11 +442,15 @@ msgstr ""
|
||||
msgid "Delete Account"
|
||||
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/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/skills.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
@ -423,18 +462,18 @@ msgstr ""
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
@ -442,7 +481,7 @@ msgstr ""
|
||||
msgid "Don't have an account?"
|
||||
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!"
|
||||
msgstr ""
|
||||
|
||||
@ -450,7 +489,7 @@ msgstr ""
|
||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -458,12 +497,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."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr ""
|
||||
|
||||
@ -487,7 +525,7 @@ msgstr ""
|
||||
msgid "Duplicate an existing resume"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -498,12 +536,12 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:90
|
||||
#: apps/client/src/pages/auth/register/page.tsx:141
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr ""
|
||||
|
||||
@ -531,6 +569,10 @@ msgstr ""
|
||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/public/error.tsx:46
|
||||
msgid "Error {statusCode}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||
msgid "Errors"
|
||||
msgstr ""
|
||||
@ -539,11 +581,22 @@ msgstr ""
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:271
|
||||
msgid "Expand All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Expand section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "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 ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
@ -564,19 +617,19 @@ msgstr ""
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr ""
|
||||
|
||||
@ -584,7 +637,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."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||
msgid "Forget"
|
||||
msgstr ""
|
||||
|
||||
@ -601,7 +654,7 @@ msgstr ""
|
||||
msgid "Format"
|
||||
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?"
|
||||
msgstr ""
|
||||
|
||||
@ -609,12 +662,12 @@ msgstr ""
|
||||
msgid "Free, forever"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:121
|
||||
#: apps/client/src/components/ai-actions.tsx:124
|
||||
#: apps/client/src/components/ai-actions.tsx:125
|
||||
#: apps/client/src/components/ai-actions.tsx:128
|
||||
msgid "Friendly"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:56
|
||||
msgid "Full Name"
|
||||
msgstr ""
|
||||
|
||||
@ -643,6 +696,10 @@ msgstr ""
|
||||
msgid "Go to Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/public/error.tsx:55
|
||||
msgid "Go to home"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||
msgid "Google"
|
||||
msgstr ""
|
||||
@ -651,11 +708,11 @@ msgstr ""
|
||||
msgid "Grayscale"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||
msgid "Grid"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:70
|
||||
msgid "Headline"
|
||||
msgstr ""
|
||||
|
||||
@ -668,7 +725,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
msgid "Hidden"
|
||||
msgstr ""
|
||||
@ -677,7 +734,7 @@ msgstr ""
|
||||
msgid "Hide"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr ""
|
||||
|
||||
@ -734,7 +791,7 @@ msgstr ""
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr ""
|
||||
|
||||
@ -743,7 +800,8 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx: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"
|
||||
msgstr ""
|
||||
|
||||
@ -802,10 +860,10 @@ msgstr ""
|
||||
msgid "JSON"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
@ -824,7 +882,8 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx: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"
|
||||
msgstr ""
|
||||
|
||||
@ -837,7 +896,7 @@ msgid "Letter"
|
||||
msgstr ""
|
||||
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -853,7 +912,7 @@ msgstr ""
|
||||
msgid "Light or dark theme"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr ""
|
||||
|
||||
@ -862,14 +921,14 @@ msgstr ""
|
||||
msgid "LinkedIn, JSON Resume, etc."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||
msgid "List"
|
||||
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/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:120
|
||||
msgid "Location"
|
||||
msgstr ""
|
||||
|
||||
@ -897,7 +956,7 @@ msgstr ""
|
||||
msgid "Lost your device?"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -914,7 +973,7 @@ msgstr ""
|
||||
|
||||
#: 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/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
|
||||
msgid "March 2023 - Present"
|
||||
msgstr ""
|
||||
@ -923,7 +982,7 @@ msgstr ""
|
||||
msgid "Margin"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||
msgid "Max Tokens"
|
||||
msgstr ""
|
||||
|
||||
@ -931,18 +990,18 @@ msgstr ""
|
||||
msgid "MIT License"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#: 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/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: 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/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/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/dashboard/settings/_sections/account.tsx:153
|
||||
msgid "Name"
|
||||
@ -957,7 +1016,7 @@ msgstr ""
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
@ -974,6 +1033,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
@ -1009,16 +1069,16 @@ msgstr ""
|
||||
msgid "OpenAI Integration"
|
||||
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"
|
||||
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/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
@ -1032,22 +1092,23 @@ msgid "Organization"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
#: 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}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||
msgid "PDF"
|
||||
msgstr ""
|
||||
|
||||
@ -1055,7 +1116,7 @@ msgstr ""
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:108
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
@ -1109,14 +1170,12 @@ msgstr ""
|
||||
msgid "Primary Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||
msgid "Privacy Policy"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
#: apps/client/src/components/ai-actions.tsx:113
|
||||
#: apps/client/src/components/ai-actions.tsx:116
|
||||
msgid "Professional"
|
||||
msgstr ""
|
||||
|
||||
@ -1132,7 +1191,7 @@ msgstr ""
|
||||
msgid "Publisher"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1144,11 +1203,10 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1175,12 +1233,12 @@ msgstr ""
|
||||
msgid "Redo"
|
||||
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
|
||||
msgid "Remove"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1199,7 +1257,7 @@ msgstr ""
|
||||
msgid "Reset"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1213,8 +1271,8 @@ msgid "Reset Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: 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:37
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||
msgid "Resumes"
|
||||
msgstr ""
|
||||
|
||||
@ -1237,11 +1295,11 @@ msgstr ""
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||
msgid "Save Locally"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||
msgid "Saved"
|
||||
msgstr ""
|
||||
|
||||
@ -1262,15 +1320,15 @@ msgstr ""
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
@ -1282,7 +1340,7 @@ msgstr ""
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
@ -1294,7 +1352,7 @@ msgstr ""
|
||||
msgid "Send Email"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1314,6 +1372,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr ""
|
||||
@ -1330,7 +1389,7 @@ msgstr ""
|
||||
msgid "Show Page Numbers"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1408,6 +1467,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr ""
|
||||
@ -1422,17 +1482,17 @@ msgstr ""
|
||||
|
||||
#: 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/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/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/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "Summary"
|
||||
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!"
|
||||
msgstr ""
|
||||
|
||||
@ -1444,11 +1504,20 @@ msgstr ""
|
||||
msgid "Supports A4/Letter page formats"
|
||||
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
|
||||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
@ -1465,8 +1534,12 @@ msgstr ""
|
||||
msgid "Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
#: apps/client/src/pages/public/error.tsx:17
|
||||
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 ""
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
@ -1474,6 +1547,7 @@ msgid "The resume you want to update is locked, please unlock if you wish to mak
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1604,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
@ -1552,11 +1626,12 @@ msgid "Type of Study"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr ""
|
||||
|
||||
@ -1599,6 +1674,14 @@ msgstr ""
|
||||
msgid "URL must start with https://"
|
||||
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:57
|
||||
msgid "Use your backup code"
|
||||
@ -1651,7 +1734,7 @@ msgstr ""
|
||||
msgid "Views"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1665,15 +1748,15 @@ msgstr ""
|
||||
|
||||
#: 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/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/experience.tsx:100
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:96
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
@ -1681,10 +1764,14 @@ msgstr ""
|
||||
msgid "What's new in the latest version"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
||||
#: apps/client/src/pages/public/error.tsx:26
|
||||
msgid "You are not authorized to access this page."
|
||||
msgstr ""
|
||||
|
||||
#: 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."
|
||||
msgstr ""
|
||||
|
||||
@ -1692,19 +1779,27 @@ msgstr ""
|
||||
msgid "You can also enter your username."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||
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."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||
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 ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||
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 ""
|
||||
|
||||
#: 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."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
@ -1721,7 +1816,7 @@ msgstr ""
|
||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
@ -1733,7 +1828,7 @@ msgstr ""
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: kn\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-11-04 14:22\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Kannada\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -30,27 +30,27 @@ msgstr "ಆಯ್ಕೆ ಮಾಡಲು {templatesCount} ರೆಸ್ಯೂಮ
|
||||
msgid "{value, plural, one {Column} other {Columns}}"
|
||||
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>"
|
||||
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>"
|
||||
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."
|
||||
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>"
|
||||
msgstr "<0>ಪ್ರತಿಕ್ರಿಯಾತ್ಮಕ ಪುನರಾರಂಭಕ್ಕಾಗಿ ದಸ್ತಾವೇಜನ್ನು ಬರೆಯಲು ಸಮುದಾಯವು ಸಾಕಷ್ಟು ಸಮಯವನ್ನು ಕಳೆದಿದೆ ಮತ್ತು ಅಪ್ಲಿಕೇಶನ್ನೊಂದಿಗೆ ಪ್ರಾರಂಭಿಸಲು ಇದು ನಿಮಗೆ ಸಹಾಯ ಮಾಡುತ್ತದೆ ಎಂದು ನನಗೆ ಖಾತ್ರಿಯಿದೆ.</0> <1>ಪ್ರಾರಂಭಿಸಲು ನಿಮಗೆ ಸಹಾಯ ಮಾಡಲು ಸಾಕಷ್ಟು ಉದಾಹರಣೆಗಳಿವೆ ಮತ್ತು ನಿಮಗೆ ತಿಳಿದಿಲ್ಲದ ವೈಶಿಷ್ಟ್ಯಗಳು ನಿಮ್ಮ ಪರಿಪೂರ್ಣ ಪುನರಾರಂಭವನ್ನು ನಿರ್ಮಿಸಲು ನಿಮಗೆ ಸಹಾಯ ಮಾಡುತ್ತವೆ.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>ಎರಡು ಅಂಶದ ದೃಢೀಕರಣವನ್ನು ಪ್ರಸ್ತುತ ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ.</0> ನಿಮ್ಮ ಖಾತೆಗೆ ದೃಢೀಕರಣ ಅಪ್ಲಿಕೇಶನ್ ಅನ್ನು ಸೇರಿಸುವ ಮೂಲಕ ನೀವು ಅದನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಬಹುದು."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>ಎರಡು ಅಂಶದ ದೃಢೀಕರಣವನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ.</0> ನೀವು ಸೈನ್ ಇನ್ ಮಾಡಿದಾಗಲೆಲ್ಲಾ ಕೋಡ್ ಅನ್ನು ನಮೂದಿಸಲು ನಿಮ್ಮನ್ನು ಕೇಳಲಾಗುತ್ತದೆ."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "ಖಾತೆಗಳು"
|
||||
msgid "Add a custom field"
|
||||
msgstr "ಕಸ್ಟಮ್ ಕ್ಷೇತ್ರವನ್ನು ಸೇರಿಸಿ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:203
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "ಹೊಸ ಐಟಂ ಸೇರಿಸಿ"
|
||||
@ -112,12 +112,12 @@ msgstr "ಹೊಸ ಐಟಂ ಸೇರಿಸಿ"
|
||||
msgid "Add a new item"
|
||||
msgstr "ಹೊಸ ಐಟಂ ಸೇರಿಸಿ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:267
|
||||
msgid "Add a new section"
|
||||
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"
|
||||
msgstr "ಹೊಸ ಪುಟವನ್ನು ಸೇರಿಸಿ"
|
||||
|
||||
@ -133,6 +133,14 @@ msgstr "ಈಗಾಗಲೇ ಖಾತೆ ಹೊಂದಿದ್ದೀರ?
|
||||
msgid "An error occurred while validating the file."
|
||||
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
|
||||
msgid "and many more..."
|
||||
msgstr "ಮತ್ತು ಇನ್ನೂ ಅನೇಕ..."
|
||||
@ -191,6 +199,18 @@ msgstr ""
|
||||
msgid "Awarder"
|
||||
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/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
@ -209,16 +229,16 @@ msgstr "ಬ್ಯಾಕಪ್ ಕೋಡ್"
|
||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:58
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr "ಸಾಮಾನ್ಯ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
msgid "Basics"
|
||||
msgstr "ಸಾಮಾನ್ಯ"
|
||||
|
||||
@ -246,8 +266,8 @@ msgstr "ಸಮುದಾಯದಿಂದ, ಸಮುದಾಯಕ್ಕಾಗಿ."
|
||||
msgid "Cancel"
|
||||
msgstr "ರದ್ದುಮಾಡಿ"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
#: apps/client/src/components/ai-actions.tsx:107
|
||||
#: apps/client/src/components/ai-actions.tsx:110
|
||||
msgid "Casual"
|
||||
msgstr "ಸಾಂದರ್ಭಿಕ"
|
||||
|
||||
@ -255,12 +275,16 @@ msgstr "ಸಾಂದರ್ಭಿಕ"
|
||||
msgid "Center Artboard"
|
||||
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/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "ಗುಪ್ತಪದವನ್ನು ಬದಲಾಯಿಸು"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
#: apps/client/src/components/ai-actions.tsx:101
|
||||
msgid "Change Tone"
|
||||
msgstr "ಟೋನ್ ಬದಲಾಯಿಸಿ"
|
||||
|
||||
@ -288,6 +312,16 @@ msgstr "ಕೋಡ್"
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr "ಕೋಡ್ ನಿಖರವಾಗಿ 6 ಅಂಕೆಗಳನ್ನು ಹೊಂದಿರಬೇಕು."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:272
|
||||
msgid "Collapse All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Collapse section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136
|
||||
msgid "Columns"
|
||||
msgstr "ಕಾಲಮ್ಗಳು"
|
||||
@ -296,21 +330,17 @@ msgstr "ಕಾಲಮ್ಗಳು"
|
||||
msgid "Company"
|
||||
msgstr "ಕಂಪನಿ"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
#: apps/client/src/components/ai-actions.tsx:119
|
||||
#: apps/client/src/components/ai-actions.tsx:122
|
||||
msgid "Confident"
|
||||
msgstr "ಆತ್ಮವಿಶ್ವಾಸ"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "ಹೊಸ ಗುಪ್ತಪದವನ್ನು ದೃಢೀಕರಿಸಿ"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
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"
|
||||
msgstr "ನಕಲು ಮಾಡಿ"
|
||||
|
||||
@ -351,7 +381,12 @@ msgstr "ಇದೀಗ ಒಂದನ್ನು ರಚಿಸಿ"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "ಮಾದರಿ ರೆಸ್ಯೂಮ್ ರಚಿಸಿ"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
@ -360,7 +395,7 @@ msgstr ""
|
||||
msgid "Custom resume sections"
|
||||
msgstr "ಕಸ್ಟಮ್ ಪುನರಾರಂಭ ವಿಭಾಗಗಳು"
|
||||
|
||||
#: apps/client/src/stores/resume.ts:47
|
||||
#: apps/client/src/stores/resume.ts:53
|
||||
msgid "Custom Section"
|
||||
msgstr "ಕಸ್ಟಮ್ ವಿಭಾಗ"
|
||||
|
||||
@ -386,10 +421,10 @@ msgstr "ಕತ್ತಲು"
|
||||
msgid "Date"
|
||||
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/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
|
||||
msgid "Date or Date Range"
|
||||
msgstr ""
|
||||
@ -407,11 +442,15 @@ msgstr "ಅಳಿಸಿ"
|
||||
msgid "Delete Account"
|
||||
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/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/skills.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||
msgid "Description"
|
||||
msgstr "ವಿವರಣೆ"
|
||||
|
||||
@ -423,18 +462,18 @@ msgstr "ಏಕ/ಬಹು ಪುಟ ರೆಸ್ಯೂಮ್ಗಳನ್ನು
|
||||
msgid "Disable"
|
||||
msgstr "ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "2FA ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "ತಿರಸ್ಕರಿಸು"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr "ದಾಖಲೀಕರಣ"
|
||||
|
||||
@ -442,7 +481,7 @@ msgstr "ದಾಖಲೀಕರಣ"
|
||||
msgid "Don't have an account?"
|
||||
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!"
|
||||
msgstr "ಎಲ್ಲಿಂದ ಪ್ರಾರಂಭಿಸಬೇಕು ಎಂದು ತಿಳಿದಿಲ್ಲವೇ? ಡಾಕ್ಸ್ ಅನ್ನು ಬಳಸಿ!"
|
||||
|
||||
@ -450,7 +489,7 @@ msgstr "ಎಲ್ಲಿಂದ ಪ್ರಾರಂಭಿಸಬೇಕು ಎಂದ
|
||||
msgid "Don't see your language? <0>Help translate the app.</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"
|
||||
msgstr "ರಿಯಾಕ್ಟಿವ್ ರೆಸ್ಯೂಮ್ಗೆ ದೇಣಿಗೆ ನೀಡಿ"
|
||||
|
||||
@ -458,12 +497,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."
|
||||
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."
|
||||
msgstr "ನಿಮ್ಮ ರೆಸ್ಯೂಮ್ನ PDF ಅನ್ನು ಡೌನ್ಲೋಡ್ ಮಾಡಿ. ನಿಮ್ಮ ರೆಸ್ಯೂಮ್ ಅನ್ನು ಪ್ರಿಂಟ್ ಮಾಡಲು, ನೇಮಕಾತಿ ಮಾಡುವವರಿಗೆ ಕಳುಹಿಸಲು ಅಥವಾ ಜಾಬ್ ಪೋರ್ಟಲ್ಗಳಲ್ಲಿ ಅಪ್ಲೋಡ್ ಮಾಡಲು ಈ ಫೈಲ್ ಅನ್ನು ಬಳಸಬಹುದು."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr ""
|
||||
|
||||
@ -487,7 +525,7 @@ msgstr "ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ಐಟಂ ಅನ್ನ
|
||||
msgid "Duplicate an existing resume"
|
||||
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"
|
||||
msgstr "ತಿದ್ದು"
|
||||
|
||||
@ -498,12 +536,12 @@ msgstr "ಪರಿಣಾಮಗಳು"
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:90
|
||||
#: apps/client/src/pages/auth/register/page.tsx:141
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181
|
||||
msgid "Email"
|
||||
msgstr "ಇಮೇಲ್"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "2FA ಸಕ್ರಿಯಗೊಳಿಸಿ"
|
||||
|
||||
@ -531,6 +569,10 @@ msgstr "ನಿಮ್ಮ ದೃಢೀಕರಣ ಅಪ್ಲಿಕೇಶನ್
|
||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||
msgstr "ನಿಮ್ಮ ಇಮೇಲ್ ವಿಳಾಸವನ್ನು ನಮೂದಿಸಿ ಮತ್ತು ಖಾತೆಯು ಅಸ್ತಿತ್ವದಲ್ಲಿದ್ದರೆ ನಿಮ್ಮ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ಮರುಹೊಂದಿಸಲು ನಾವು ನಿಮಗೆ ಲಿಂಕ್ ಅನ್ನು ಕಳುಹಿಸುತ್ತೇವೆ."
|
||||
|
||||
#: apps/client/src/pages/public/error.tsx:46
|
||||
msgid "Error {statusCode}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||
msgid "Errors"
|
||||
msgstr "ದೋಷಗಳು"
|
||||
@ -539,11 +581,22 @@ msgstr "ದೋಷಗಳು"
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr "ನೀವು ಆರ್ಥಿಕವಾಗಿ ಕೊಡುಗೆ ನೀಡುವ ಸ್ಥಿತಿಯಲ್ಲಿಲ್ಲದಿದ್ದರೂ ಸಹ, GitHub ರೆಪೊಸಿಟರಿಗೆ ನಕ್ಷತ್ರವನ್ನು ನೀಡುವ ಮೂಲಕ, ನಿಮ್ಮ ಸ್ನೇಹಿತರಿಗೆ ಸುದ್ದಿಯನ್ನು ಹರಡುವ ಮೂಲಕ ಅಥವಾ ರಿಯಾಕ್ಟಿವ್ ರೆಸ್ಯೂಮ್ ನಿಮಗೆ ಹೇಗೆ ಸಹಾಯ ಮಾಡಿದೆ ಎಂಬುದನ್ನು ನನಗೆ ತಿಳಿಸಲು ತ್ವರಿತ ಸಂದೇಶವನ್ನು ನೀಡುವ ಮೂಲಕ ನೀವು ಇನ್ನೂ ಬದಲಾವಣೆಯನ್ನು ಮಾಡಬಹುದು. ನಿಮ್ಮ ಪ್ರತಿಕ್ರಿಯೆ ಮತ್ತು ಬೆಂಬಲ ಯಾವಾಗಲೂ ಸ್ವಾಗತಾರ್ಹ ಮತ್ತು ಹೆಚ್ಚು ಮೆಚ್ಚುಗೆ!"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:271
|
||||
msgid "Expand All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Expand section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "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 "ಪ್ರತಿಕ್ರಿಯಾತ್ಮಕ ರೆಸ್ಯೂಮ್ ಲಭ್ಯವಿರುವ ಟೆಂಪ್ಲೇಟ್ಗಳನ್ನು ಅನ್ವೇಷಿಸಿ ಮತ್ತು ಅವರೊಂದಿಗೆ ರಚಿಸಲಾದ ರೆಸ್ಯೂಮ್ಗಳನ್ನು ವೀಕ್ಷಿಸಿ. ನಿಮ್ಮ ಮುಂದಿನ ರೆಸ್ಯೂಮ್ ರಚನೆಗೆ ಮಾರ್ಗದರ್ಶನ ನೀಡಲು ಅವರು ಉದಾಹರಣೆಗಳಾಗಿ ಕಾರ್ಯನಿರ್ವಹಿಸಬಹುದು."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "ರಫ್ತು ಮಾಡು"
|
||||
@ -564,19 +617,19 @@ msgstr "ಅಂತಿಮವಾಗಿ,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "ಕಾಗುಣಿತ ಮತ್ತು ವ್ಯಾಕರಣವನ್ನು ಸರಿಪಡಿಸಿ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "ಅಕ್ಷರಗಳ ಸಮೂಹ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "ಅಕ್ಷರ ಗಾತ್ರ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "ಅಕ್ಷರಗಳ ಉಪವಿಭಾಗ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "ಅಕ್ಷರಗಳ ರೂಪಾಂತರಗಳು"
|
||||
|
||||
@ -584,7 +637,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."
|
||||
msgstr "ಉದಾಹರಣೆಗೆ, ನೀವು ಈ ರೆಸ್ಯೂಮ್ ಅನ್ನು ಯಾವ ಕಂಪನಿಗಳಿಗೆ ಕಳುಹಿಸಿದ್ದೀರಿ ಅಥವಾ ಉದ್ಯೋಗ ವಿವರಣೆಗಳ ಲಿಂಕ್ಗಳನ್ನು ಇಲ್ಲಿ ನಮೂದಿಸಬಹುದು."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||
msgid "Forget"
|
||||
msgstr "ಮರೆತುಬಿಡಿ"
|
||||
|
||||
@ -601,7 +654,7 @@ msgstr "ನಿಮ್ಮ ಪಾಸ್ವರ್ಡ್ ಮರೆತಿರುವಿ
|
||||
msgid "Format"
|
||||
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?"
|
||||
msgstr "ದೋಷ ಕಂಡುಬಂದಿದೆಯೇ ಅಥವಾ ಹೊಸ ವೈಶಿಷ್ಟ್ಯಕ್ಕಾಗಿ ಕಲ್ಪನೆ ಇದೆಯೇ?"
|
||||
|
||||
@ -609,12 +662,12 @@ msgstr "ದೋಷ ಕಂಡುಬಂದಿದೆಯೇ ಅಥವಾ ಹೊಸ
|
||||
msgid "Free, forever"
|
||||
msgstr "ಉಚಿತ ಶಾಶ್ವತವಾಗಿ"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:121
|
||||
#: apps/client/src/components/ai-actions.tsx:124
|
||||
#: apps/client/src/components/ai-actions.tsx:125
|
||||
#: apps/client/src/components/ai-actions.tsx:128
|
||||
msgid "Friendly"
|
||||
msgstr "ಸ್ನೇಹಪರ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:56
|
||||
msgid "Full Name"
|
||||
msgstr "ಪೂರ್ಣ ಹೆಸರು"
|
||||
|
||||
@ -643,6 +696,10 @@ msgstr "ನಿಮ್ಮ ಹಳೆಯ ರೆಸ್ಯೂಮೇಗೆ ಹೊಸ
|
||||
msgid "Go to Dashboard"
|
||||
msgstr "ಡ್ಯಾಶ್ಬೋರ್ಡ್ಗೆ ಹೋಗಿ"
|
||||
|
||||
#: apps/client/src/pages/public/error.tsx:55
|
||||
msgid "Go to home"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||
msgid "Google"
|
||||
msgstr "ಗೂಗಲ್"
|
||||
@ -651,11 +708,11 @@ msgstr "ಗೂಗಲ್"
|
||||
msgid "Grayscale"
|
||||
msgstr "ಗ್ರೇಸ್ಕೇಲ್"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||
msgid "Grid"
|
||||
msgstr "ಗ್ರಿಡ್"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:70
|
||||
msgid "Headline"
|
||||
msgstr "ಶೀರ್ಷಿಕೆ"
|
||||
|
||||
@ -668,7 +725,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr "ಇಲ್ಲಿ, ನಿಮ್ಮ ಅನುಭವವನ್ನು ಕಸ್ಟಮೈಸ್ ಮಾಡಲು ಮತ್ತು ವೈಯಕ್ತೀಕರಿಸಲು ನಿಮ್ಮ ಪ್ರೊಫೈಲ್ ಅನ್ನು ನೀವು ನವೀಕರಿಸಬಹುದು."
|
||||
|
||||
#: 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
|
||||
msgid "Hidden"
|
||||
msgstr "ಮರೆಮಾಡಲಾಗಿದೆ"
|
||||
@ -677,7 +734,7 @@ msgstr "ಮರೆಮಾಡಲಾಗಿದೆ"
|
||||
msgid "Hide"
|
||||
msgstr "ಮರೆಮಾಡಿ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "ಐಕಾನ್ಗಳನ್ನು ಮರೆಮಾಡಿ"
|
||||
|
||||
@ -734,7 +791,7 @@ msgstr "ಬರವಣಿಗೆಯನ್ನು ಸುಧಾರಿಸಿ"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "ಈ QR ಕೋಡ್ ಅನ್ನು ಸ್ಕ್ಯಾನ್ ಮಾಡಲು ನಿಮಗೆ ಸಾಧ್ಯವಾಗದಿದ್ದರೆ, ನೀವು ಈ ಲಿಂಕ್ ಅನ್ನು ನಿಮ್ಮ ದೃಢೀಕರಣ ಅಪ್ಲಿಕೇಶನ್ಗೆ ನಕಲಿಸಬಹುದು."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "ಈ ವಿಭಾಗದಲ್ಲಿ, ನೀವು ನಿಮ್ಮ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ಬದಲಾಯಿಸಬಹುದು ಮತ್ತು ಎರಡು ಅಂಶಗಳ ದೃಢೀಕರಣವನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಬಹುದು/ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಬಹುದು."
|
||||
|
||||
@ -743,7 +800,8 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "ಈ ವಿಭಾಗದಲ್ಲಿ, ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಮತ್ತು ನಿಮ್ಮ ಬಳಕೆದಾರರಿಗೆ ಸಂಬಂಧಿಸಿದ ಎಲ್ಲಾ ಡೇಟಾವನ್ನು ನೀವು ಅಳಿಸಬಹುದು, ಆದರೆ ದಯವಿಟ್ಟು <0>ಈ ಕ್ರಿಯೆಯನ್ನು ಬದಲಾಯಿಸಲಾಗುವುದಿಲ್ಲ</0> ಎಂಬುದನ್ನು ನೆನಪಿನಲ್ಲಿಡಿ."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx: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"
|
||||
msgstr "ಮಾಹಿತಿ"
|
||||
|
||||
@ -802,10 +860,10 @@ msgstr "john.doe@example.com"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||
msgid "Keywords"
|
||||
msgstr "ಕೀವರ್ಡ್ಗಳು"
|
||||
|
||||
@ -824,7 +882,8 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "ಕೊನೆಯದಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx: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"
|
||||
msgstr "ಲೇಔಟ್"
|
||||
|
||||
@ -837,7 +896,7 @@ msgid "Letter"
|
||||
msgstr "ಪತ್ರಗಳು"
|
||||
|
||||
#: 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"
|
||||
msgstr "ಮಟ್ಟ"
|
||||
|
||||
@ -853,7 +912,7 @@ msgstr "ತಿಳಿ ಬಣ್ಣ"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "ಲೈಟ್ ಅಥವಾ ಡಾರ್ಕ್ ಥೀಮ್"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "ಗೆರೆಯ ಎತ್ತರ"
|
||||
|
||||
@ -862,14 +921,14 @@ msgstr "ಗೆರೆಯ ಎತ್ತರ"
|
||||
msgid "LinkedIn, JSON Resume, etc."
|
||||
msgstr "ಲಿಂಕ್ಡ್ಇನ್, JSON ರೆಸ್ಯೂಮ್, ಇತ್ಯಾದಿ."
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||
msgid "List"
|
||||
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/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:120
|
||||
msgid "Location"
|
||||
msgstr "ಸ್ಥಳ"
|
||||
|
||||
@ -897,7 +956,7 @@ msgstr "ಲಾಗ್ ಔಟ್"
|
||||
msgid "Lost your device?"
|
||||
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"
|
||||
msgstr "ಮುಖ್ಯ"
|
||||
|
||||
@ -914,7 +973,7 @@ msgstr "ಮಾರ್ಚ್ 2023"
|
||||
|
||||
#: 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/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
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "ಮಾರ್ಚ್ 2023 - ಪ್ರಸ್ತುತ"
|
||||
@ -923,7 +982,7 @@ msgstr "ಮಾರ್ಚ್ 2023 - ಪ್ರಸ್ತುತ"
|
||||
msgid "Margin"
|
||||
msgstr "ಅಂಚು"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||
msgid "Max Tokens"
|
||||
msgstr ""
|
||||
|
||||
@ -931,18 +990,18 @@ msgstr ""
|
||||
msgid "MIT License"
|
||||
msgstr "MIT ಪರವಾನಗಿ"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#: 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/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: 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/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/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/dashboard/settings/_sections/account.tsx:153
|
||||
msgid "Name"
|
||||
@ -957,7 +1016,7 @@ msgstr "ಹೆಸರು"
|
||||
msgid "Network"
|
||||
msgstr "ನೆಟ್ವರ್ಕ್"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "ಹೊಸ ಪಾಸ್ವರ್ಡ್"
|
||||
|
||||
@ -974,6 +1033,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "ಗಮನಿಸಿ: ಇದು ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಕಡಿಮೆ ಸುರಕ್ಷಿತಗೊಳಿಸುತ್ತದೆ."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "ಟಿಪ್ಪಣಿಗಳು"
|
||||
@ -1009,16 +1069,16 @@ msgstr "OpenAI ನಿಮ್ಮ ಪಠ್ಯಕ್ಕಾಗಿ ಯಾವುದೇ
|
||||
msgid "OpenAI Integration"
|
||||
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"
|
||||
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/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "ಆಯ್ಕೆಗಳು"
|
||||
|
||||
@ -1032,22 +1092,23 @@ msgid "Organization"
|
||||
msgstr "ಸಂಸ್ಥೆ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "ಪುಟ"
|
||||
|
||||
#: 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}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "ಗುಪ್ತಪದ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||
msgid "PDF"
|
||||
msgstr "PDF"
|
||||
|
||||
@ -1055,7 +1116,7 @@ msgstr "PDF"
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr "ಪ್ರತಿ ರೆಸ್ಯೂಮ್ ವೈಯಕ್ತಿಕ ಟಿಪ್ಪಣಿಗಳು"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:108
|
||||
msgid "Phone"
|
||||
msgstr "ದೂರವಾಣಿ"
|
||||
|
||||
@ -1109,14 +1170,12 @@ msgstr "<0>ಸರಳ ಐಕಾನ್ಗಳಿಂದ</0> ನಡೆಸಲ್ಪ
|
||||
msgid "Primary Color"
|
||||
msgstr "ಪ್ರಾಥಮಿಕ ಬಣ್ಣ"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||
msgid "Privacy Policy"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
#: apps/client/src/components/ai-actions.tsx:113
|
||||
#: apps/client/src/components/ai-actions.tsx:116
|
||||
msgid "Professional"
|
||||
msgstr "ವೃತ್ತಿಪರ"
|
||||
|
||||
@ -1132,7 +1191,7 @@ msgstr "ಸಾರ್ವಜನಿಕ"
|
||||
msgid "Publisher"
|
||||
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"
|
||||
msgstr "ಒಂದು ಸಮಸ್ಯೆಯನ್ನು ಎತ್ತಿಕೊಳ್ಳಿ"
|
||||
|
||||
@ -1144,11 +1203,10 @@ msgstr "ಒಂದು ಸಮಸ್ಯೆಯನ್ನು ಎತ್ತಿಕೊಳ
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1175,12 +1233,12 @@ msgstr "ರಿಯಾಕ್ಟಿವ್ ರೆಸ್ಯೂಮೇ ಅದರ ರೋ
|
||||
msgid "Redo"
|
||||
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
|
||||
msgid "Remove"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1199,7 +1257,7 @@ msgstr "ಇಮೇಲ್ ದೃಢೀಕರಣ ಲಿಂಕ್ ಅನ್ನು
|
||||
msgid "Reset"
|
||||
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"
|
||||
msgstr "ಲೇಔಟ್ ಅನ್ನು ಮರುಹೊಂದಿಸಿ"
|
||||
|
||||
@ -1213,8 +1271,8 @@ msgid "Reset Zoom"
|
||||
msgstr "ಜೂಮ್ ಮರುಹೊಂದಿಸಿ"
|
||||
|
||||
#: 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:37
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||
msgid "Resumes"
|
||||
msgstr "ರೆಸ್ಯೂಮೇ"
|
||||
|
||||
@ -1237,11 +1295,11 @@ msgstr "ದುಂಡಾದ"
|
||||
msgid "Save Changes"
|
||||
msgstr "ಬದಲಾವಣೆಗಳನ್ನು ಉಳಿಸು"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||
msgid "Save Locally"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||
msgid "Saved"
|
||||
msgstr ""
|
||||
|
||||
@ -1262,15 +1320,15 @@ msgstr ""
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "ಫಾಂಟ್ ಕುಟುಂಬಕ್ಕಾಗಿ ಹುಡುಕಿ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "ಫಾಂಟ್ ಉಪವಿಭಾಗಕ್ಕಾಗಿ ಹುಡುಕಿ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "ಫಾಂಟ್ ಉಪವಿಭಾಗಕ್ಕಾಗಿ ಹುಡುಕಿ"
|
||||
|
||||
@ -1282,7 +1340,7 @@ msgstr "ಭಾಷೆಗಾಗಿ ಹುಡುಕಿ"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "ಎರಡು ಅಂಶದ ದೃಢೀಕರಣದೊಂದಿಗೆ ಸುರಕ್ಷಿತ"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "ಭದ್ರತೆ"
|
||||
|
||||
@ -1294,7 +1352,7 @@ msgstr "ಡಾಕರ್ ಜೊತೆಗೆ ಸ್ವಯಂ ಹೋಸ್ಟ್"
|
||||
msgid "Send Email"
|
||||
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"
|
||||
msgstr "ಸಂದೇಶ ಕಳುಹಿಸಿ"
|
||||
|
||||
@ -1314,6 +1372,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "ನಿಮ್ಮ ಖಾತೆಯಲ್ಲಿ ಎರಡು ಅಂಶದ ದೃಢೀಕರಣವನ್ನು ಹೊಂದಿಸಿ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "ಹಂಚಿಕೆ"
|
||||
@ -1330,7 +1389,7 @@ msgstr "ಪುಟ ಕೊನೆ ಗೊಳ್ಳುವ ಚಿನ್ನೇ ತೋ
|
||||
msgid "Show Page Numbers"
|
||||
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"
|
||||
msgstr "ಪಾರ್ಶ್ವಪಟ್ಟಿ"
|
||||
|
||||
@ -1408,6 +1467,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "ಹೆಸರನ್ನು ನೀಡುವ ಮೂಲಕ ನಿಮ್ಮ ರೆಸ್ಯೂಮ್ ಅನ್ನು ನಿರ್ಮಿಸಲು ಪ್ರಾರಂಭಿಸಿ."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "ಅಂಕಿಅಂಶಗಳು"
|
||||
@ -1422,17 +1482,17 @@ msgstr "ನಿಮ್ಮ ಬ್ಯಾಕಪ್ ಕೋಡ್ಗಳನ್ನು
|
||||
|
||||
#: 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/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/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/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "Summary"
|
||||
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!"
|
||||
msgstr "ದೇಣಿಗೆ ನೀಡುವ ಮೂಲಕ ಅಪ್ಲಿಕೇಶನ್ ಅನ್ನು ಬೆಂಬಲಿಸಿ ಮತ್ತು ಪ್ರೋತ್ಸಾಹಿಸಿ!"
|
||||
|
||||
@ -1444,11 +1504,20 @@ msgstr "ಪ್ರತಿಕ್ರಿಯಾತ್ಮಕ ರೆಸ್ಯೂಮ್
|
||||
msgid "Supports A4/Letter page formats"
|
||||
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
|
||||
msgid "System"
|
||||
msgstr "ಸಿಸ್ಟಂ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "ಮಾದರಿ"
|
||||
@ -1465,15 +1534,20 @@ msgstr "ಪ್ರಶಂಸಾಪತ್ರಗಳು"
|
||||
msgid "Text Color"
|
||||
msgstr "ಅಕ್ಷರದ ಬಣ್ಣ"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "ನೀವು ನಮೂದಿಸಿದ ಪಾಸ್ವರ್ಡ್ಗಳು ಹೊಂದಿಕೆಯಾಗುತ್ತಿಲ್ಲ."
|
||||
#: apps/client/src/pages/public/error.tsx:17
|
||||
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 ""
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "ನೀವು ನವೀಕರಿಸಲು ಬಯಸುವ ರೆಸ್ಯೂಮ್ ಲಾಕ್ ಆಗಿದೆ, ನೀವು ಅದರಲ್ಲಿ ಯಾವುದೇ ಬದಲಾವಣೆಗಳನ್ನು ಮಾಡಲು ಬಯಸಿದರೆ ದಯವಿಟ್ಟು ಅನ್ಲಾಕ್ ಮಾಡಿ."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1604,7 @@ msgstr "ವೀಕ್ಷಣೆಗಳು ಮತ್ತು ಡೌನ್ಲೋಡ
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "ಎರಡು ಅಂಶಗಳ ದೃಢೀಕರಣ"
|
||||
|
||||
@ -1552,11 +1626,12 @@ msgid "Type of Study"
|
||||
msgstr "ಅಧ್ಯಯನದ ಪ್ರಕಾರ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "ಮುದ್ರಣಕಲೆ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "ಲಿಂಕ್ಗಳನ್ನು ಅಂಡರ್ಲೈನ್ ಮಾಡಿ"
|
||||
|
||||
@ -1599,6 +1674,14 @@ msgstr "URL"
|
||||
msgid "URL must start with 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:57
|
||||
msgid "Use your backup code"
|
||||
@ -1651,7 +1734,7 @@ msgstr "ಆವೃತ್ತಿ 4"
|
||||
msgid "Views"
|
||||
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"
|
||||
msgstr "ಕಾಣುವ"
|
||||
|
||||
@ -1665,15 +1748,15 @@ msgstr "ನಿಮ್ಮ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ನೀವ
|
||||
|
||||
#: 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/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/experience.tsx:100
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:96
|
||||
msgid "Website"
|
||||
msgstr "ಜಾಲತಾಣ"
|
||||
|
||||
@ -1681,10 +1764,14 @@ msgstr "ಜಾಲತಾಣ"
|
||||
msgid "What's new in the latest version"
|
||||
msgstr "ಇತ್ತೀಚಿನ ಆವೃತ್ತಿಯಲ್ಲಿ ಹೊಸದೇನಿದೆ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
||||
#: apps/client/src/pages/public/error.tsx:26
|
||||
msgid "You are not authorized to access this page."
|
||||
msgstr ""
|
||||
|
||||
#: 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."
|
||||
msgstr "ಅಲ್ಪವಿರಾಮದಿಂದ ಬೇರ್ಪಡಿಸುವ ಮೂಲಕ ಅಥವಾ ಎಂಟರ್ ಒತ್ತುವ ಮೂಲಕ ನೀವು ಬಹು ಕೀವರ್ಡ್ಗಳನ್ನು ಸೇರಿಸಬಹುದು."
|
||||
|
||||
@ -1692,19 +1779,27 @@ msgstr "ಅಲ್ಪವಿರಾಮದಿಂದ ಬೇರ್ಪಡಿಸುವ
|
||||
msgid "You can also enter your username."
|
||||
msgstr "ನಿಮ್ಮ ಬಳಕೆದಾರಹೆಸರನ್ನು ಸಹ ನೀವು ನಮೂದಿಸಬಹುದು."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||
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."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||
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 ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
msgstr "ನೀವು ವಿಷಯವನ್ನು ರಚಿಸಲು ಸಹಾಯ ಮಾಡಲು OpenAI API ಅನ್ನು ಬಳಸಿಕೊಳ್ಳಬಹುದು ಅಥವಾ ನಿಮ್ಮ ಪುನರಾರಂಭವನ್ನು ರಚಿಸುವಾಗ ನಿಮ್ಮ ಬರವಣಿಗೆಯನ್ನು ಸುಧಾರಿಸಬಹುದು."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||
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 ""
|
||||
|
||||
#: 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."
|
||||
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."
|
||||
msgstr "<0>ನಿಮ್ಮ ಸ್ವಂತ OpenAI API ಕೀಲಿಯನ್ನು ಪಡೆಯುವ ಆಯ್ಕೆಯನ್ನು ನೀವು ಹೊಂದಿರುವಿರಿ</0>. ಈ ಕೀಲಿಯು ನಿಮಗೆ ಸರಿಹೊಂದುವಂತೆ API ಅನ್ನು ನಿಯಂತ್ರಿಸಲು ನಿಮಗೆ ಅಧಿಕಾರ ನೀಡುತ್ತದೆ. ಪರ್ಯಾಯವಾಗಿ, ನೀವು ರಿಯಾಕ್ಟಿವ್ ರೆಸ್ಯೂಮ್ನಲ್ಲಿ AI ವೈಶಿಷ್ಟ್ಯಗಳನ್ನು ಸಂಪೂರ್ಣವಾಗಿ ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲು ಬಯಸಿದರೆ, ನಿಮ್ಮ ಸೆಟ್ಟಿಂಗ್ಗಳಿಂದ ನೀವು ಕೀಲಿಯನ್ನು ಸರಳವಾಗಿ ತೆಗೆದುಹಾಕಬಹುದು."
|
||||
|
||||
@ -1721,7 +1816,7 @@ msgstr "ನಿಮಗೆ ಮೇಲ್ ಬಂದಿದೆ!"
|
||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||
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."
|
||||
msgstr "ನಿಮ್ಮ API ಕೀಯನ್ನು ಬ್ರೌಸರ್ನ ಸ್ಥಳೀಯ ಸಂಗ್ರಹಣೆಯಲ್ಲಿ ಸುರಕ್ಷಿತವಾಗಿ ಸಂಗ್ರಹಿಸಲಾಗಿದೆ ಮತ್ತು ಅವರ ಅಧಿಕೃತ SDK ಮೂಲಕ OpenAI ಗೆ ವಿನಂತಿಗಳನ್ನು ಮಾಡುವಾಗ ಮಾತ್ರ ಬಳಸಿಕೊಳ್ಳಲಾಗುತ್ತದೆ. OpenAI ನ ಸೇವೆಗಳೊಂದಿಗೆ ಸಂವಹನ ಮಾಡುವಾಗ ಹೊರತುಪಡಿಸಿ ನಿಮ್ಮ ಕೀ ಯಾವುದೇ ಬಾಹ್ಯ ಸರ್ವರ್ಗೆ ರವಾನೆಯಾಗುವುದಿಲ್ಲ ಎಂದು ಖಚಿತವಾಗಿರಿ."
|
||||
|
||||
@ -1733,7 +1828,7 @@ msgstr "ನಿಮ್ಮ ಇಮೇಲ್ ವಿಳಾಸವನ್ನು ಯಶಸ
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "ನಿಮ್ಮ OpenAI API ಕೀಯನ್ನು ಇನ್ನೂ ಹೊಂದಿಸಲಾಗಿಲ್ಲ. OpenAI ಇಂಟಿಗ್ರೇಶನ್ ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಲು ದಯವಿಟ್ಟು ನಿಮ್ಮ ಖಾತೆಯ ಸೆಟ್ಟಿಂಗ್ಗಳಿಗೆ ಹೋಗಿ."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "ನಿಮ್ಮ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ಯಶಸ್ವಿಯಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ko\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-11-04 14:22\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Korean\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
@ -30,27 +30,27 @@ msgstr "{templatesCount} 선택할 수 있는 이력서 템플릿"
|
||||
msgid "{value, plural, one {Column} other {Columns}}"
|
||||
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>"
|
||||
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>"
|
||||
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."
|
||||
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>"
|
||||
msgstr "<0>커뮤니티에서 반응형 이력서 문서를 작성하는 데 많은 시간을 투자했으며, 이 문서가 앱을 시작하는 데 도움이 될 것이라고 확신합니다.</0><1>또한 시작하는 데 도움이 되는 많은 예시와 완벽한 이력서를 만드는 데 도움이 될 수 있는 미처 몰랐던 기능도 많이 있습니다.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>현재 2단계 인증은 비활성화되어 있습니다.</0> 계정에 인증 앱을 추가하여 사용하도록 설정할 수 있습니다."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>2단계 인증이 활성화되었습니다.</0> 로그인할 때마다 코드를 입력하라는 메시지가 표시됩니다."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "계정"
|
||||
msgid "Add a custom field"
|
||||
msgstr "사용자 지정 필드 추가"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:203
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "새 항목 추가"
|
||||
@ -112,12 +112,12 @@ msgstr "새 항목 추가"
|
||||
msgid "Add a new item"
|
||||
msgstr "새 항목 추가"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:267
|
||||
msgid "Add a new section"
|
||||
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"
|
||||
msgstr "새 페이지 추가"
|
||||
|
||||
@ -133,6 +133,14 @@ msgstr "이미 계정이 있으신가요?"
|
||||
msgid "An error occurred while validating the file."
|
||||
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
|
||||
msgid "and many more..."
|
||||
msgstr "그 외 기타 등등!"
|
||||
@ -191,6 +199,18 @@ msgstr "{languagesCount} 언어 제공"
|
||||
msgid "Awarder"
|
||||
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/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
@ -209,16 +229,16 @@ msgstr "백업 코드"
|
||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||
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"
|
||||
msgstr "기본 URL"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:58
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr "기본 사항"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
msgid "Basics"
|
||||
msgstr "기본 사항"
|
||||
|
||||
@ -232,12 +252,12 @@ msgstr "둥근모서리"
|
||||
|
||||
#: apps/client/src/pages/public/page.tsx:93
|
||||
msgid "Built with"
|
||||
msgstr "Built with"
|
||||
msgstr "사용한 소프트웨어"
|
||||
|
||||
#: apps/client/src/components/copyright.tsx:27
|
||||
#: apps/client/src/pages/home/sections/contributors/index.tsx:20
|
||||
msgid "By the community, for the community."
|
||||
msgstr "By the community, for the community."
|
||||
msgstr "커뮤니티의, 커뮤니티를 위한, 커뮤니티에 의한."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||
@ -246,8 +266,8 @@ msgstr "By the community, for the community."
|
||||
msgid "Cancel"
|
||||
msgstr "취소"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
#: apps/client/src/components/ai-actions.tsx:107
|
||||
#: apps/client/src/components/ai-actions.tsx:110
|
||||
msgid "Casual"
|
||||
msgstr "캐주얼"
|
||||
|
||||
@ -255,12 +275,16 @@ msgstr "캐주얼"
|
||||
msgid "Center Artboard"
|
||||
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/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "비밀번호 변경"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
#: apps/client/src/components/ai-actions.tsx:101
|
||||
msgid "Change Tone"
|
||||
msgstr "톤 변경"
|
||||
|
||||
@ -288,6 +312,16 @@ msgstr "코드"
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr "코드는 정확히 6자리여야 합니다."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:272
|
||||
msgid "Collapse All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Collapse section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136
|
||||
msgid "Columns"
|
||||
msgstr "열"
|
||||
@ -296,21 +330,17 @@ msgstr "열"
|
||||
msgid "Company"
|
||||
msgstr "회사"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
#: apps/client/src/components/ai-actions.tsx:119
|
||||
#: apps/client/src/components/ai-actions.tsx:122
|
||||
msgid "Confident"
|
||||
msgstr "자신감"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "새 비밀번호 확인"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
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"
|
||||
msgstr "복사"
|
||||
|
||||
@ -351,7 +381,12 @@ msgstr "지금 만들기"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "샘플 이력서 만들기"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr "현재 비밀번호"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "사용자 정의 CSS"
|
||||
@ -360,7 +395,7 @@ msgstr "사용자 정의 CSS"
|
||||
msgid "Custom resume sections"
|
||||
msgstr "사용자 지정 이력서 섹션"
|
||||
|
||||
#: apps/client/src/stores/resume.ts:47
|
||||
#: apps/client/src/stores/resume.ts:53
|
||||
msgid "Custom Section"
|
||||
msgstr "사용자 지정 섹션"
|
||||
|
||||
@ -378,7 +413,7 @@ msgstr "위험 구역"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:87
|
||||
msgid "Dark"
|
||||
msgstr "Dark"
|
||||
msgstr "다크"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67
|
||||
@ -386,10 +421,10 @@ msgstr "Dark"
|
||||
msgid "Date"
|
||||
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/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
|
||||
msgid "Date or Date Range"
|
||||
msgstr "날짜 또는 날짜 범위"
|
||||
@ -407,11 +442,15 @@ msgstr "삭제"
|
||||
msgid "Delete Account"
|
||||
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/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/skills.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||
msgid "Description"
|
||||
msgstr "설명"
|
||||
|
||||
@ -423,18 +462,18 @@ msgstr "단일/다중 페이지 이력서 디자인"
|
||||
msgid "Disable"
|
||||
msgstr "비활성화"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "2FA 비활성화"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "폐기"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr "문서"
|
||||
|
||||
@ -442,7 +481,7 @@ msgstr "문서"
|
||||
msgid "Don't have an account?"
|
||||
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!"
|
||||
msgstr "어디서부터 시작해야 할지 모르시겠어요? 문서를 시작하세요!"
|
||||
|
||||
@ -450,7 +489,7 @@ msgstr "어디서부터 시작해야 할지 모르시겠어요? 문서를 시작
|
||||
msgid "Don't see your language? <0>Help translate the app.</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"
|
||||
msgstr "이 프로젝트에 기부하기"
|
||||
|
||||
@ -458,12 +497,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."
|
||||
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."
|
||||
msgstr "이력서 PDF를 다운로드하세요. 이 파일은 이력서를 인쇄하거나 채용 담당자에게 보내거나 취업 포털에 업로드하는 데 사용할 수 있습니다."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "PDF 다운로드"
|
||||
|
||||
@ -487,7 +525,7 @@ msgstr "기존 항목 복제"
|
||||
msgid "Duplicate an existing resume"
|
||||
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"
|
||||
msgstr "수정"
|
||||
|
||||
@ -498,12 +536,12 @@ msgstr "효과"
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:90
|
||||
#: apps/client/src/pages/auth/register/page.tsx:141
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181
|
||||
msgid "Email"
|
||||
msgstr "이메일"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "2단계 인증 활성화"
|
||||
|
||||
@ -531,6 +569,10 @@ msgstr "인증 앱에서 제공한 일회용 비밀번호를 아래에 입력합
|
||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||
msgstr "이메일 주소를 입력하시면 계정이 존재하는 경우 비밀번호를 재설정할 수 있는 링크를 보내드립니다."
|
||||
|
||||
#: apps/client/src/pages/public/error.tsx:46
|
||||
msgid "Error {statusCode}"
|
||||
msgstr "오류 {statusCode}"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||
msgid "Errors"
|
||||
msgstr "오류"
|
||||
@ -539,11 +581,22 @@ msgstr "오류"
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr "재정적으로 기여하지 않으셔도 GitHub 저장소에 별점을 주거나, 친구들에게 알리거나, Reactive Resume가 어떻게 도움이 되었는지 메시지로 알려주시면 더욱 발전 할 수 있습니다. 귀하의 피드백과 지원은 언제나 환영이며 많은 감사를 드립니다!"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:271
|
||||
msgid "Expand All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Expand section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "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 "Reactive Resume 에서 사용할 수 있는 템플릿을 살펴보고 이 템플릿으로 만든 이력서를 확인하세요. 다음 이력서를 작성할 때 참고할 수 있는 예시로도 사용할 수 있습니다."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "내보내기"
|
||||
@ -564,19 +617,19 @@ msgstr "마지막으로,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "맞춤법 및 문법 수정"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "글꼴"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "글자 크기"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "글꼴 하위 집합"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "글꼴 변형"
|
||||
|
||||
@ -584,7 +637,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."
|
||||
msgstr "예를 들어, 이력서를 보낸 회사에 대한 정보나 직무 설명에 대한 링크를 여기에 기록할 수 있습니다."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||
msgid "Forget"
|
||||
msgstr "잊어버림"
|
||||
|
||||
@ -601,7 +654,7 @@ msgstr "비밀번호를 잊으셨나요?"
|
||||
msgid "Format"
|
||||
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?"
|
||||
msgstr "버그를 발견했거나 새로운 기능에 대한 아이디어가 있으신가요?"
|
||||
|
||||
@ -609,12 +662,12 @@ msgstr "버그를 발견했거나 새로운 기능에 대한 아이디어가 있
|
||||
msgid "Free, forever"
|
||||
msgstr "영원히 무료"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:121
|
||||
#: apps/client/src/components/ai-actions.tsx:124
|
||||
#: apps/client/src/components/ai-actions.tsx:125
|
||||
#: apps/client/src/components/ai-actions.tsx:128
|
||||
msgid "Friendly"
|
||||
msgstr "친절함"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:56
|
||||
msgid "Full Name"
|
||||
msgstr "전체 이름"
|
||||
|
||||
@ -643,6 +696,10 @@ msgstr "기존 이력서에 새 이름을 부여하세요."
|
||||
msgid "Go to Dashboard"
|
||||
msgstr "대시보드로 이동"
|
||||
|
||||
#: apps/client/src/pages/public/error.tsx:55
|
||||
msgid "Go to home"
|
||||
msgstr "홈으로 이동"
|
||||
|
||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||
msgid "Google"
|
||||
msgstr "Google"
|
||||
@ -651,11 +708,11 @@ msgstr "Google"
|
||||
msgid "Grayscale"
|
||||
msgstr "그레이 스케일"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||
msgid "Grid"
|
||||
msgstr "그리드"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:70
|
||||
msgid "Headline"
|
||||
msgstr "헤드라인"
|
||||
|
||||
@ -668,7 +725,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr "여기에서 프로필을 업데이트하여 사용자 환경을 맞춤 설정하고 개인화할 수 있습니다."
|
||||
|
||||
#: 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
|
||||
msgid "Hidden"
|
||||
msgstr "숨겨진"
|
||||
@ -677,7 +734,7 @@ msgstr "숨겨진"
|
||||
msgid "Hide"
|
||||
msgstr "숨기기"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "아이콘 숨기기"
|
||||
|
||||
@ -734,7 +791,7 @@ msgstr "글쓰기 향상"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "이 QR 코드를 스캔할 수 없는 경우, 이 링크를 복사하여 인증 앱에 붙여넣을 수도 있습니다."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "이 섹션에서는 비밀번호를 변경하고 2단계 인증을 활성화/비활성화할 수 있습니다."
|
||||
|
||||
@ -743,7 +800,8 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "이 섹션에서는 계정 및 사용자와 관련된 모든 데이터를 삭제할 수 있지만, <0>이 작업은 되돌릴 수</0> 없다는 점에 유의하세요."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx: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"
|
||||
msgstr "정보"
|
||||
|
||||
@ -802,10 +860,10 @@ msgstr "john.doe@example.com"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||
msgid "Keywords"
|
||||
msgstr "키워드"
|
||||
|
||||
@ -824,7 +882,8 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "마지막 업데이트 {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx: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"
|
||||
msgstr "레이아웃"
|
||||
|
||||
@ -837,7 +896,7 @@ msgid "Letter"
|
||||
msgstr "편지"
|
||||
|
||||
#: 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"
|
||||
msgstr "레벨"
|
||||
|
||||
@ -853,7 +912,7 @@ msgstr "빛"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "밝거나 어두운 테마"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "선 높이"
|
||||
|
||||
@ -862,14 +921,14 @@ msgstr "선 높이"
|
||||
msgid "LinkedIn, JSON Resume, etc."
|
||||
msgstr "LinkedIn, JSON 이력서 등"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||
msgid "List"
|
||||
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/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:120
|
||||
msgid "Location"
|
||||
msgstr "위치"
|
||||
|
||||
@ -897,7 +956,7 @@ msgstr "로그아웃"
|
||||
msgid "Lost your device?"
|
||||
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"
|
||||
msgstr "메인"
|
||||
|
||||
@ -914,7 +973,7 @@ msgstr "2023년 3월"
|
||||
|
||||
#: 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/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
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "2023년 3월 - 현재"
|
||||
@ -923,7 +982,7 @@ msgstr "2023년 3월 - 현재"
|
||||
msgid "Margin"
|
||||
msgstr "마진"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||
msgid "Max Tokens"
|
||||
msgstr "최대 토큰"
|
||||
|
||||
@ -931,18 +990,18 @@ msgstr "최대 토큰"
|
||||
msgid "MIT License"
|
||||
msgstr "MIT 라이선스"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||
msgid "Model"
|
||||
msgstr "모델"
|
||||
|
||||
#: 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/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: 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/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/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/dashboard/settings/_sections/account.tsx:153
|
||||
msgid "Name"
|
||||
@ -957,7 +1016,7 @@ msgstr "이름"
|
||||
msgid "Network"
|
||||
msgstr "네트워크"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "새 비밀번호"
|
||||
|
||||
@ -974,6 +1033,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "참고: 이렇게 하면 계정의 보안이 약해집니다."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "참고"
|
||||
@ -1009,16 +1069,16 @@ msgstr "OpenAI가 텍스트에 대한 선택 항목을 반환하지 않았습니
|
||||
msgid "OpenAI Integration"
|
||||
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"
|
||||
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/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "옵션"
|
||||
|
||||
@ -1032,22 +1092,23 @@ msgid "Organization"
|
||||
msgstr "조직"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "페이지"
|
||||
|
||||
#: 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}"
|
||||
msgstr "페이지 {pageNumber}"
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "비밀번호"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||
msgid "PDF"
|
||||
msgstr "PDF"
|
||||
|
||||
@ -1055,7 +1116,7 @@ msgstr "PDF"
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr "각 이력서에 대한 개인 메모"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:108
|
||||
msgid "Phone"
|
||||
msgstr "전화"
|
||||
|
||||
@ -1109,14 +1170,12 @@ msgstr "<0>간단한 아이콘으로</0> 구동"
|
||||
msgid "Primary Color"
|
||||
msgstr "기본 색상"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||
msgid "Privacy Policy"
|
||||
msgstr "개인정보 보호정책"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
#: apps/client/src/components/ai-actions.tsx:113
|
||||
#: apps/client/src/components/ai-actions.tsx:116
|
||||
msgid "Professional"
|
||||
msgstr "전문가"
|
||||
|
||||
@ -1132,7 +1191,7 @@ msgstr "공개"
|
||||
msgid "Publisher"
|
||||
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"
|
||||
msgstr "문제 제기"
|
||||
|
||||
@ -1144,11 +1203,10 @@ msgstr "문제 제기"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1175,12 +1233,12 @@ msgstr "리액티브 이력서는 활기찬 커뮤니티 덕분에 번창하고
|
||||
msgid "Redo"
|
||||
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
|
||||
msgid "Remove"
|
||||
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"
|
||||
msgstr "페이지 제거"
|
||||
|
||||
@ -1199,7 +1257,7 @@ msgstr "이메일 확인 링크 다시 보내기"
|
||||
msgid "Reset"
|
||||
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"
|
||||
msgstr "레이아웃 재설정"
|
||||
|
||||
@ -1213,8 +1271,8 @@ msgid "Reset Zoom"
|
||||
msgstr "줌 초기화"
|
||||
|
||||
#: 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:37
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||
msgid "Resumes"
|
||||
msgstr "이력서"
|
||||
|
||||
@ -1237,11 +1295,11 @@ msgstr "둥근"
|
||||
msgid "Save Changes"
|
||||
msgstr "변경 사항 저장"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||
msgid "Save Locally"
|
||||
msgstr "로컬에 저장"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||
msgid "Saved"
|
||||
msgstr "저장됨"
|
||||
|
||||
@ -1262,15 +1320,15 @@ msgstr "팬으로 스크롤"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "줌으로 스크롤"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "글꼴 패밀리 검색"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "글꼴 하위 집합 검색"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "글꼴 변형 검색"
|
||||
|
||||
@ -1282,7 +1340,7 @@ msgstr "언어 검색"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "2단계 인증으로 보안 유지"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "보안"
|
||||
|
||||
@ -1294,7 +1352,7 @@ msgstr "Docker를 사용한 셀프 호스트"
|
||||
msgid "Send Email"
|
||||
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"
|
||||
msgstr "메시지 보내기"
|
||||
|
||||
@ -1314,6 +1372,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "계정에 2단계 인증 설정하기"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "공유"
|
||||
@ -1330,7 +1389,7 @@ msgstr "나누기 줄 표시"
|
||||
msgid "Show Page Numbers"
|
||||
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"
|
||||
msgstr "사이드바"
|
||||
|
||||
@ -1408,6 +1467,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "이름을 지정하여 이력서 작성을 시작하세요."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "통계"
|
||||
@ -1422,17 +1482,17 @@ msgstr "백업 코드를 안전하게 저장"
|
||||
|
||||
#: 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/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/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/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "Summary"
|
||||
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!"
|
||||
msgstr "가능한 금액을 기부하여 앱을 지원하세요!"
|
||||
|
||||
@ -1444,11 +1504,20 @@ msgstr "반응형 이력서 지원"
|
||||
msgid "Supports A4/Letter page formats"
|
||||
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
|
||||
msgid "System"
|
||||
msgstr "시스템"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "템플릿"
|
||||
@ -1465,15 +1534,20 @@ msgstr "사용 후기"
|
||||
msgid "Text Color"
|
||||
msgstr "텍스트 색상"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "입력한 비밀번호가 일치하지 않습니다."
|
||||
#: apps/client/src/pages/public/error.tsx:17
|
||||
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 "요청이 유효하지 않습니다."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "업데이트하려는 이력서가 잠겨 있으므로 변경하려면 잠금을 해제하세요."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1604,7 @@ msgstr "조회수 및 다운로드 추적"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "2단계 인증"
|
||||
|
||||
@ -1552,11 +1626,12 @@ msgid "Type of Study"
|
||||
msgstr "학습 유형"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "타이포그래피"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "밑줄 링크"
|
||||
|
||||
@ -1599,6 +1674,14 @@ msgstr "URL"
|
||||
msgid "URL must start with 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:57
|
||||
msgid "Use your backup code"
|
||||
@ -1651,7 +1734,7 @@ msgstr "버전 4"
|
||||
msgid "Views"
|
||||
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"
|
||||
msgstr "가시성"
|
||||
|
||||
@ -1665,15 +1748,15 @@ msgstr "비밀번호를 잊어버린 경우 비밀번호 재설정 링크를 보
|
||||
|
||||
#: 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/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/experience.tsx:100
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:96
|
||||
msgid "Website"
|
||||
msgstr "웹사이트"
|
||||
|
||||
@ -1681,10 +1764,14 @@ msgstr "웹사이트"
|
||||
msgid "What's new in the latest version"
|
||||
msgstr "최신 버전의 새로운 기능"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
||||
#: apps/client/src/pages/public/error.tsx:26
|
||||
msgid "You are not authorized to access this page."
|
||||
msgstr "이 페이지에 접근할 권한이 없습니다."
|
||||
|
||||
#: 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."
|
||||
msgstr "쉼표로 구분하거나 Enter 키를 눌러 여러 개의 키워드를 추가할 수 있습니다."
|
||||
|
||||
@ -1692,19 +1779,27 @@ msgstr "쉼표로 구분하거나 Enter 키를 눌러 여러 개의 키워드를
|
||||
msgid "You can also enter your username."
|
||||
msgstr "사용자 아이디를 입력할 수도 있습니다."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||
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."
|
||||
msgstr "API 키를 `sk-1234567890abcdef`로 설정하고 기본 URL을 `http://localhost:11434/v1`과 같은 Ollama URL로 설정하여 Ollama와 통합할 수도 있습니다. 원하는 대로 모델을 선택하고 최대 토큰을 설정할 수도 있습니다."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||
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 "<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
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
msgstr "OpenAI API를 사용하여 콘텐츠를 생성하거나 이력서를 작성하는 동안 글쓰기를 개선할 수 있습니다."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||
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 키 <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
|
||||
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 "공개 공유를 활성화하여 이력서가 조회된 횟수 또는 이력서를 다운로드한 사람의 수를 추적할 수 있습니다."
|
||||
|
||||
#: 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."
|
||||
msgstr "자신만의 <0>OpenAI API 키를 얻을</0> 수 있는 옵션이 있습니다. 이 키를 사용하면 원하는 대로 API를 활용할 수 있습니다. 또는 반응형 이력서에서 AI 기능을 완전히 비활성화하려면 설정에서 키를 제거하기만 하면 됩니다."
|
||||
|
||||
@ -1721,7 +1816,7 @@ msgstr "메일이 도착했습니다!"
|
||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||
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."
|
||||
msgstr "API 키는 브라우저의 로컬 저장소에 안전하게 저장되며 공식 SDK를 통해 OpenAI에 요청할 때만 활용됩니다. OpenAI의 서비스와 상호작용할 때를 제외하고는 키가 외부 서버로 전송되지 않으니 안심하세요."
|
||||
|
||||
@ -1733,7 +1828,7 @@ msgstr "이메일 주소가 성공적으로 확인되었습니다."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "OpenAI API 키가 아직 설정되지 않았습니다. 계정 설정으로 이동하여 OpenAI 연동을 활성화하세요."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "비밀번호가 성공적으로 업데이트되었습니다."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: lt\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-11-04 14:22\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Lithuanian\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && (n%100>19 || n%100<11) ? 0 : (n%10>=2 && n%10<=9) && (n%100>19 || n%100<11) ? 1 : n%1!=0 ? 2: 3);\n"
|
||||
@ -30,27 +30,27 @@ msgstr "{templatesCount} CV šablonai, iš kurių galite rinktis"
|
||||
msgid "{value, plural, one {Column} other {Columns}}"
|
||||
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>"
|
||||
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>"
|
||||
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."
|
||||
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>"
|
||||
msgstr "<0>Bendruomenė daug laiko skyrė \"Reactive Resume\" dokumentacijai rašyti ir esu tikras, kad ji padės jums pradėti dirbti su programa.</0><1>Taip pat yra daug pavyzdžių, kurie padės jums pradėti dirbti, ir funkcijų, apie kurias galbūt nežinojote ir kurios gali padėti sukurti tobulą gyvenimo aprašymą.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>Šiuo metu dviejų veiksnių autentifikavimas yra išjungtas.</0> Jį galite įjungti į savo paskyrą įtraukę autentifikatoriaus programėlę."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>Įjungtas dviejų veiksnių autentifikavimas.</0> Kiekvieną kartą prisijungdami turėsite įvesti kodą."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Paskyra"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Pridėti pasirinktinį lauką"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:203
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Pridėti naują elementą"
|
||||
@ -112,12 +112,12 @@ msgstr "Pridėti naują elementą"
|
||||
msgid "Add a new item"
|
||||
msgstr "Pridėti naują elementą"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:267
|
||||
msgid "Add a new section"
|
||||
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"
|
||||
msgstr "Pridėti naują puslapį"
|
||||
|
||||
@ -133,6 +133,14 @@ msgstr "Jau turite paskyrą?"
|
||||
msgid "An error occurred while validating the file."
|
||||
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
|
||||
msgid "and many more..."
|
||||
msgstr "ir dar daugiau..."
|
||||
@ -191,6 +199,18 @@ msgstr "Galima rasti {languagesCount} kalbomis"
|
||||
msgid "Awarder"
|
||||
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/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
@ -209,16 +229,16 @@ msgstr "Atsarginis kodas"
|
||||
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ų."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||
msgid "Base URL"
|
||||
msgstr "Bazinis URL adresas"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:58
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr "Pagrindai"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
msgid "Basics"
|
||||
msgstr "Pagrindai"
|
||||
|
||||
@ -246,8 +266,8 @@ msgstr "Bendruomenės ir bendruomenei."
|
||||
msgid "Cancel"
|
||||
msgstr "Atšaukti"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
#: apps/client/src/components/ai-actions.tsx:107
|
||||
#: apps/client/src/components/ai-actions.tsx:110
|
||||
msgid "Casual"
|
||||
msgstr "Atsitiktinis"
|
||||
|
||||
@ -255,12 +275,16 @@ msgstr "Atsitiktinis"
|
||||
msgid "Center Artboard"
|
||||
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/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Keisti slaptažodį"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
#: apps/client/src/components/ai-actions.tsx:101
|
||||
msgid "Change Tone"
|
||||
msgstr "Keisti toną"
|
||||
|
||||
@ -288,6 +312,16 @@ msgstr "Kodas"
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr "Kodas turi būti lygiai 6 skaitmenų ilgio."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:272
|
||||
msgid "Collapse All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Collapse section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136
|
||||
msgid "Columns"
|
||||
msgstr "Stulpeliai"
|
||||
@ -296,21 +330,17 @@ msgstr "Stulpeliai"
|
||||
msgid "Company"
|
||||
msgstr "Įmonė"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
#: apps/client/src/components/ai-actions.tsx:119
|
||||
#: apps/client/src/components/ai-actions.tsx:122
|
||||
msgid "Confident"
|
||||
msgstr "Pasitikintis savimi"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Patvirtinti naują slaptažodį"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
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"
|
||||
msgstr "Kopijuoti"
|
||||
|
||||
@ -351,7 +381,12 @@ msgstr "Sukurkite jį dabar"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Sukurti pavyzdinį gyvenimo aprašymą"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr "Dabartinis slaptažodis"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "Pasirinktinis CSS"
|
||||
@ -360,7 +395,7 @@ msgstr "Pasirinktinis CSS"
|
||||
msgid "Custom resume sections"
|
||||
msgstr "Pasirinktiniai gyvenimo aprašymo skyriai"
|
||||
|
||||
#: apps/client/src/stores/resume.ts:47
|
||||
#: apps/client/src/stores/resume.ts:53
|
||||
msgid "Custom Section"
|
||||
msgstr "Pasirinktinis skyrius"
|
||||
|
||||
@ -386,10 +421,10 @@ msgstr "Tamsus"
|
||||
msgid "Date"
|
||||
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/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
|
||||
msgid "Date or Date Range"
|
||||
msgstr "Data arba datos intervalas"
|
||||
@ -407,11 +442,15 @@ msgstr "Ištrinti"
|
||||
msgid "Delete Account"
|
||||
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/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/skills.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||
msgid "Description"
|
||||
msgstr "Aprašymas"
|
||||
|
||||
@ -423,18 +462,18 @@ msgstr "Sukurkite vieno / kelių puslapių gyvenimo aprašymus"
|
||||
msgid "Disable"
|
||||
msgstr "Išjungti"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Išjungti 2FA"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Išmesti"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentacija"
|
||||
|
||||
@ -442,7 +481,7 @@ msgstr "Dokumentacija"
|
||||
msgid "Don't have an account?"
|
||||
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!"
|
||||
msgstr "Nežinote nuo ko pradėti? Paspauskite dokumentus!"
|
||||
|
||||
@ -450,7 +489,7 @@ msgstr "Nežinote nuo ko pradėti? Paspauskite dokumentus!"
|
||||
msgid "Don't see your language? <0>Help translate the app.</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"
|
||||
msgstr "Paaukoti \"Reactive Resume\""
|
||||
|
||||
@ -458,12 +497,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."
|
||||
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."
|
||||
msgstr "Atsisiųskite savo gyvenimo aprašymą PDF formatu. Šis failas gali būti naudojamas atspausdinti savo gyvenimo aprašymą, išsiųsti jį įdarbintojams arba įkelti į darbo portalus."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Atsisiųsti PDF"
|
||||
|
||||
@ -487,7 +525,7 @@ msgstr "Dubliuoti esamą elementą"
|
||||
msgid "Duplicate an existing resume"
|
||||
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"
|
||||
msgstr "Redaguoti"
|
||||
|
||||
@ -498,12 +536,12 @@ msgstr "Efektai"
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:90
|
||||
#: apps/client/src/pages/auth/register/page.tsx:141
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181
|
||||
msgid "Email"
|
||||
msgstr "El. paštas"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Įjungti 2FA"
|
||||
|
||||
@ -531,6 +569,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."
|
||||
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
|
||||
msgid "Errors"
|
||||
msgstr "Klaidos"
|
||||
@ -539,11 +581,22 @@ msgstr "Klaidos"
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr "Net jei negalite prisidėti finansiškai, vis tiek galite kažką pakeisti, suteikdami \"GitHub\" saugyklai žvaigždutę, paskleisdami žinią draugams arba parašydami trumpą žinutę ir pranešdami, kaip \"Reactive Resume\" jums padėjo. Jūsų atsiliepimai ir parama visada laukiami ir labai vertinami!"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:271
|
||||
msgid "Expand All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Expand section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "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 "Išnagrinėkite \"Reactive Resume\" esančius šablonus ir peržiūrėkite pagal juos sukurtus gyvenimo aprašymus. Jie taip pat gali būti pavyzdžiai, kuriais vadovaudamiesi galėsite kurti kitą savo gyvenimo aprašymą."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Eksportuoti"
|
||||
@ -564,19 +617,19 @@ msgstr "Pagaliau,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Taisyti rašybą ir gramatiką"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Šriftų šeima"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Šrifto dydis"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Šriftų pogrupis"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Šrifto variantai"
|
||||
|
||||
@ -584,7 +637,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."
|
||||
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"
|
||||
msgstr "Pamirškite"
|
||||
|
||||
@ -601,7 +654,7 @@ msgstr "Pamiršote slaptažodį?"
|
||||
msgid "Format"
|
||||
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?"
|
||||
msgstr "Radote klaidą arba turite idėją naujai funkcijai?"
|
||||
|
||||
@ -609,12 +662,12 @@ msgstr "Radote klaidą arba turite idėją naujai funkcijai?"
|
||||
msgid "Free, forever"
|
||||
msgstr "Nemokamai, visam laikui"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:121
|
||||
#: apps/client/src/components/ai-actions.tsx:124
|
||||
#: apps/client/src/components/ai-actions.tsx:125
|
||||
#: apps/client/src/components/ai-actions.tsx:128
|
||||
msgid "Friendly"
|
||||
msgstr "Draugiškas"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:56
|
||||
msgid "Full Name"
|
||||
msgstr "Pilnas vardas"
|
||||
|
||||
@ -643,6 +696,10 @@ msgstr "Suteikite senam gyvenimo aprašymui naują pavadinimą."
|
||||
msgid "Go to Dashboard"
|
||||
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
|
||||
msgid "Google"
|
||||
msgstr "Google"
|
||||
@ -651,11 +708,11 @@ msgstr "Google"
|
||||
msgid "Grayscale"
|
||||
msgstr "Pilka skalė"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||
msgid "Grid"
|
||||
msgstr "Tinklelis"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:70
|
||||
msgid "Headline"
|
||||
msgstr "Antraštė"
|
||||
|
||||
@ -668,7 +725,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į."
|
||||
|
||||
#: 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
|
||||
msgid "Hidden"
|
||||
msgstr "Paslėptas"
|
||||
@ -677,7 +734,7 @@ msgstr "Paslėptas"
|
||||
msgid "Hide"
|
||||
msgstr "Paslėpti"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Paslėpti piktogramas"
|
||||
|
||||
@ -734,7 +791,7 @@ msgstr "Pagerinti rašymą"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Jei negalite nuskaityti šio QR kodo, taip pat galite nukopijuoti ir įklijuoti šią nuorodą į autentifikatoriaus programą."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "Šiame skyriuje galite pakeisti slaptažodį ir įjungti / išjungti dviejų veiksnių autentifikavimą."
|
||||
|
||||
@ -743,7 +800,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>."
|
||||
|
||||
#: 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"
|
||||
msgstr "Informacija"
|
||||
|
||||
@ -802,10 +860,10 @@ msgstr "jonas.jonaitis@pavyzdys.com"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||
msgid "Keywords"
|
||||
msgstr "Raktiniai žodžiai"
|
||||
|
||||
@ -824,7 +882,8 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Paskutinį kartą atnaujinta {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx: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"
|
||||
msgstr "Išdėstymas"
|
||||
|
||||
@ -837,7 +896,7 @@ msgid "Letter"
|
||||
msgstr "Laiškas"
|
||||
|
||||
#: 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"
|
||||
msgstr "Lygis"
|
||||
|
||||
@ -853,7 +912,7 @@ msgstr "Šviesa"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Šviesi arba tamsi tema"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Linijos aukštis"
|
||||
|
||||
@ -862,14 +921,14 @@ msgstr "Linijos aukštis"
|
||||
msgid "LinkedIn, JSON Resume, etc."
|
||||
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"
|
||||
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/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:120
|
||||
msgid "Location"
|
||||
msgstr "Vieta"
|
||||
|
||||
@ -897,7 +956,7 @@ msgstr "Atsijungti"
|
||||
msgid "Lost your device?"
|
||||
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"
|
||||
msgstr "Pagrindinis"
|
||||
|
||||
@ -914,7 +973,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/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
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "2023 m. kovo mėn. - dabartis"
|
||||
@ -923,7 +982,7 @@ msgstr "2023 m. kovo mėn. - dabartis"
|
||||
msgid "Margin"
|
||||
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"
|
||||
msgstr "Maksimalus žetonų skaičius"
|
||||
|
||||
@ -931,18 +990,18 @@ msgstr "Maksimalus žetonų skaičius"
|
||||
msgid "MIT License"
|
||||
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"
|
||||
msgstr "Modelis"
|
||||
|
||||
#: 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/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: 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/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/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/dashboard/settings/_sections/account.tsx:153
|
||||
msgid "Name"
|
||||
@ -957,7 +1016,7 @@ msgstr "Vardas"
|
||||
msgid "Network"
|
||||
msgstr "Tinklas"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Naujas slaptažodis"
|
||||
|
||||
@ -974,6 +1033,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Pastaba: dėl to jūsų paskyra taps mažiau saugi."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Pastabos"
|
||||
@ -1009,16 +1069,16 @@ msgstr "\"OpenAI\" nepateikė jokių jūsų teksto pasirinkimų."
|
||||
msgid "OpenAI Integration"
|
||||
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"
|
||||
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/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Parinktys"
|
||||
|
||||
@ -1032,22 +1092,23 @@ msgid "Organization"
|
||||
msgstr "Organizacija"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Puslapis"
|
||||
|
||||
#: 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}"
|
||||
msgstr "Puslapis {pageNumber}"
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Slaptažodis"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||
msgid "PDF"
|
||||
msgstr "PDF"
|
||||
|
||||
@ -1055,7 +1116,7 @@ msgstr "PDF"
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr "Asmeninės pastabos prie kiekvieno gyvenimo aprašymo"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:108
|
||||
msgid "Phone"
|
||||
msgstr "Telefonas"
|
||||
|
||||
@ -1109,14 +1170,12 @@ msgstr "Sukurta naudojant <0>Simple Icons</0>"
|
||||
msgid "Primary Color"
|
||||
msgstr "Pagrindinė spalva"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Privatumo politika"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
#: apps/client/src/components/ai-actions.tsx:113
|
||||
#: apps/client/src/components/ai-actions.tsx:116
|
||||
msgid "Professional"
|
||||
msgstr "Profesionalus"
|
||||
|
||||
@ -1132,7 +1191,7 @@ msgstr "Viešas"
|
||||
msgid "Publisher"
|
||||
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"
|
||||
msgstr "Iškelti problemą"
|
||||
|
||||
@ -1144,11 +1203,10 @@ msgstr "Iškelti problemą"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1175,12 +1233,12 @@ msgstr "\"Reactive Resume\" klesti dėl savo gyvybingos bendruomenės. Šis proj
|
||||
msgid "Redo"
|
||||
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
|
||||
msgid "Remove"
|
||||
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"
|
||||
msgstr "Pašalinti puslapį"
|
||||
|
||||
@ -1199,7 +1257,7 @@ msgstr "Pakartotinis el. pašto patvirtinimo nuorodos siuntimas"
|
||||
msgid "Reset"
|
||||
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"
|
||||
msgstr "Iš naujo nustatyti išdėstymą"
|
||||
|
||||
@ -1213,8 +1271,8 @@ msgid "Reset Zoom"
|
||||
msgstr "Iš naujo nustatyti priartinimą"
|
||||
|
||||
#: 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:37
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||
msgid "Resumes"
|
||||
msgstr "Gyvenimo aprašymai"
|
||||
|
||||
@ -1237,11 +1295,11 @@ msgstr "Suapvalintas"
|
||||
msgid "Save Changes"
|
||||
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"
|
||||
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"
|
||||
msgstr "Išsaugota"
|
||||
|
||||
@ -1262,15 +1320,15 @@ msgstr "Slinkite prie Pan"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Slinkti į priartinimą"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Šriftų šeimos paieška"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Šrifto poaibio paieška"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Šrifto varianto paieška"
|
||||
|
||||
@ -1282,7 +1340,7 @@ msgstr "Kalbos paieška"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Apsaugokite naudodami dviejų veiksnių autentifikavimą"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Apsauga"
|
||||
|
||||
@ -1294,7 +1352,7 @@ msgstr "Savarankiškas talpinimas naudojant Docker"
|
||||
msgid "Send Email"
|
||||
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"
|
||||
msgstr "Siųskite man žinutę"
|
||||
|
||||
@ -1314,6 +1372,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Nustatykite dviejų veiksnių autentifikavimą savo paskyroje"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Dalijimasis"
|
||||
@ -1330,7 +1389,7 @@ msgstr "Rodyti lūžio liniją"
|
||||
msgid "Show Page Numbers"
|
||||
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"
|
||||
msgstr "Šoninė juosta"
|
||||
|
||||
@ -1408,6 +1467,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Pradėkite kurti savo gyvenimo aprašymą suteikdami jam pavadinimą."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Statistika"
|
||||
@ -1422,17 +1482,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/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/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/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "Summary"
|
||||
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!"
|
||||
msgstr "Palaikykite programėlę paaukodami tai, ką galite!"
|
||||
|
||||
@ -1444,11 +1504,20 @@ msgstr "\"Reactive Resume\" palaikymas"
|
||||
msgid "Supports A4/Letter page formats"
|
||||
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
|
||||
msgid "System"
|
||||
msgstr "Sistema"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Šablonas"
|
||||
@ -1465,15 +1534,20 @@ msgstr "Atsiliepimai"
|
||||
msgid "Text Color"
|
||||
msgstr "Teksto spalva"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "Įvesti slaptažodžiai nesutampa."
|
||||
#: apps/client/src/pages/public/error.tsx:17
|
||||
msgid "The page you're looking for doesn't exist."
|
||||
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
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "Gyvenimo aprašymas, kurį norite atnaujinti, yra užrakintas, jei norite jį keisti, atrakinkite jį."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1604,7 @@ msgstr "Stebėkite peržiūras ir atsisiuntimus"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Dviejų veiksnių autentiškumo patvirtinimas"
|
||||
|
||||
@ -1552,11 +1626,12 @@ msgid "Type of Study"
|
||||
msgstr "Studijų tipas"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Tipografija"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Pabraukite nuorodas"
|
||||
|
||||
@ -1599,6 +1674,14 @@ msgstr "URL"
|
||||
msgid "URL must start with 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:57
|
||||
msgid "Use your backup code"
|
||||
@ -1651,7 +1734,7 @@ msgstr "4 versija"
|
||||
msgid "Views"
|
||||
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"
|
||||
msgstr "Matomas"
|
||||
|
||||
@ -1665,15 +1748,15 @@ 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/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/experience.tsx:100
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:96
|
||||
msgid "Website"
|
||||
msgstr "Tinklalapis"
|
||||
|
||||
@ -1681,10 +1764,14 @@ msgstr "Tinklalapis"
|
||||
msgid "What's new in the latest version"
|
||||
msgstr "Kas naujo naujausioje versijoje"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
||||
#: apps/client/src/pages/public/error.tsx:26
|
||||
msgid "You are not authorized to access this page."
|
||||
msgstr "Jums nesuteikta teisė pasiekti šį puslapį."
|
||||
|
||||
#: 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."
|
||||
msgstr "Galite pridėti kelis raktinius žodžius, atskirdami juos kableliu arba paspausdami enter."
|
||||
|
||||
@ -1692,19 +1779,27 @@ msgstr "Galite pridėti kelis raktinius žodžius, atskirdami juos kableliu arba
|
||||
msgid "You can also enter your username."
|
||||
msgstr "Taip pat galite įvesti savo vartotojo vardą."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||
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."
|
||||
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."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||
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 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
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
msgstr "Galite naudoti OpenAI API, kad padėtumėte generuoti turinį arba patobulinti savo rašymą kurdami savo CV."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||
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 "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
|
||||
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ė."
|
||||
|
||||
#: 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."
|
||||
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 +1816,7 @@ msgstr "Gavote laišką!"
|
||||
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!"
|
||||
|
||||
#: 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."
|
||||
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 +1828,7 @@ msgstr "Jūsų el. pašto adresas buvo sėkmingai patvirtintas."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Jūsų \"OpenAI\" API raktas dar nenustatytas. Eikite į savo paskyros nustatymus ir įjunkite \"OpenAI\" integraciją."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Jūsų slaptažodis sėkmingai atnaujintas."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: lv\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-11-04 14:22\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Latvian\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n"
|
||||
@ -30,27 +30,27 @@ msgstr "{templatesCount} CV veidnes, no kurām izvēlēties"
|
||||
msgid "{value, plural, one {Column} other {Columns}}"
|
||||
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>"
|
||||
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>"
|
||||
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."
|
||||
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>"
|
||||
msgstr "<0>Kopiena ir pavadījusi daudz laika, rakstot Reactive Resume dokumentāciju, un esmu pārliecināts, ka tā palīdzēs jums sākt strādāt ar šo programmu.</0><1>Tur ir arī daudz piemēru, kas palīdzēs jums sākt darbu, un funkcijas, par kurām jūs, iespējams, nezināt un kuras varētu palīdzēt jums izveidot perfektu CV.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>Divu faktoru autentifikācija pašlaik ir atspējota.</0> To var aktivizēt, pievienojot savam kontam autentifikatora lietotni."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>Ir iespējota divu faktoru autentifikācija.</0> Katru reizi, kad pierakstīsieties, jums būs jāievada kods."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Konts"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Pielāgotā lauka pievienošana"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:203
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Pievienot jaunu elementu"
|
||||
@ -112,12 +112,12 @@ msgstr "Pievienot jaunu elementu"
|
||||
msgid "Add a new item"
|
||||
msgstr "Pievienot jaunu elementu"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:267
|
||||
msgid "Add a new section"
|
||||
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"
|
||||
msgstr "Pievienot jaunu lapu"
|
||||
|
||||
@ -133,6 +133,14 @@ msgstr "Jums jau ir konts?"
|
||||
msgid "An error occurred while validating the file."
|
||||
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
|
||||
msgid "and many more..."
|
||||
msgstr "un daudz ko citu..."
|
||||
@ -191,6 +199,18 @@ msgstr "Pieejams {languagesCount} valodās"
|
||||
msgid "Awarder"
|
||||
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/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
@ -209,16 +229,16 @@ msgstr "Rezerves kopijas kods"
|
||||
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."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||
msgid "Base URL"
|
||||
msgstr "Bāzes URL"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:58
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr "Pamati"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
msgid "Basics"
|
||||
msgstr "Pamati"
|
||||
|
||||
@ -246,8 +266,8 @@ msgstr "Sabiedrība - sabiedrībai un sabiedrībai."
|
||||
msgid "Cancel"
|
||||
msgstr "Atcelt"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
#: apps/client/src/components/ai-actions.tsx:107
|
||||
#: apps/client/src/components/ai-actions.tsx:110
|
||||
msgid "Casual"
|
||||
msgstr "Gadījuma"
|
||||
|
||||
@ -255,12 +275,16 @@ msgstr "Gadījuma"
|
||||
msgid "Center 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/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Mainīt paroli"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
#: apps/client/src/components/ai-actions.tsx:101
|
||||
msgid "Change Tone"
|
||||
msgstr "Mainīt toni"
|
||||
|
||||
@ -288,6 +312,16 @@ msgstr "Kods"
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr "Kodam jābūt tieši 6 ciparu garam."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:272
|
||||
msgid "Collapse All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Collapse section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136
|
||||
msgid "Columns"
|
||||
msgstr "Kolonnas"
|
||||
@ -296,21 +330,17 @@ msgstr "Kolonnas"
|
||||
msgid "Company"
|
||||
msgstr "Uzņēmums"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
#: apps/client/src/components/ai-actions.tsx:119
|
||||
#: apps/client/src/components/ai-actions.tsx:122
|
||||
msgid "Confident"
|
||||
msgstr "Pārliecināts"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Jaunās paroles apstiprināšana"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
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"
|
||||
msgstr "Kopēt"
|
||||
|
||||
@ -351,7 +381,12 @@ msgstr "Izveidojiet to tagad"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Izveidot parauga CV"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr "Pašreizējā parole"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "Pielāgotais CSS"
|
||||
@ -360,7 +395,7 @@ msgstr "Pielāgotais CSS"
|
||||
msgid "Custom resume sections"
|
||||
msgstr "Pielāgotas CV sadaļas"
|
||||
|
||||
#: apps/client/src/stores/resume.ts:47
|
||||
#: apps/client/src/stores/resume.ts:53
|
||||
msgid "Custom Section"
|
||||
msgstr "Pielāgotā sadaļa"
|
||||
|
||||
@ -386,10 +421,10 @@ msgstr "Tumšs"
|
||||
msgid "Date"
|
||||
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/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
|
||||
msgid "Date or Date Range"
|
||||
msgstr "Datums vai datuma diapazons"
|
||||
@ -407,11 +442,15 @@ msgstr "Dzēst"
|
||||
msgid "Delete Account"
|
||||
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/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/skills.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||
msgid "Description"
|
||||
msgstr "Apraksts"
|
||||
|
||||
@ -423,18 +462,18 @@ msgstr "Vienas/vairāku lappušu CV dizains"
|
||||
msgid "Disable"
|
||||
msgstr "Atslēgt"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "2FA atspējošana"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Izmest"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentācija"
|
||||
|
||||
@ -442,7 +481,7 @@ msgstr "Dokumentācija"
|
||||
msgid "Don't have an account?"
|
||||
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!"
|
||||
msgstr "Vai nezināt, ar ko sākt? Šķir lapu ar dokumentiem!"
|
||||
|
||||
@ -450,7 +489,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>"
|
||||
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"
|
||||
msgstr "Ziedot Reactive Resume"
|
||||
|
||||
@ -458,12 +497,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."
|
||||
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."
|
||||
msgstr "Lejupielādējiet savu CV PDF formātā. Šo failu var izmantot, lai izdrukātu savu CV, nosūtītu to personāla atlases speciālistiem vai augšupielādētu darba portālos."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Lejupielādēt PDF"
|
||||
|
||||
@ -487,7 +525,7 @@ msgstr "Esoša vienuma dublēšana"
|
||||
msgid "Duplicate an existing resume"
|
||||
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"
|
||||
msgstr "Rediģēt"
|
||||
|
||||
@ -498,12 +536,12 @@ msgstr "Ietekme"
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:90
|
||||
#: apps/client/src/pages/auth/register/page.tsx:141
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181
|
||||
msgid "Email"
|
||||
msgstr "E-pasts"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Ieslēgt 2FA"
|
||||
|
||||
@ -531,6 +569,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."
|
||||
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
|
||||
msgid "Errors"
|
||||
msgstr "Kļūdas"
|
||||
@ -539,11 +581,22 @@ msgstr "Kļūdas"
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr "Pat ja jums nav iespēju sniegt finansiālu ieguldījumu, jūs joprojām varat kaut ko mainīt, piešķirot GitHub repozitorijam zvaigznīti, izplatot šo informāciju saviem draugiem vai rakstot īsziņu, lai informētu mani, kā Reactive Resume jums ir palīdzējis. Jūsu atsauksmes un atbalsts vienmēr ir gaidīti un ļoti novērtēti!"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:271
|
||||
msgid "Expand All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Expand section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "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 "Iepazīstieties ar Reactive Resume pieejamajām veidnēm un apskatiet ar tām izstrādātos CV. Tie var kalpot arī kā piemēri, kas palīdzēs jums izveidot nākamo CV."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Eksportēt"
|
||||
@ -564,19 +617,19 @@ msgstr "Visbeidzot,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Labot pareizrakstību un gramatiku"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Fontu ģimene"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Fonta lielums"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Fontu apakškomplekts"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Fontu varianti"
|
||||
|
||||
@ -584,7 +637,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."
|
||||
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"
|
||||
msgstr "Aizmirstiet"
|
||||
|
||||
@ -601,7 +654,7 @@ msgstr "Aizmirsāt paroli?"
|
||||
msgid "Format"
|
||||
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?"
|
||||
msgstr "Atradāt kļūdu vai jums ir ideja par jaunu funkciju?"
|
||||
|
||||
@ -609,12 +662,12 @@ msgstr "Atradāt kļūdu vai jums ir ideja par jaunu funkciju?"
|
||||
msgid "Free, forever"
|
||||
msgstr "Bezmaksas, uz visiem laikiem"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:121
|
||||
#: apps/client/src/components/ai-actions.tsx:124
|
||||
#: apps/client/src/components/ai-actions.tsx:125
|
||||
#: apps/client/src/components/ai-actions.tsx:128
|
||||
msgid "Friendly"
|
||||
msgstr "Draudzīgs"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:56
|
||||
msgid "Full Name"
|
||||
msgstr "Pilns nosaukums"
|
||||
|
||||
@ -643,6 +696,10 @@ msgstr "Dodiet savam vecajam CV jaunu nosaukumu."
|
||||
msgid "Go to Dashboard"
|
||||
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
|
||||
msgid "Google"
|
||||
msgstr "Google"
|
||||
@ -651,11 +708,11 @@ msgstr "Google"
|
||||
msgid "Grayscale"
|
||||
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"
|
||||
msgstr "Tīkls"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:70
|
||||
msgid "Headline"
|
||||
msgstr "Virsraksts"
|
||||
|
||||
@ -668,7 +725,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."
|
||||
|
||||
#: 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
|
||||
msgid "Hidden"
|
||||
msgstr "Slēptais"
|
||||
@ -677,7 +734,7 @@ msgstr "Slēptais"
|
||||
msgid "Hide"
|
||||
msgstr "Paslēpt"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Slēpt ikonas"
|
||||
|
||||
@ -734,7 +791,7 @@ msgstr "Uzlabot rakstīšanu"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Ja nevarat skenēt šo QR kodu, varat arī kopēt un ielīmēt šo saiti autentifikatora lietotnē."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "Šajā sadaļā varat mainīt paroli un iespējot/izslēgt divu faktoru autentifikāciju."
|
||||
|
||||
@ -743,7 +800,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>."
|
||||
|
||||
#: 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"
|
||||
msgstr "Informācija"
|
||||
|
||||
@ -802,10 +860,10 @@ msgstr "john.doe@example.com"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||
msgid "Keywords"
|
||||
msgstr "Atslēgas vārdi"
|
||||
|
||||
@ -824,7 +882,8 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Pēdējo reizi atjaunināts {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx: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"
|
||||
msgstr "Izkārtojums"
|
||||
|
||||
@ -837,7 +896,7 @@ msgid "Letter"
|
||||
msgstr "Vēstule"
|
||||
|
||||
#: 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"
|
||||
msgstr "Līmenis"
|
||||
|
||||
@ -853,7 +912,7 @@ msgstr "Gaisma"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Gaišs vai tumšs temats"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Līnijas augstums"
|
||||
|
||||
@ -862,14 +921,14 @@ msgstr "Līnijas augstums"
|
||||
msgid "LinkedIn, JSON Resume, etc."
|
||||
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"
|
||||
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/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:120
|
||||
msgid "Location"
|
||||
msgstr "Atrašanās vieta"
|
||||
|
||||
@ -897,7 +956,7 @@ msgstr "Izrakstīšanās"
|
||||
msgid "Lost your device?"
|
||||
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"
|
||||
msgstr "Galvenais"
|
||||
|
||||
@ -914,7 +973,7 @@ msgstr "2023. gada marts"
|
||||
|
||||
#: 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/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
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "2023. gada marts - klāt"
|
||||
@ -923,7 +982,7 @@ msgstr "2023. gada marts - klāt"
|
||||
msgid "Margin"
|
||||
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"
|
||||
msgstr "Maksimālais žetonu skaits"
|
||||
|
||||
@ -931,18 +990,18 @@ msgstr "Maksimālais žetonu skaits"
|
||||
msgid "MIT License"
|
||||
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"
|
||||
msgstr "Modelis"
|
||||
|
||||
#: 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/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: 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/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/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/dashboard/settings/_sections/account.tsx:153
|
||||
msgid "Name"
|
||||
@ -957,7 +1016,7 @@ msgstr "Nosaukums"
|
||||
msgid "Network"
|
||||
msgstr "Tīkls"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Jauna parole"
|
||||
|
||||
@ -974,6 +1033,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Piezīme: Tādējādi jūsu konts kļūs mazāk drošs."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Piezīmes"
|
||||
@ -1009,16 +1069,16 @@ msgstr "OpenAI neatgrieza nevienu jūsu teksta izvēli."
|
||||
msgid "OpenAI Integration"
|
||||
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"
|
||||
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/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Iespējas"
|
||||
|
||||
@ -1032,22 +1092,23 @@ msgid "Organization"
|
||||
msgstr "Organizācija"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Lapa"
|
||||
|
||||
#: 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}"
|
||||
msgstr "Lapa {pageNumber}"
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Parole"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||
msgid "PDF"
|
||||
msgstr "PDF"
|
||||
|
||||
@ -1055,7 +1116,7 @@ msgstr "PDF"
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr "Personiskas piezīmes par katru CV"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:108
|
||||
msgid "Phone"
|
||||
msgstr "Tālrunis"
|
||||
|
||||
@ -1109,14 +1170,12 @@ msgstr "Darbojas ar <0>vienkāršām ikonām</0>"
|
||||
msgid "Primary Color"
|
||||
msgstr "Primārā krāsa"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Konfidencialitātes politika"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
#: apps/client/src/components/ai-actions.tsx:113
|
||||
#: apps/client/src/components/ai-actions.tsx:116
|
||||
msgid "Professional"
|
||||
msgstr "Profesionāls"
|
||||
|
||||
@ -1132,7 +1191,7 @@ msgstr "Publiski"
|
||||
msgid "Publisher"
|
||||
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"
|
||||
msgstr "Izvirzīt jautājumu"
|
||||
|
||||
@ -1144,11 +1203,10 @@ msgstr "Izvirzīt jautājumu"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1175,12 +1233,12 @@ msgstr "Reactive Resume plaukst, pateicoties tā dinamiskajai kopienai. Šis pro
|
||||
msgid "Redo"
|
||||
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
|
||||
msgid "Remove"
|
||||
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"
|
||||
msgstr "Noņemt lapu"
|
||||
|
||||
@ -1199,7 +1257,7 @@ msgstr "Atkārtoti nosūtīt e-pasta apstiprinājuma saiti"
|
||||
msgid "Reset"
|
||||
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"
|
||||
msgstr "Izkārtojuma atiestatīšana"
|
||||
|
||||
@ -1213,8 +1271,8 @@ msgid "Reset Zoom"
|
||||
msgstr "Atiestatīt tālummaiņu"
|
||||
|
||||
#: 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:37
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||
msgid "Resumes"
|
||||
msgstr "CV"
|
||||
|
||||
@ -1237,11 +1295,11 @@ msgstr "Noapaļots"
|
||||
msgid "Save Changes"
|
||||
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"
|
||||
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"
|
||||
msgstr "Saglabāts"
|
||||
|
||||
@ -1262,15 +1320,15 @@ msgstr "Ritiniet uz Pan"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Ritiniet, lai palielinātu"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Meklēt fontu saimi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Meklēt fontu apakškopu"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Meklēt fonta variantu"
|
||||
|
||||
@ -1282,7 +1340,7 @@ msgstr "Meklēt valodu"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Droša ar divu faktoru autentifikāciju"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Drošība"
|
||||
|
||||
@ -1294,7 +1352,7 @@ msgstr "Pašmāju hostings ar Docker"
|
||||
msgid "Send Email"
|
||||
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"
|
||||
msgstr "Nosūtiet man ziņu"
|
||||
|
||||
@ -1314,6 +1372,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Divu faktoru autentifikācijas iestatīšana kontā"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Koplietošana"
|
||||
@ -1330,7 +1389,7 @@ msgstr "Rādīt pārtraukuma līniju"
|
||||
msgid "Show Page Numbers"
|
||||
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"
|
||||
msgstr "Sānu josla"
|
||||
|
||||
@ -1408,6 +1467,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Sāciet veidot savu CV, piešķirot tam nosaukumu."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Statistika"
|
||||
@ -1422,17 +1482,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/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/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/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "Summary"
|
||||
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!"
|
||||
msgstr "Atbalstiet lietotni, ziedojot, ko varat!"
|
||||
|
||||
@ -1444,11 +1504,20 @@ msgstr "Reaktīvais atbalsts Resumē"
|
||||
msgid "Supports A4/Letter page formats"
|
||||
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
|
||||
msgid "System"
|
||||
msgstr "Sistēma"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Šablons"
|
||||
@ -1465,15 +1534,20 @@ msgstr "Atsauksmes"
|
||||
msgid "Text Color"
|
||||
msgstr "Teksta krāsa"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "Ievadītās paroles nesakrīt."
|
||||
#: apps/client/src/pages/public/error.tsx:17
|
||||
msgid "The page you're looking for doesn't exist."
|
||||
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
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "CV, kuru vēlaties atjaunināt, ir bloķēts, lūdzu, atbloķējiet to, ja vēlaties tajā veikt izmaiņas."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1604,7 @@ msgstr "Skatījumu un lejupielāžu izsekošana"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Divu faktoru autentifikācija"
|
||||
|
||||
@ -1552,11 +1626,12 @@ msgid "Type of Study"
|
||||
msgstr "Pētījuma veids"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Tipogrāfija"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Pasvītrot saites"
|
||||
|
||||
@ -1599,6 +1674,14 @@ msgstr "URL"
|
||||
msgid "URL must start with 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:57
|
||||
msgid "Use your backup code"
|
||||
@ -1651,7 +1734,7 @@ msgstr "Versija 4"
|
||||
msgid "Views"
|
||||
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"
|
||||
msgstr "Redzams"
|
||||
|
||||
@ -1665,15 +1748,15 @@ 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/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/experience.tsx:100
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:96
|
||||
msgid "Website"
|
||||
msgstr "Tīmekļa vietne"
|
||||
|
||||
@ -1681,10 +1764,14 @@ msgstr "Tīmekļa vietne"
|
||||
msgid "What's new in the latest version"
|
||||
msgstr "Jaunumi jaunākajā versijā"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
||||
#: apps/client/src/pages/public/error.tsx:26
|
||||
msgid "You are not authorized to access this page."
|
||||
msgstr "Jums nav tiesību piekļūt šai lapai."
|
||||
|
||||
#: 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."
|
||||
msgstr "Varat pievienot vairākus atslēgvārdus, atdalot tos ar komatu vai nospiežot enter."
|
||||
|
||||
@ -1692,19 +1779,27 @@ msgstr "Varat pievienot vairākus atslēgvārdus, atdalot tos ar komatu vai nosp
|
||||
msgid "You can also enter your username."
|
||||
msgstr "Varat arī ievadīt savu lietotājvārdu."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||
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."
|
||||
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."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||
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 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
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
msgstr "Varat izmantot OpenAI API, lai palīdzētu jums ģenerēt saturu vai uzlabot rakstīšanu, veidojot CV."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||
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 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
|
||||
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."
|
||||
|
||||
#: 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."
|
||||
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 +1816,7 @@ msgstr "Jūs esat saņēmis pastu!"
|
||||
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!"
|
||||
|
||||
#: 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."
|
||||
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 +1828,7 @@ msgstr "Jūsu e-pasta adrese ir veiksmīgi pārbaudīta."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Jūsu OpenAI API atslēga vēl nav iestatīta. Lūdzu, dodieties uz sava konta iestatījumiem, lai iespējotu OpenAI integrāciju."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Jūsu parole ir veiksmīgi atjaunināta."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ml\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-11-04 14:22\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Malayalam\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -30,27 +30,27 @@ msgstr ""
|
||||
msgid "{value, plural, one {Column} other {Columns}}"
|
||||
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>"
|
||||
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>"
|
||||
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."
|
||||
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>"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr ""
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr ""
|
||||
msgid "Add a custom field"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:203
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr ""
|
||||
@ -112,12 +112,12 @@ msgstr ""
|
||||
msgid "Add a new item"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:267
|
||||
msgid "Add a new section"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -133,6 +133,14 @@ msgstr ""
|
||||
msgid "An error occurred while validating the file."
|
||||
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
|
||||
msgid "and many more..."
|
||||
msgstr ""
|
||||
@ -191,6 +199,18 @@ msgstr ""
|
||||
msgid "Awarder"
|
||||
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/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
@ -209,16 +229,16 @@ msgstr ""
|
||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||
msgid "Base URL"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:58
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
msgid "Basics"
|
||||
msgstr ""
|
||||
|
||||
@ -246,8 +266,8 @@ msgstr ""
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
#: apps/client/src/components/ai-actions.tsx:107
|
||||
#: apps/client/src/components/ai-actions.tsx:110
|
||||
msgid "Casual"
|
||||
msgstr ""
|
||||
|
||||
@ -255,12 +275,16 @@ msgstr ""
|
||||
msgid "Center Artboard"
|
||||
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/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
#: apps/client/src/components/ai-actions.tsx:101
|
||||
msgid "Change Tone"
|
||||
msgstr ""
|
||||
|
||||
@ -288,6 +312,16 @@ msgstr ""
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:272
|
||||
msgid "Collapse All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Collapse section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
@ -296,21 +330,17 @@ msgstr ""
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
#: apps/client/src/components/ai-actions.tsx:119
|
||||
#: apps/client/src/components/ai-actions.tsx:122
|
||||
msgid "Confident"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -351,7 +381,12 @@ msgstr ""
|
||||
msgid "Create Sample Resume"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
@ -360,7 +395,7 @@ msgstr ""
|
||||
msgid "Custom resume sections"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/stores/resume.ts:47
|
||||
#: apps/client/src/stores/resume.ts:53
|
||||
msgid "Custom Section"
|
||||
msgstr ""
|
||||
|
||||
@ -386,10 +421,10 @@ msgstr ""
|
||||
msgid "Date"
|
||||
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/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
|
||||
msgid "Date or Date Range"
|
||||
msgstr ""
|
||||
@ -407,11 +442,15 @@ msgstr ""
|
||||
msgid "Delete Account"
|
||||
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/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/skills.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
@ -423,18 +462,18 @@ msgstr ""
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
@ -442,7 +481,7 @@ msgstr ""
|
||||
msgid "Don't have an account?"
|
||||
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!"
|
||||
msgstr ""
|
||||
|
||||
@ -450,7 +489,7 @@ msgstr ""
|
||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -458,12 +497,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."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr ""
|
||||
|
||||
@ -487,7 +525,7 @@ msgstr ""
|
||||
msgid "Duplicate an existing resume"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -498,12 +536,12 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:90
|
||||
#: apps/client/src/pages/auth/register/page.tsx:141
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr ""
|
||||
|
||||
@ -531,6 +569,10 @@ msgstr ""
|
||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/public/error.tsx:46
|
||||
msgid "Error {statusCode}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||
msgid "Errors"
|
||||
msgstr ""
|
||||
@ -539,11 +581,22 @@ msgstr ""
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:271
|
||||
msgid "Expand All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Expand section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "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 ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
@ -564,19 +617,19 @@ msgstr ""
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr ""
|
||||
|
||||
@ -584,7 +637,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."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||
msgid "Forget"
|
||||
msgstr ""
|
||||
|
||||
@ -601,7 +654,7 @@ msgstr ""
|
||||
msgid "Format"
|
||||
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?"
|
||||
msgstr ""
|
||||
|
||||
@ -609,12 +662,12 @@ msgstr ""
|
||||
msgid "Free, forever"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:121
|
||||
#: apps/client/src/components/ai-actions.tsx:124
|
||||
#: apps/client/src/components/ai-actions.tsx:125
|
||||
#: apps/client/src/components/ai-actions.tsx:128
|
||||
msgid "Friendly"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:56
|
||||
msgid "Full Name"
|
||||
msgstr ""
|
||||
|
||||
@ -643,6 +696,10 @@ msgstr ""
|
||||
msgid "Go to Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/public/error.tsx:55
|
||||
msgid "Go to home"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||
msgid "Google"
|
||||
msgstr ""
|
||||
@ -651,11 +708,11 @@ msgstr ""
|
||||
msgid "Grayscale"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||
msgid "Grid"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:70
|
||||
msgid "Headline"
|
||||
msgstr ""
|
||||
|
||||
@ -668,7 +725,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
msgid "Hidden"
|
||||
msgstr ""
|
||||
@ -677,7 +734,7 @@ msgstr ""
|
||||
msgid "Hide"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr ""
|
||||
|
||||
@ -734,7 +791,7 @@ msgstr ""
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr ""
|
||||
|
||||
@ -743,7 +800,8 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx: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"
|
||||
msgstr ""
|
||||
|
||||
@ -802,10 +860,10 @@ msgstr ""
|
||||
msgid "JSON"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
@ -824,7 +882,8 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx: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"
|
||||
msgstr ""
|
||||
|
||||
@ -837,7 +896,7 @@ msgid "Letter"
|
||||
msgstr ""
|
||||
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -853,7 +912,7 @@ msgstr ""
|
||||
msgid "Light or dark theme"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr ""
|
||||
|
||||
@ -862,14 +921,14 @@ msgstr ""
|
||||
msgid "LinkedIn, JSON Resume, etc."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||
msgid "List"
|
||||
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/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:120
|
||||
msgid "Location"
|
||||
msgstr ""
|
||||
|
||||
@ -897,7 +956,7 @@ msgstr ""
|
||||
msgid "Lost your device?"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -914,7 +973,7 @@ msgstr ""
|
||||
|
||||
#: 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/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
|
||||
msgid "March 2023 - Present"
|
||||
msgstr ""
|
||||
@ -923,7 +982,7 @@ msgstr ""
|
||||
msgid "Margin"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||
msgid "Max Tokens"
|
||||
msgstr ""
|
||||
|
||||
@ -931,18 +990,18 @@ msgstr ""
|
||||
msgid "MIT License"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#: 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/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: 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/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/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/dashboard/settings/_sections/account.tsx:153
|
||||
msgid "Name"
|
||||
@ -957,7 +1016,7 @@ msgstr ""
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
@ -974,6 +1033,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
@ -1009,16 +1069,16 @@ msgstr ""
|
||||
msgid "OpenAI Integration"
|
||||
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"
|
||||
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/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
@ -1032,22 +1092,23 @@ msgid "Organization"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
#: 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}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||
msgid "PDF"
|
||||
msgstr ""
|
||||
|
||||
@ -1055,7 +1116,7 @@ msgstr ""
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:108
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
@ -1109,14 +1170,12 @@ msgstr ""
|
||||
msgid "Primary Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||
msgid "Privacy Policy"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
#: apps/client/src/components/ai-actions.tsx:113
|
||||
#: apps/client/src/components/ai-actions.tsx:116
|
||||
msgid "Professional"
|
||||
msgstr ""
|
||||
|
||||
@ -1132,7 +1191,7 @@ msgstr ""
|
||||
msgid "Publisher"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1144,11 +1203,10 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1175,12 +1233,12 @@ msgstr ""
|
||||
msgid "Redo"
|
||||
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
|
||||
msgid "Remove"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1199,7 +1257,7 @@ msgstr ""
|
||||
msgid "Reset"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1213,8 +1271,8 @@ msgid "Reset Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: 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:37
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||
msgid "Resumes"
|
||||
msgstr ""
|
||||
|
||||
@ -1237,11 +1295,11 @@ msgstr ""
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||
msgid "Save Locally"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||
msgid "Saved"
|
||||
msgstr ""
|
||||
|
||||
@ -1262,15 +1320,15 @@ msgstr ""
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
@ -1282,7 +1340,7 @@ msgstr ""
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
@ -1294,7 +1352,7 @@ msgstr ""
|
||||
msgid "Send Email"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1314,6 +1372,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr ""
|
||||
@ -1330,7 +1389,7 @@ msgstr ""
|
||||
msgid "Show Page Numbers"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1408,6 +1467,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr ""
|
||||
@ -1422,17 +1482,17 @@ msgstr ""
|
||||
|
||||
#: 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/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/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/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "Summary"
|
||||
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!"
|
||||
msgstr ""
|
||||
|
||||
@ -1444,11 +1504,20 @@ msgstr ""
|
||||
msgid "Supports A4/Letter page formats"
|
||||
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
|
||||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
@ -1465,8 +1534,12 @@ msgstr ""
|
||||
msgid "Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
#: apps/client/src/pages/public/error.tsx:17
|
||||
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 ""
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
@ -1474,6 +1547,7 @@ msgid "The resume you want to update is locked, please unlock if you wish to mak
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1604,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
@ -1552,11 +1626,12 @@ msgid "Type of Study"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr ""
|
||||
|
||||
@ -1599,6 +1674,14 @@ msgstr ""
|
||||
msgid "URL must start with https://"
|
||||
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:57
|
||||
msgid "Use your backup code"
|
||||
@ -1651,7 +1734,7 @@ msgstr ""
|
||||
msgid "Views"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1665,15 +1748,15 @@ msgstr ""
|
||||
|
||||
#: 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/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/experience.tsx:100
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:96
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
@ -1681,10 +1764,14 @@ msgstr ""
|
||||
msgid "What's new in the latest version"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
||||
#: apps/client/src/pages/public/error.tsx:26
|
||||
msgid "You are not authorized to access this page."
|
||||
msgstr ""
|
||||
|
||||
#: 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."
|
||||
msgstr ""
|
||||
|
||||
@ -1692,19 +1779,27 @@ msgstr ""
|
||||
msgid "You can also enter your username."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||
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."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||
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 ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||
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 ""
|
||||
|
||||
#: 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."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
@ -1721,7 +1816,7 @@ msgstr ""
|
||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
@ -1733,7 +1828,7 @@ msgstr ""
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ms\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-11-04 14:22\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Malay\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}}"
|
||||
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>"
|
||||
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>"
|
||||
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."
|
||||
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>"
|
||||
msgstr "<0>Masyarakat telah banyak menghabiskan masa menulis dokumentasi untuk Resume Reaktif, dan saya yakin ia akan membantu anda memulakan dengan aplikasi.</0><1>Juga terdapat banyak contoh untuk membantu anda memulakan, dan ciri-ciri yang mungkin anda tidak tahu tentang yang boleh membantu anda membina resume yang sempurna.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>Pengesahan dua faktor kini dimatikan.</0> Anda boleh mengaktifkannya dengan menambah aplikasi pengesah ke akaun anda."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>Pengesahan dua faktor diaktifkan.</0> Anda akan diminta untuk memasukkan kod setiap kali anda log masuk."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Akaun"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Tambahkan medan tersuai"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:203
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Tambah item baru"
|
||||
@ -112,12 +112,12 @@ msgstr "Tambah item baru"
|
||||
msgid "Add a new item"
|
||||
msgstr "Tambah item baru"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:267
|
||||
msgid "Add a new section"
|
||||
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"
|
||||
msgstr "Tambah Halaman Baru"
|
||||
|
||||
@ -133,6 +133,14 @@ msgstr "Sudah mempunyai akaun?"
|
||||
msgid "An error occurred while validating the file."
|
||||
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
|
||||
msgid "and many more..."
|
||||
msgstr "dan banyak lagi..."
|
||||
@ -191,6 +199,18 @@ msgstr "Boleh didapati dalam {languagesCount} bahasa"
|
||||
msgid "Awarder"
|
||||
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/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
@ -209,16 +229,16 @@ msgstr "Kod Sandaran"
|
||||
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."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||
msgid "Base URL"
|
||||
msgstr "Pautan Asas"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:58
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr "Asas"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
msgid "Basics"
|
||||
msgstr "Asas"
|
||||
|
||||
@ -246,8 +266,8 @@ msgstr "Oleh komuniti, untuk komuniti."
|
||||
msgid "Cancel"
|
||||
msgstr "Batal"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
#: apps/client/src/components/ai-actions.tsx:107
|
||||
#: apps/client/src/components/ai-actions.tsx:110
|
||||
msgid "Casual"
|
||||
msgstr "Kasual"
|
||||
|
||||
@ -255,12 +275,16 @@ msgstr "Kasual"
|
||||
msgid "Center Artboard"
|
||||
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/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Tukar Kata Laluan"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
#: apps/client/src/components/ai-actions.tsx:101
|
||||
msgid "Change Tone"
|
||||
msgstr "Tukar Tone"
|
||||
|
||||
@ -288,6 +312,16 @@ msgstr "Kod"
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr "Kod mesti tepat 6 digit panjang."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:272
|
||||
msgid "Collapse All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Collapse section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136
|
||||
msgid "Columns"
|
||||
msgstr "Kolum"
|
||||
@ -296,21 +330,17 @@ msgstr "Kolum"
|
||||
msgid "Company"
|
||||
msgstr "Syarikat"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
#: apps/client/src/components/ai-actions.tsx:119
|
||||
#: apps/client/src/components/ai-actions.tsx:122
|
||||
msgid "Confident"
|
||||
msgstr "Keyakinan"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Sahkan Kata Laluan Baru"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
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"
|
||||
msgstr "Salin"
|
||||
|
||||
@ -351,7 +381,12 @@ msgstr "Cipta satu sekarang"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Buat Resume Sampel"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
@ -360,7 +395,7 @@ msgstr ""
|
||||
msgid "Custom resume sections"
|
||||
msgstr "Seksyen resume khas"
|
||||
|
||||
#: apps/client/src/stores/resume.ts:47
|
||||
#: apps/client/src/stores/resume.ts:53
|
||||
msgid "Custom Section"
|
||||
msgstr "Bahagian Kustom"
|
||||
|
||||
@ -386,10 +421,10 @@ msgstr "Gelap"
|
||||
msgid "Date"
|
||||
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/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
|
||||
msgid "Date or Date Range"
|
||||
msgstr "Tarikh atau Julat Tarikh"
|
||||
@ -407,11 +442,15 @@ msgstr "Padam"
|
||||
msgid "Delete Account"
|
||||
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/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/skills.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||
msgid "Description"
|
||||
msgstr "Penerangan"
|
||||
|
||||
@ -423,18 +462,18 @@ msgstr "Mereka bentuk resume satu/multi muka surat"
|
||||
msgid "Disable"
|
||||
msgstr "Matikan"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Matikan 2FA"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Buang"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentasi"
|
||||
|
||||
@ -442,7 +481,7 @@ msgstr "Dokumentasi"
|
||||
msgid "Don't have an account?"
|
||||
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!"
|
||||
msgstr "Tidak tahu di mana hendak bermula? Ketuk dokumen!"
|
||||
|
||||
@ -450,7 +489,7 @@ msgstr "Tidak tahu di mana hendak bermula? Ketuk dokumen!"
|
||||
msgid "Don't see your language? <0>Help translate the app.</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"
|
||||
msgstr "Derma kepada Reaktif Resume"
|
||||
|
||||
@ -458,12 +497,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."
|
||||
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."
|
||||
msgstr "Muat turunkan PDF resume anda. Fail ini boleh digunakan untuk mencetak resume anda, menghantarkannya kepada perekrut, atau memuat naik ke portal pekerjaan."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Muat turun PDF"
|
||||
|
||||
@ -487,7 +525,7 @@ msgstr "Duplikat item yang sedia ada"
|
||||
msgid "Duplicate an existing resume"
|
||||
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"
|
||||
msgstr "Edit"
|
||||
|
||||
@ -498,12 +536,12 @@ msgstr "Kesan"
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:90
|
||||
#: apps/client/src/pages/auth/register/page.tsx:141
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181
|
||||
msgid "Email"
|
||||
msgstr "E-mel"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Aktifkan 2FA"
|
||||
|
||||
@ -531,6 +569,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."
|
||||
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
|
||||
msgid "Errors"
|
||||
msgstr "Ralat"
|
||||
@ -539,11 +581,22 @@ msgstr "Ralat"
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr "Walaupun anda tidak mampu memberikan sumbangan kewangan, anda masih boleh membuat perbezaan dengan memberikan bintang kepada repositori GitHub, menyebarkan berita kepada rakan anda, atau meninggalkan mesej ringkas untuk memberitahu saya bagaimana Reaktif Resume telah membantu anda. Maklum balas dan sokongan anda sentiasa dialu-alukan dan dihargai!"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:271
|
||||
msgid "Expand All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Expand section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "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 "Terokai templat yang tersedia dalam Reaktif Resume dan lihat resume yang dibuat dengan mereka. Mereka juga boleh berfungsi sebagai contoh untuk membimbing penciptaan resume anda seterusnya."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Eksport"
|
||||
@ -564,19 +617,19 @@ msgstr "Akhirnya,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Betulkan Ejaan & Tatabahasa"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Keluarga fon"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Saiz Fon"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Subset Fon"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Varian Fon"
|
||||
|
||||
@ -584,7 +637,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."
|
||||
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"
|
||||
msgstr "Lupakan"
|
||||
|
||||
@ -601,7 +654,7 @@ msgstr "Lupa kata laluan anda?"
|
||||
msgid "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?"
|
||||
msgstr "Jumpa bug, atau ada idea untuk ciri baru?"
|
||||
|
||||
@ -609,12 +662,12 @@ msgstr "Jumpa bug, atau ada idea untuk ciri baru?"
|
||||
msgid "Free, forever"
|
||||
msgstr "Percuma, selamanya"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:121
|
||||
#: apps/client/src/components/ai-actions.tsx:124
|
||||
#: apps/client/src/components/ai-actions.tsx:125
|
||||
#: apps/client/src/components/ai-actions.tsx:128
|
||||
msgid "Friendly"
|
||||
msgstr "Mesra"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:56
|
||||
msgid "Full Name"
|
||||
msgstr "Nama penuh"
|
||||
|
||||
@ -643,6 +696,10 @@ msgstr "Beri nama baru kepada resume lama anda."
|
||||
msgid "Go to 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
|
||||
msgid "Google"
|
||||
msgstr "Google"
|
||||
@ -651,11 +708,11 @@ msgstr "Google"
|
||||
msgid "Grayscale"
|
||||
msgstr "Skala kelabu"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||
msgid "Grid"
|
||||
msgstr "Grid"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:70
|
||||
msgid "Headline"
|
||||
msgstr "Tajuk Utama"
|
||||
|
||||
@ -668,7 +725,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."
|
||||
|
||||
#: 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
|
||||
msgid "Hidden"
|
||||
msgstr "Tersembunyi"
|
||||
@ -677,7 +734,7 @@ msgstr "Tersembunyi"
|
||||
msgid "Hide"
|
||||
msgstr "Sembunyi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Sembunyikan Icon"
|
||||
|
||||
@ -734,7 +791,7 @@ msgstr "Meningkatkan Menulis"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Sekiranya anda tidak boleh mengimbas Kod QR ini, anda juga boleh menyalin-dan-tampal pautan ini ke dalam aplikasi pengesah anda."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "Di bahagian ini, anda boleh menukar kata laluan anda dan mengaktifkan/menonaktifkan pengesahan dua faktor."
|
||||
|
||||
@ -743,7 +800,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>."
|
||||
|
||||
#: 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"
|
||||
msgstr "Maklumat"
|
||||
|
||||
@ -802,10 +860,10 @@ msgstr "john.doe@example.com"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||
msgid "Keywords"
|
||||
msgstr "Kata Kunci"
|
||||
|
||||
@ -824,7 +882,8 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Terakhir dikemaskini {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx: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"
|
||||
msgstr "Tataletak"
|
||||
|
||||
@ -837,7 +896,7 @@ msgid "Letter"
|
||||
msgstr "Surat"
|
||||
|
||||
#: 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"
|
||||
msgstr "Tahap"
|
||||
|
||||
@ -853,7 +912,7 @@ msgstr "Cerah"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Tema terang atau gelap"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Tinggi Baris"
|
||||
|
||||
@ -862,14 +921,14 @@ msgstr "Tinggi Baris"
|
||||
msgid "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"
|
||||
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/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:120
|
||||
msgid "Location"
|
||||
msgstr "Lokasi"
|
||||
|
||||
@ -897,7 +956,7 @@ msgstr "Log keluar"
|
||||
msgid "Lost your device?"
|
||||
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"
|
||||
msgstr "Utama"
|
||||
|
||||
@ -914,7 +973,7 @@ msgstr "Mac 2023"
|
||||
|
||||
#: 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/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
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "Mac 2023 - Sekarang"
|
||||
@ -923,7 +982,7 @@ msgstr "Mac 2023 - Sekarang"
|
||||
msgid "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"
|
||||
msgstr "Tanda-tanda terbesar"
|
||||
|
||||
@ -931,18 +990,18 @@ msgstr "Tanda-tanda terbesar"
|
||||
msgid "MIT License"
|
||||
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"
|
||||
msgstr "Modal"
|
||||
|
||||
#: 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/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: 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/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/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/dashboard/settings/_sections/account.tsx:153
|
||||
msgid "Name"
|
||||
@ -957,7 +1016,7 @@ msgstr "Nama"
|
||||
msgid "Network"
|
||||
msgstr "Rangkaian"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Kata Laluan Baru"
|
||||
|
||||
@ -974,6 +1033,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Nota: Ini akan menjadikan akaun anda kurang selamat."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Nota"
|
||||
@ -1009,16 +1069,16 @@ msgstr "OpenAI tidak mengembalikan pilihan apa pun untuk teks anda."
|
||||
msgid "OpenAI Integration"
|
||||
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"
|
||||
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/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Pilihan"
|
||||
|
||||
@ -1032,22 +1092,23 @@ msgid "Organization"
|
||||
msgstr "Organisasi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Halaman"
|
||||
|
||||
#: 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}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Kata Laluan"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||
msgid "PDF"
|
||||
msgstr "PDF"
|
||||
|
||||
@ -1055,7 +1116,7 @@ msgstr "PDF"
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr "Nota peribadi untuk setiap resume"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:108
|
||||
msgid "Phone"
|
||||
msgstr "Telefon"
|
||||
|
||||
@ -1109,14 +1170,12 @@ msgstr "Dikuasakan oleh <0>Simple Icons</0>"
|
||||
msgid "Primary Color"
|
||||
msgstr "Warna Utama"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Dasar Privasi"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
#: apps/client/src/components/ai-actions.tsx:113
|
||||
#: apps/client/src/components/ai-actions.tsx:116
|
||||
msgid "Professional"
|
||||
msgstr "Profesional"
|
||||
|
||||
@ -1132,7 +1191,7 @@ msgstr "Awam"
|
||||
msgid "Publisher"
|
||||
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"
|
||||
msgstr "Timbulkan isu"
|
||||
|
||||
@ -1144,11 +1203,10 @@ msgstr "Timbulkan isu"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1175,12 +1233,12 @@ msgstr "Reactive Resume berkembang pesat berkat komuniti yang aktif. Projek ini
|
||||
msgid "Redo"
|
||||
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
|
||||
msgid "Remove"
|
||||
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"
|
||||
msgstr "Buang Halaman"
|
||||
|
||||
@ -1199,7 +1257,7 @@ msgstr "Kirim semula pautan pengesahan emel"
|
||||
msgid "Reset"
|
||||
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"
|
||||
msgstr "Tetapkan Susunan Semula"
|
||||
|
||||
@ -1213,8 +1271,8 @@ msgid "Reset Zoom"
|
||||
msgstr "Tetap Semula Zoom"
|
||||
|
||||
#: 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:37
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||
msgid "Resumes"
|
||||
msgstr "Resume"
|
||||
|
||||
@ -1237,11 +1295,11 @@ msgstr "Bulat"
|
||||
msgid "Save Changes"
|
||||
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"
|
||||
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"
|
||||
msgstr "Disimpan"
|
||||
|
||||
@ -1262,15 +1320,15 @@ msgstr ""
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Cari keluarga fon"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Cari subset fon"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Cari varian font"
|
||||
|
||||
@ -1282,7 +1340,7 @@ msgstr "Cari bahasa"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Selamatkan dengan pengesahan dua faktor"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Keselamatan"
|
||||
|
||||
@ -1294,7 +1352,7 @@ msgstr "Taja sendiri dengan Docker"
|
||||
msgid "Send 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"
|
||||
msgstr "Hantar saya mesej"
|
||||
|
||||
@ -1314,6 +1372,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Tetapkan pengesah dua faktor pada akaun anda"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr " Berkongsi"
|
||||
@ -1330,7 +1389,7 @@ msgstr "Tunjukkan Garis Pemisah"
|
||||
msgid "Show Page Numbers"
|
||||
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"
|
||||
msgstr "Panel Sisi"
|
||||
|
||||
@ -1408,6 +1467,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Mula bina resume anda dengan memberinya nama."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Statistik"
|
||||
@ -1422,17 +1482,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/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/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/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "Summary"
|
||||
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!"
|
||||
msgstr "Menyokong aplikasi dengan menderma sebanyak yang anda mampu!"
|
||||
|
||||
@ -1444,11 +1504,20 @@ msgstr "Sokongan Resume Reaktif"
|
||||
msgid "Supports A4/Letter page formats"
|
||||
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
|
||||
msgid "System"
|
||||
msgstr "Sistem"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Templat"
|
||||
@ -1465,15 +1534,20 @@ msgstr "Testimoni"
|
||||
msgid "Text Color"
|
||||
msgstr "Warna Teks"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "Kata laluan yang anda masukkan tidak sepadan"
|
||||
#: apps/client/src/pages/public/error.tsx:17
|
||||
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 ""
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "Resume yang anda ingin kemaskini telah dikunci, sila buka kuncinya jika anda ingin membuat sebarang perubahan padanya."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1604,7 @@ msgstr "Jejak pandangan dan muat turun"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Pengesahan Dua Faktor"
|
||||
|
||||
@ -1552,11 +1626,12 @@ msgid "Type of Study"
|
||||
msgstr "Jenis Kajian"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Tipografi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Garis Bawah Pautan"
|
||||
|
||||
@ -1599,6 +1674,14 @@ msgstr "URL"
|
||||
msgid "URL must start with 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:57
|
||||
msgid "Use your backup code"
|
||||
@ -1651,7 +1734,7 @@ msgstr "Versi 4"
|
||||
msgid "Views"
|
||||
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"
|
||||
msgstr "Kelihatan"
|
||||
|
||||
@ -1665,15 +1748,15 @@ 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/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/experience.tsx:100
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:96
|
||||
msgid "Website"
|
||||
msgstr "Laman web"
|
||||
|
||||
@ -1681,10 +1764,14 @@ msgstr "Laman web"
|
||||
msgid "What's new in the latest version"
|
||||
msgstr "Apakah yang baru dalam versi terkini"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
||||
#: apps/client/src/pages/public/error.tsx:26
|
||||
msgid "You are not authorized to access this page."
|
||||
msgstr ""
|
||||
|
||||
#: 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."
|
||||
msgstr "Anda boleh menambah beberapa kata kunci dengan memisahkan mereka dengan koma atau menekan enter."
|
||||
|
||||
@ -1692,19 +1779,27 @@ msgstr "Anda boleh menambah beberapa kata kunci dengan memisahkan mereka dengan
|
||||
msgid "You can also enter your username."
|
||||
msgstr "Anda juga boleh memasukkan nama pengguna anda."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||
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."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||
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 ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
msgstr "Anda boleh menggunakan API OpenAI untuk membantu anda menghasilkan kandungan, atau meningkatkan penulisan anda semasa menyusun resume anda."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||
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 ""
|
||||
|
||||
#: 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."
|
||||
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."
|
||||
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 +1816,7 @@ msgstr "Anda telah menerima emel!"
|
||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||
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."
|
||||
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 +1828,7 @@ msgstr "Alamat emel anda telah disahkan dengan berjaya."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Kunci API OpenAI anda belum ditetapkan. Sila pergi ke tetapan akaun anda untuk membolehkan Integrasi OpenAI."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Kata laluan anda telah berjaya dikemas kini."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ne\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-11-04 14:22\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Nepali\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -30,27 +30,27 @@ msgstr ""
|
||||
msgid "{value, plural, one {Column} other {Columns}}"
|
||||
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>"
|
||||
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>"
|
||||
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."
|
||||
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>"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr ""
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr ""
|
||||
msgid "Add a custom field"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:203
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr ""
|
||||
@ -112,12 +112,12 @@ msgstr ""
|
||||
msgid "Add a new item"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:267
|
||||
msgid "Add a new section"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -133,6 +133,14 @@ msgstr ""
|
||||
msgid "An error occurred while validating the file."
|
||||
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
|
||||
msgid "and many more..."
|
||||
msgstr ""
|
||||
@ -152,11 +160,11 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr ""
|
||||
msgstr "के तपाईं यो वस्तु मेटाउन निश्चित हुनुहुन्छ?"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:149
|
||||
msgid "Are you sure you want to delete your resume?"
|
||||
msgstr ""
|
||||
msgstr "के तपाईं यो बायोडाटा मेटाउन निश्चित हुनुहुन्छ?"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:125
|
||||
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
|
||||
msgid "Are you sure?"
|
||||
msgstr ""
|
||||
msgstr "तपाईं पक्का हुनुहुन्छ?"
|
||||
|
||||
#. For example, Computer Science or Business Administration
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73
|
||||
@ -191,11 +199,23 @@ msgstr ""
|
||||
msgid "Awarder"
|
||||
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/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
msgstr "पछाडि"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73
|
||||
msgid "Background Color"
|
||||
@ -209,16 +229,16 @@ msgstr ""
|
||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||
msgid "Base URL"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:58
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
msgid "Basics"
|
||||
msgstr ""
|
||||
|
||||
@ -246,8 +266,8 @@ msgstr ""
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
#: apps/client/src/components/ai-actions.tsx:107
|
||||
#: apps/client/src/components/ai-actions.tsx:110
|
||||
msgid "Casual"
|
||||
msgstr ""
|
||||
|
||||
@ -255,12 +275,16 @@ msgstr ""
|
||||
msgid "Center Artboard"
|
||||
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/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
#: apps/client/src/components/ai-actions.tsx:101
|
||||
msgid "Change Tone"
|
||||
msgstr ""
|
||||
|
||||
@ -288,6 +312,16 @@ msgstr ""
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:272
|
||||
msgid "Collapse All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Collapse section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
@ -296,21 +330,17 @@ msgstr ""
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
#: apps/client/src/components/ai-actions.tsx:119
|
||||
#: apps/client/src/components/ai-actions.tsx:122
|
||||
msgid "Confident"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -351,7 +381,12 @@ msgstr ""
|
||||
msgid "Create Sample Resume"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
@ -360,7 +395,7 @@ msgstr ""
|
||||
msgid "Custom resume sections"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/stores/resume.ts:47
|
||||
#: apps/client/src/stores/resume.ts:53
|
||||
msgid "Custom Section"
|
||||
msgstr ""
|
||||
|
||||
@ -386,10 +421,10 @@ msgstr ""
|
||||
msgid "Date"
|
||||
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/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
|
||||
msgid "Date or Date Range"
|
||||
msgstr ""
|
||||
@ -407,11 +442,15 @@ msgstr ""
|
||||
msgid "Delete Account"
|
||||
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/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/skills.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
@ -423,18 +462,18 @@ msgstr ""
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
@ -442,7 +481,7 @@ msgstr ""
|
||||
msgid "Don't have an account?"
|
||||
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!"
|
||||
msgstr ""
|
||||
|
||||
@ -450,7 +489,7 @@ msgstr ""
|
||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -458,12 +497,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."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr ""
|
||||
|
||||
@ -487,7 +525,7 @@ msgstr ""
|
||||
msgid "Duplicate an existing resume"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -498,12 +536,12 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:90
|
||||
#: apps/client/src/pages/auth/register/page.tsx:141
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr ""
|
||||
|
||||
@ -531,6 +569,10 @@ msgstr ""
|
||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/public/error.tsx:46
|
||||
msgid "Error {statusCode}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||
msgid "Errors"
|
||||
msgstr ""
|
||||
@ -539,11 +581,22 @@ msgstr ""
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:271
|
||||
msgid "Expand All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Expand section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "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 ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
@ -564,19 +617,19 @@ msgstr ""
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr ""
|
||||
|
||||
@ -584,7 +637,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."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||
msgid "Forget"
|
||||
msgstr ""
|
||||
|
||||
@ -601,7 +654,7 @@ msgstr ""
|
||||
msgid "Format"
|
||||
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?"
|
||||
msgstr ""
|
||||
|
||||
@ -609,12 +662,12 @@ msgstr ""
|
||||
msgid "Free, forever"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:121
|
||||
#: apps/client/src/components/ai-actions.tsx:124
|
||||
#: apps/client/src/components/ai-actions.tsx:125
|
||||
#: apps/client/src/components/ai-actions.tsx:128
|
||||
msgid "Friendly"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:56
|
||||
msgid "Full Name"
|
||||
msgstr ""
|
||||
|
||||
@ -643,6 +696,10 @@ msgstr ""
|
||||
msgid "Go to Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/public/error.tsx:55
|
||||
msgid "Go to home"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||
msgid "Google"
|
||||
msgstr ""
|
||||
@ -651,11 +708,11 @@ msgstr ""
|
||||
msgid "Grayscale"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||
msgid "Grid"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:70
|
||||
msgid "Headline"
|
||||
msgstr ""
|
||||
|
||||
@ -668,7 +725,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
msgid "Hidden"
|
||||
msgstr ""
|
||||
@ -677,7 +734,7 @@ msgstr ""
|
||||
msgid "Hide"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr ""
|
||||
|
||||
@ -734,7 +791,7 @@ msgstr ""
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr ""
|
||||
|
||||
@ -743,7 +800,8 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx: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"
|
||||
msgstr ""
|
||||
|
||||
@ -802,10 +860,10 @@ msgstr ""
|
||||
msgid "JSON"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
@ -824,7 +882,8 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx: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"
|
||||
msgstr ""
|
||||
|
||||
@ -837,7 +896,7 @@ msgid "Letter"
|
||||
msgstr ""
|
||||
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -853,7 +912,7 @@ msgstr ""
|
||||
msgid "Light or dark theme"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr ""
|
||||
|
||||
@ -862,14 +921,14 @@ msgstr ""
|
||||
msgid "LinkedIn, JSON Resume, etc."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||
msgid "List"
|
||||
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/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:120
|
||||
msgid "Location"
|
||||
msgstr ""
|
||||
|
||||
@ -897,7 +956,7 @@ msgstr ""
|
||||
msgid "Lost your device?"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -914,7 +973,7 @@ msgstr ""
|
||||
|
||||
#: 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/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
|
||||
msgid "March 2023 - Present"
|
||||
msgstr ""
|
||||
@ -923,7 +982,7 @@ msgstr ""
|
||||
msgid "Margin"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||
msgid "Max Tokens"
|
||||
msgstr ""
|
||||
|
||||
@ -931,18 +990,18 @@ msgstr ""
|
||||
msgid "MIT License"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#: 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/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: 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/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/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/dashboard/settings/_sections/account.tsx:153
|
||||
msgid "Name"
|
||||
@ -957,7 +1016,7 @@ msgstr ""
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
@ -974,6 +1033,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
@ -1009,16 +1069,16 @@ msgstr ""
|
||||
msgid "OpenAI Integration"
|
||||
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"
|
||||
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/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
@ -1032,22 +1092,23 @@ msgid "Organization"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
#: 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}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||
msgid "PDF"
|
||||
msgstr ""
|
||||
|
||||
@ -1055,7 +1116,7 @@ msgstr ""
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:108
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
@ -1109,14 +1170,12 @@ msgstr ""
|
||||
msgid "Primary Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||
msgid "Privacy Policy"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
#: apps/client/src/components/ai-actions.tsx:113
|
||||
#: apps/client/src/components/ai-actions.tsx:116
|
||||
msgid "Professional"
|
||||
msgstr ""
|
||||
|
||||
@ -1132,7 +1191,7 @@ msgstr ""
|
||||
msgid "Publisher"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1144,11 +1203,10 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1175,12 +1233,12 @@ msgstr ""
|
||||
msgid "Redo"
|
||||
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
|
||||
msgid "Remove"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1199,7 +1257,7 @@ msgstr ""
|
||||
msgid "Reset"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1213,8 +1271,8 @@ msgid "Reset Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: 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:37
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||
msgid "Resumes"
|
||||
msgstr ""
|
||||
|
||||
@ -1237,11 +1295,11 @@ msgstr ""
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||
msgid "Save Locally"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||
msgid "Saved"
|
||||
msgstr ""
|
||||
|
||||
@ -1262,15 +1320,15 @@ msgstr ""
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
@ -1282,7 +1340,7 @@ msgstr ""
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
@ -1294,7 +1352,7 @@ msgstr ""
|
||||
msgid "Send Email"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1314,6 +1372,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr ""
|
||||
@ -1330,7 +1389,7 @@ msgstr ""
|
||||
msgid "Show Page Numbers"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1408,6 +1467,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr ""
|
||||
@ -1422,17 +1482,17 @@ msgstr ""
|
||||
|
||||
#: 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/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/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/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "Summary"
|
||||
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!"
|
||||
msgstr ""
|
||||
|
||||
@ -1444,11 +1504,20 @@ msgstr ""
|
||||
msgid "Supports A4/Letter page formats"
|
||||
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
|
||||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
@ -1465,8 +1534,12 @@ msgstr ""
|
||||
msgid "Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
#: apps/client/src/pages/public/error.tsx:17
|
||||
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 ""
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
@ -1474,6 +1547,7 @@ msgid "The resume you want to update is locked, please unlock if you wish to mak
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1604,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
@ -1552,11 +1626,12 @@ msgid "Type of Study"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr ""
|
||||
|
||||
@ -1599,6 +1674,14 @@ msgstr ""
|
||||
msgid "URL must start with https://"
|
||||
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:57
|
||||
msgid "Use your backup code"
|
||||
@ -1651,7 +1734,7 @@ msgstr ""
|
||||
msgid "Views"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1665,15 +1748,15 @@ msgstr ""
|
||||
|
||||
#: 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/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/experience.tsx:100
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:96
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
@ -1681,10 +1764,14 @@ msgstr ""
|
||||
msgid "What's new in the latest version"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
||||
#: apps/client/src/pages/public/error.tsx:26
|
||||
msgid "You are not authorized to access this page."
|
||||
msgstr ""
|
||||
|
||||
#: 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."
|
||||
msgstr ""
|
||||
|
||||
@ -1692,19 +1779,27 @@ msgstr ""
|
||||
msgid "You can also enter your username."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||
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."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||
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 ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||
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 ""
|
||||
|
||||
#: 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."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
@ -1721,7 +1816,7 @@ msgstr ""
|
||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
@ -1733,7 +1828,7 @@ msgstr ""
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: no\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-11-04 14:22\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Norwegian\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
|
||||
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
|
||||
msgid "{templatesCount} resume templates to choose from"
|
||||
@ -30,27 +30,27 @@ msgstr "{templatesCount} CV-maler å velge mellom"
|
||||
msgid "{value, plural, one {Column} other {Columns}}"
|
||||
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>"
|
||||
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>"
|
||||
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."
|
||||
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>"
|
||||
msgstr "<0>Fellesskapet har brukt mye tid på å skrive dokumentasjonen for Reactive Resume, og jeg er sikker på at det vil hjelpe deg med å komme i gang med appen.</0><1>Det er også mange eksempler som hjelper deg med å komme i gang, og funksjoner du kanskje ikke visste om som kan hjelpe deg med å skape din perfekte CV.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>Tofaktorautentisering er for øyeblikket deaktivert.</0> Du kan aktivere den ved å legge til en autentiseringsapp til kontoen din."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>Tofaktorautentisering er aktivert.</0> Du vil bli bedt om å skrive inn en kode hver gang du logger på."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Konto"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Legg til egendefinert felt"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:203
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Legg til nytt element"
|
||||
@ -112,12 +112,12 @@ msgstr "Legg til nytt element"
|
||||
msgid "Add a new item"
|
||||
msgstr "Legg til nytt element"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:267
|
||||
msgid "Add a new section"
|
||||
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"
|
||||
msgstr "Legg til ny side"
|
||||
|
||||
@ -133,6 +133,14 @@ msgstr "Har du allerede en konto?"
|
||||
msgid "An error occurred while validating the file."
|
||||
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
|
||||
msgid "and many more..."
|
||||
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
|
||||
msgid "Apply Custom CSS"
|
||||
msgstr ""
|
||||
msgstr "Bruk egendefinert CSS"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
@ -191,6 +199,18 @@ msgstr "Tilgjengelig på {languagesCount} språk"
|
||||
msgid "Awarder"
|
||||
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/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
@ -209,16 +229,16 @@ msgstr "Sikkerhetskopi-kode"
|
||||
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."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||
msgid "Base URL"
|
||||
msgstr "Basis-URL"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:58
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr "Grunnleggende"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
msgid "Basics"
|
||||
msgstr "Grunnleggende"
|
||||
|
||||
@ -246,8 +266,8 @@ msgstr "Av fellesskapet, for fellesskapet."
|
||||
msgid "Cancel"
|
||||
msgstr "Avbryt"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
#: apps/client/src/components/ai-actions.tsx:107
|
||||
#: apps/client/src/components/ai-actions.tsx:110
|
||||
msgid "Casual"
|
||||
msgstr "Uformell"
|
||||
|
||||
@ -255,12 +275,16 @@ msgstr "Uformell"
|
||||
msgid "Center Artboard"
|
||||
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/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Bytt Passord"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
#: apps/client/src/components/ai-actions.tsx:101
|
||||
msgid "Change Tone"
|
||||
msgstr "Endre Tone"
|
||||
|
||||
@ -288,6 +312,16 @@ msgstr "Kode"
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr "Koden må være nøyaktig 6 sifre lang."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:272
|
||||
msgid "Collapse All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Collapse section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136
|
||||
msgid "Columns"
|
||||
msgstr "Kolonner"
|
||||
@ -296,21 +330,17 @@ msgstr "Kolonner"
|
||||
msgid "Company"
|
||||
msgstr "Firma"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
#: apps/client/src/components/ai-actions.tsx:119
|
||||
#: apps/client/src/components/ai-actions.tsx:122
|
||||
msgid "Confident"
|
||||
msgstr "Selvsikker"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Bekreft Nytt Passord"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
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"
|
||||
msgstr "Kopier"
|
||||
|
||||
@ -351,16 +381,21 @@ msgstr "Opprett en nå"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Opprett Eksempel-CV"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr "Nåværende passord"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
msgstr "Tilpasset CSS"
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:62
|
||||
msgid "Custom resume sections"
|
||||
msgstr "Tilpassede CV-seksjoner"
|
||||
|
||||
#: apps/client/src/stores/resume.ts:47
|
||||
#: apps/client/src/stores/resume.ts:53
|
||||
msgid "Custom Section"
|
||||
msgstr "Tilpasset Seksjon"
|
||||
|
||||
@ -386,10 +421,10 @@ msgstr "Mørk"
|
||||
msgid "Date"
|
||||
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/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
|
||||
msgid "Date or Date Range"
|
||||
msgstr "Dato eller Datoperiode"
|
||||
@ -407,11 +442,15 @@ msgstr "Slett"
|
||||
msgid "Delete Account"
|
||||
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/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/skills.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||
msgid "Description"
|
||||
msgstr "Beskrivelse"
|
||||
|
||||
@ -423,18 +462,18 @@ msgstr "Design enkelt-/flerside-CV"
|
||||
msgid "Disable"
|
||||
msgstr "Deaktiver"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Deaktiver 2FA"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Forkast"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentasjon"
|
||||
|
||||
@ -442,7 +481,7 @@ msgstr "Dokumentasjon"
|
||||
msgid "Don't have an account?"
|
||||
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!"
|
||||
msgstr "Vet du ikke hvor du skal begynne? Trykk på dokumentene!"
|
||||
|
||||
@ -450,7 +489,7 @@ msgstr "Vet du ikke hvor du skal begynne? Trykk på dokumentene!"
|
||||
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>"
|
||||
|
||||
#: 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"
|
||||
msgstr "Doner til Reactive Resume"
|
||||
|
||||
@ -458,12 +497,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."
|
||||
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."
|
||||
msgstr "Last ned en PDF av CV-en din. Denne filen kan brukes til å skrive ut CV-en din, sende den til rekrutterere eller laste opp på jobbportaler."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Last ned PDF"
|
||||
|
||||
@ -487,7 +525,7 @@ msgstr "Dupliser et eksisterende element"
|
||||
msgid "Duplicate an existing resume"
|
||||
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"
|
||||
msgstr "Rediger"
|
||||
|
||||
@ -498,12 +536,12 @@ msgstr "Effekter"
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:90
|
||||
#: apps/client/src/pages/auth/register/page.tsx:141
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181
|
||||
msgid "Email"
|
||||
msgstr "E-post"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Aktiver 2FA"
|
||||
|
||||
@ -531,6 +569,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."
|
||||
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
|
||||
msgid "Errors"
|
||||
msgstr "Feil"
|
||||
@ -539,11 +581,22 @@ msgstr "Feil"
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr "Selv om du ikke er i stand til å bidra økonomisk, kan du fortsatt gjøre en forskjell ved å gi GitHub-depotet en stjerne, spre ordet til vennene dine eller sende en rask melding for å fortelle meg hvordan Reactive Resume har hjulpet deg. Din tilbakemelding og støtte er alltid velkommen og settes stor pris på!"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:271
|
||||
msgid "Expand All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Expand section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "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 "Utforsk malene som er tilgjengelige i Reactive Resume og se CVene laget med dem. De kan også være fine eksempler for å hjelpe deg med å lage din neste CV."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Eksporter"
|
||||
@ -564,19 +617,19 @@ msgstr "Endelig,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Fiks Staving og Grammatikk"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Skrifttype"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Skriftstørrelse"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Skriftdelsett"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Skriftvarianter"
|
||||
|
||||
@ -584,7 +637,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."
|
||||
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"
|
||||
msgstr "Glem"
|
||||
|
||||
@ -601,7 +654,7 @@ msgstr "Glemt ditt passord?"
|
||||
msgid "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?"
|
||||
msgstr "Funnet en feil, eller har en idé til en ny funksjon?"
|
||||
|
||||
@ -609,12 +662,12 @@ msgstr "Funnet en feil, eller har en idé til en ny funksjon?"
|
||||
msgid "Free, forever"
|
||||
msgstr "Gratis, for alltid"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:121
|
||||
#: apps/client/src/components/ai-actions.tsx:124
|
||||
#: apps/client/src/components/ai-actions.tsx:125
|
||||
#: apps/client/src/components/ai-actions.tsx:128
|
||||
msgid "Friendly"
|
||||
msgstr "Vennlig"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:56
|
||||
msgid "Full Name"
|
||||
msgstr "Fullt Navn"
|
||||
|
||||
@ -643,6 +696,10 @@ msgstr "Gi din gamle CV et nytt navn."
|
||||
msgid "Go to Dashboard"
|
||||
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
|
||||
msgid "Google"
|
||||
msgstr "Google"
|
||||
@ -651,11 +708,11 @@ msgstr "Google"
|
||||
msgid "Grayscale"
|
||||
msgstr "Gråtone"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||
msgid "Grid"
|
||||
msgstr "Rutenett"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:70
|
||||
msgid "Headline"
|
||||
msgstr "Overskrift"
|
||||
|
||||
@ -668,7 +725,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."
|
||||
|
||||
#: 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
|
||||
msgid "Hidden"
|
||||
msgstr "Skjult"
|
||||
@ -677,7 +734,7 @@ msgstr "Skjult"
|
||||
msgid "Hide"
|
||||
msgstr "Skjul"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Skjul Ikoner"
|
||||
|
||||
@ -734,7 +791,7 @@ msgstr "Forbedre Skriving"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Hvis du ikke klarer å skanne denne QR-koden, kan du også kopiere og lime inn denne lenken i autentiseringsappen din."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "I denne delen kan du endre passordet ditt og aktivere/deaktivere tofaktorautentisering."
|
||||
|
||||
@ -743,7 +800,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>."
|
||||
|
||||
#: 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"
|
||||
msgstr "Informasjon"
|
||||
|
||||
@ -802,10 +860,10 @@ msgstr "ola.nordmann@eksempel.no"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||
msgid "Keywords"
|
||||
msgstr "Nøkkelord"
|
||||
|
||||
@ -824,7 +882,8 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Sist oppdatert {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx: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"
|
||||
msgstr "Utforming"
|
||||
|
||||
@ -837,7 +896,7 @@ msgid "Letter"
|
||||
msgstr "Brev"
|
||||
|
||||
#: 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"
|
||||
msgstr "Nivå"
|
||||
|
||||
@ -853,7 +912,7 @@ msgstr "Lyst"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Lyst eller mørkt tema"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Linjehøyde"
|
||||
|
||||
@ -862,14 +921,14 @@ msgstr "Linjehøyde"
|
||||
msgid "LinkedIn, JSON Resume, etc."
|
||||
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"
|
||||
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/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:120
|
||||
msgid "Location"
|
||||
msgstr "Sted"
|
||||
|
||||
@ -897,7 +956,7 @@ msgstr "Logg ut"
|
||||
msgid "Lost your device?"
|
||||
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"
|
||||
msgstr "Hoved"
|
||||
|
||||
@ -914,7 +973,7 @@ msgstr "Mars 2023"
|
||||
|
||||
#: 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/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
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "Mars 2023 - Nåværende"
|
||||
@ -923,7 +982,7 @@ msgstr "Mars 2023 - Nåværende"
|
||||
msgid "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"
|
||||
msgstr "Maks antall tegn"
|
||||
|
||||
@ -931,18 +990,18 @@ msgstr "Maks antall tegn"
|
||||
msgid "MIT License"
|
||||
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"
|
||||
msgstr "Modell"
|
||||
|
||||
#: 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/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: 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/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/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/dashboard/settings/_sections/account.tsx:153
|
||||
msgid "Name"
|
||||
@ -957,7 +1016,7 @@ msgstr "Navn"
|
||||
msgid "Network"
|
||||
msgstr "Nettverk"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Nytt Passord"
|
||||
|
||||
@ -974,6 +1033,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Merk: Dette vil gjøre kontoen din mindre sikker."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Notater"
|
||||
@ -993,7 +1053,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:148
|
||||
msgid "Open"
|
||||
msgstr "Åpen"
|
||||
msgstr "Åpne"
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:47
|
||||
msgid "Open Source"
|
||||
@ -1009,16 +1069,16 @@ msgstr "OpenAI returnerte ingen valg for teksten din."
|
||||
msgid "OpenAI Integration"
|
||||
msgstr "OpenAI-integrasjon"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
||||
msgid "OpenAI/Ollama API Key"
|
||||
msgstr ""
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||
msgstr "OpenAI/Azure OpenAI/Ollama integrasjon"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
||||
msgid "OpenAI/Ollama Integration"
|
||||
msgstr ""
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||
msgid "OpenAI/Ollama API Key"
|
||||
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/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Innstillinger"
|
||||
|
||||
@ -1032,22 +1092,23 @@ msgid "Organization"
|
||||
msgstr "Organisasjon"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Side"
|
||||
|
||||
#: 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}"
|
||||
msgstr ""
|
||||
msgstr "Side {pageNumber}"
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "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"
|
||||
msgstr "PDF"
|
||||
|
||||
@ -1055,7 +1116,7 @@ msgstr "PDF"
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr "Personlige notater for hver CV"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:108
|
||||
msgid "Phone"
|
||||
msgstr "Telefon"
|
||||
|
||||
@ -1109,14 +1170,12 @@ msgstr "Drevet av <0>Simple Icons</0>"
|
||||
msgid "Primary Color"
|
||||
msgstr "Hovedfarge"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Retningslinjer for personvern"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
#: apps/client/src/components/ai-actions.tsx:113
|
||||
#: apps/client/src/components/ai-actions.tsx:116
|
||||
msgid "Professional"
|
||||
msgstr "Profesjonell"
|
||||
|
||||
@ -1132,7 +1191,7 @@ msgstr "Offentlig"
|
||||
msgid "Publisher"
|
||||
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"
|
||||
msgstr "Ta opp et problem"
|
||||
|
||||
@ -1144,11 +1203,10 @@ msgstr "Ta opp et problem"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1175,12 +1233,12 @@ msgstr "Reactive Resume trives takket være sitt pulserende fellesskap. Dette pr
|
||||
msgid "Redo"
|
||||
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
|
||||
msgid "Remove"
|
||||
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"
|
||||
msgstr "Fjern Side"
|
||||
|
||||
@ -1199,7 +1257,7 @@ msgstr "Send e-post bekreftelselenken på nytt"
|
||||
msgid "Reset"
|
||||
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"
|
||||
msgstr "Tilbakestill oppsett"
|
||||
|
||||
@ -1213,8 +1271,8 @@ msgid "Reset Zoom"
|
||||
msgstr "Tilbakestill zoom"
|
||||
|
||||
#: 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:37
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||
msgid "Resumes"
|
||||
msgstr "CV-er"
|
||||
|
||||
@ -1237,11 +1295,11 @@ msgstr "Avrundet"
|
||||
msgid "Save Changes"
|
||||
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"
|
||||
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"
|
||||
msgstr "Lagret"
|
||||
|
||||
@ -1256,21 +1314,21 @@ msgstr "Poengsum"
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:104
|
||||
msgid "Scroll to Pan"
|
||||
msgstr ""
|
||||
msgstr "Rull for å panorere"
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:104
|
||||
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"
|
||||
msgstr "Søk etter en skriftfamilie"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Søk etter et skriftundersett"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Søk etter en skriftvariant"
|
||||
|
||||
@ -1282,7 +1340,7 @@ msgstr "Søk etter et språk"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Sikker med tofaktorautentisering"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Sikkerhet"
|
||||
|
||||
@ -1294,7 +1352,7 @@ msgstr "Selv-vert med Docker"
|
||||
msgid "Send Email"
|
||||
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"
|
||||
msgstr "Send meg en melding"
|
||||
|
||||
@ -1314,6 +1372,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Sett opp totrinnsverifisering på kontoen din"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Deling"
|
||||
@ -1330,7 +1389,7 @@ msgstr "Vis bruddlinje"
|
||||
msgid "Show Page Numbers"
|
||||
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"
|
||||
msgstr "Sidepanel"
|
||||
|
||||
@ -1408,6 +1467,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Begynn å bygge din CV ved å gi den et navn."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Statistikk"
|
||||
@ -1422,17 +1482,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/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/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/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "Summary"
|
||||
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!"
|
||||
msgstr "Støtt appen ved å donere det du kan!"
|
||||
|
||||
@ -1444,11 +1504,20 @@ msgstr "Støtter Reactive Resume"
|
||||
msgid "Supports A4/Letter page formats"
|
||||
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
|
||||
msgid "System"
|
||||
msgstr "System"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Mal"
|
||||
@ -1465,15 +1534,20 @@ msgstr "Uttalelser"
|
||||
msgid "Text Color"
|
||||
msgstr "Tekstfarge"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "Passordene du har angitt stemmer ikke overens."
|
||||
#: apps/client/src/pages/public/error.tsx:17
|
||||
msgid "The page you're looking for doesn't exist."
|
||||
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
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "CV-en du vil oppdatere er låst. Lås opp hvis du ønsker å gjøre endringer i den."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1604,7 @@ msgstr "Spor visninger og nedlastinger"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Tofaktorautentisering"
|
||||
|
||||
@ -1552,11 +1626,12 @@ msgid "Type of Study"
|
||||
msgstr "Studietype"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Typografi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Understrek koblinger"
|
||||
|
||||
@ -1599,6 +1674,14 @@ msgstr "URL"
|
||||
msgid "URL must start with 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:57
|
||||
msgid "Use your backup code"
|
||||
@ -1651,13 +1734,13 @@ msgstr "Versjon 4"
|
||||
msgid "Views"
|
||||
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"
|
||||
msgstr "Synlig"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70
|
||||
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
|
||||
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,15 +1748,15 @@ 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/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/experience.tsx:100
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:96
|
||||
msgid "Website"
|
||||
msgstr "Nettsted"
|
||||
|
||||
@ -1681,10 +1764,14 @@ msgstr "Nettsted"
|
||||
msgid "What's new in the latest version"
|
||||
msgstr "Hva er nytt i den nyeste versjonen"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
||||
#: apps/client/src/pages/public/error.tsx:26
|
||||
msgid "You are not authorized to access this page."
|
||||
msgstr "Du har ikke adgang til denne siden."
|
||||
|
||||
#: 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."
|
||||
msgstr "Du kan legge til flere nøkkelord ved å skille dem med et komma eller trykke enter."
|
||||
|
||||
@ -1692,19 +1779,27 @@ msgstr "Du kan legge til flere nøkkelord ved å skille dem med et komma eller t
|
||||
msgid "You can also enter your username."
|
||||
msgstr "Du kan også skrive inn brukernavnet ditt."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||
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."
|
||||
msgstr ""
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||
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 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
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
msgstr "Du kan bruke OpenAI API for å hjelpe deg med å generere innhold, eller forbedre skrivingen din mens du skriver din CV."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||
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 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
|
||||
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."
|
||||
|
||||
#: 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."
|
||||
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 +1816,7 @@ msgstr "Du har fått e-post!"
|
||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||
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."
|
||||
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 +1828,7 @@ msgstr "E-postadressen din har blitt bekreftet."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Din OpenAI API-nøkkel er ikke angitt ennå. Gå til kontoinnstillingene dine for å aktivere OpenAI-integrasjon."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Passordet ditt har blitt oppdatert."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: or\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-11-04 14:22\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Odia\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -30,27 +30,27 @@ msgstr ""
|
||||
msgid "{value, plural, one {Column} other {Columns}}"
|
||||
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>"
|
||||
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>"
|
||||
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."
|
||||
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>"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr ""
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr ""
|
||||
msgid "Add a custom field"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:203
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr ""
|
||||
@ -112,12 +112,12 @@ msgstr ""
|
||||
msgid "Add a new item"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:267
|
||||
msgid "Add a new section"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -133,6 +133,14 @@ msgstr ""
|
||||
msgid "An error occurred while validating the file."
|
||||
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
|
||||
msgid "and many more..."
|
||||
msgstr ""
|
||||
@ -191,6 +199,18 @@ msgstr ""
|
||||
msgid "Awarder"
|
||||
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/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
@ -209,16 +229,16 @@ msgstr ""
|
||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||
msgid "Base URL"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:58
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
msgid "Basics"
|
||||
msgstr ""
|
||||
|
||||
@ -246,8 +266,8 @@ msgstr ""
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
#: apps/client/src/components/ai-actions.tsx:107
|
||||
#: apps/client/src/components/ai-actions.tsx:110
|
||||
msgid "Casual"
|
||||
msgstr ""
|
||||
|
||||
@ -255,12 +275,16 @@ msgstr ""
|
||||
msgid "Center Artboard"
|
||||
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/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
#: apps/client/src/components/ai-actions.tsx:101
|
||||
msgid "Change Tone"
|
||||
msgstr ""
|
||||
|
||||
@ -288,6 +312,16 @@ msgstr ""
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:272
|
||||
msgid "Collapse All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Collapse section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
@ -296,21 +330,17 @@ msgstr ""
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
#: apps/client/src/components/ai-actions.tsx:119
|
||||
#: apps/client/src/components/ai-actions.tsx:122
|
||||
msgid "Confident"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -351,7 +381,12 @@ msgstr ""
|
||||
msgid "Create Sample Resume"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
@ -360,7 +395,7 @@ msgstr ""
|
||||
msgid "Custom resume sections"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/stores/resume.ts:47
|
||||
#: apps/client/src/stores/resume.ts:53
|
||||
msgid "Custom Section"
|
||||
msgstr ""
|
||||
|
||||
@ -386,10 +421,10 @@ msgstr ""
|
||||
msgid "Date"
|
||||
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/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
|
||||
msgid "Date or Date Range"
|
||||
msgstr ""
|
||||
@ -407,11 +442,15 @@ msgstr ""
|
||||
msgid "Delete Account"
|
||||
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/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/skills.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
@ -423,18 +462,18 @@ msgstr ""
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
@ -442,7 +481,7 @@ msgstr ""
|
||||
msgid "Don't have an account?"
|
||||
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!"
|
||||
msgstr ""
|
||||
|
||||
@ -450,7 +489,7 @@ msgstr ""
|
||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -458,12 +497,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."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr ""
|
||||
|
||||
@ -487,7 +525,7 @@ msgstr ""
|
||||
msgid "Duplicate an existing resume"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -498,12 +536,12 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:90
|
||||
#: apps/client/src/pages/auth/register/page.tsx:141
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr ""
|
||||
|
||||
@ -531,6 +569,10 @@ msgstr ""
|
||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/public/error.tsx:46
|
||||
msgid "Error {statusCode}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||
msgid "Errors"
|
||||
msgstr ""
|
||||
@ -539,11 +581,22 @@ msgstr ""
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:271
|
||||
msgid "Expand All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Expand section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "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 ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
@ -564,19 +617,19 @@ msgstr ""
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr ""
|
||||
|
||||
@ -584,7 +637,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."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||
msgid "Forget"
|
||||
msgstr ""
|
||||
|
||||
@ -601,7 +654,7 @@ msgstr ""
|
||||
msgid "Format"
|
||||
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?"
|
||||
msgstr ""
|
||||
|
||||
@ -609,12 +662,12 @@ msgstr ""
|
||||
msgid "Free, forever"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:121
|
||||
#: apps/client/src/components/ai-actions.tsx:124
|
||||
#: apps/client/src/components/ai-actions.tsx:125
|
||||
#: apps/client/src/components/ai-actions.tsx:128
|
||||
msgid "Friendly"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:56
|
||||
msgid "Full Name"
|
||||
msgstr ""
|
||||
|
||||
@ -643,6 +696,10 @@ msgstr ""
|
||||
msgid "Go to Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/public/error.tsx:55
|
||||
msgid "Go to home"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||
msgid "Google"
|
||||
msgstr ""
|
||||
@ -651,11 +708,11 @@ msgstr ""
|
||||
msgid "Grayscale"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||
msgid "Grid"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:70
|
||||
msgid "Headline"
|
||||
msgstr ""
|
||||
|
||||
@ -668,7 +725,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
msgid "Hidden"
|
||||
msgstr ""
|
||||
@ -677,7 +734,7 @@ msgstr ""
|
||||
msgid "Hide"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr ""
|
||||
|
||||
@ -734,7 +791,7 @@ msgstr ""
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr ""
|
||||
|
||||
@ -743,7 +800,8 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx: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"
|
||||
msgstr ""
|
||||
|
||||
@ -802,10 +860,10 @@ msgstr ""
|
||||
msgid "JSON"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
@ -824,7 +882,8 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx: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"
|
||||
msgstr ""
|
||||
|
||||
@ -837,7 +896,7 @@ msgid "Letter"
|
||||
msgstr ""
|
||||
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -853,7 +912,7 @@ msgstr ""
|
||||
msgid "Light or dark theme"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr ""
|
||||
|
||||
@ -862,14 +921,14 @@ msgstr ""
|
||||
msgid "LinkedIn, JSON Resume, etc."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||
msgid "List"
|
||||
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/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:120
|
||||
msgid "Location"
|
||||
msgstr ""
|
||||
|
||||
@ -897,7 +956,7 @@ msgstr ""
|
||||
msgid "Lost your device?"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -914,7 +973,7 @@ msgstr ""
|
||||
|
||||
#: 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/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
|
||||
msgid "March 2023 - Present"
|
||||
msgstr ""
|
||||
@ -923,7 +982,7 @@ msgstr ""
|
||||
msgid "Margin"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||
msgid "Max Tokens"
|
||||
msgstr ""
|
||||
|
||||
@ -931,18 +990,18 @@ msgstr ""
|
||||
msgid "MIT License"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#: 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/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: 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/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/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/dashboard/settings/_sections/account.tsx:153
|
||||
msgid "Name"
|
||||
@ -957,7 +1016,7 @@ msgstr ""
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
@ -974,6 +1033,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
@ -1009,16 +1069,16 @@ msgstr ""
|
||||
msgid "OpenAI Integration"
|
||||
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"
|
||||
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/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
@ -1032,22 +1092,23 @@ msgid "Organization"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
#: 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}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||
msgid "PDF"
|
||||
msgstr ""
|
||||
|
||||
@ -1055,7 +1116,7 @@ msgstr ""
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:108
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
@ -1109,14 +1170,12 @@ msgstr ""
|
||||
msgid "Primary Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||
msgid "Privacy Policy"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
#: apps/client/src/components/ai-actions.tsx:113
|
||||
#: apps/client/src/components/ai-actions.tsx:116
|
||||
msgid "Professional"
|
||||
msgstr ""
|
||||
|
||||
@ -1132,7 +1191,7 @@ msgstr ""
|
||||
msgid "Publisher"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1144,11 +1203,10 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1175,12 +1233,12 @@ msgstr ""
|
||||
msgid "Redo"
|
||||
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
|
||||
msgid "Remove"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1199,7 +1257,7 @@ msgstr ""
|
||||
msgid "Reset"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1213,8 +1271,8 @@ msgid "Reset Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: 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:37
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||
msgid "Resumes"
|
||||
msgstr ""
|
||||
|
||||
@ -1237,11 +1295,11 @@ msgstr ""
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||
msgid "Save Locally"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||
msgid "Saved"
|
||||
msgstr ""
|
||||
|
||||
@ -1262,15 +1320,15 @@ msgstr ""
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
@ -1282,7 +1340,7 @@ msgstr ""
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
@ -1294,7 +1352,7 @@ msgstr ""
|
||||
msgid "Send Email"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1314,6 +1372,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr ""
|
||||
@ -1330,7 +1389,7 @@ msgstr ""
|
||||
msgid "Show Page Numbers"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1408,6 +1467,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr ""
|
||||
@ -1422,17 +1482,17 @@ msgstr ""
|
||||
|
||||
#: 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/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/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/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "Summary"
|
||||
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!"
|
||||
msgstr ""
|
||||
|
||||
@ -1444,11 +1504,20 @@ msgstr ""
|
||||
msgid "Supports A4/Letter page formats"
|
||||
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
|
||||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
@ -1465,8 +1534,12 @@ msgstr ""
|
||||
msgid "Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
#: apps/client/src/pages/public/error.tsx:17
|
||||
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 ""
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
@ -1474,6 +1547,7 @@ msgid "The resume you want to update is locked, please unlock if you wish to mak
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1604,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
@ -1552,11 +1626,12 @@ msgid "Type of Study"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr ""
|
||||
|
||||
@ -1599,6 +1674,14 @@ msgstr ""
|
||||
msgid "URL must start with https://"
|
||||
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:57
|
||||
msgid "Use your backup code"
|
||||
@ -1651,7 +1734,7 @@ msgstr ""
|
||||
msgid "Views"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1665,15 +1748,15 @@ msgstr ""
|
||||
|
||||
#: 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/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/experience.tsx:100
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:96
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
@ -1681,10 +1764,14 @@ msgstr ""
|
||||
msgid "What's new in the latest version"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
||||
#: apps/client/src/pages/public/error.tsx:26
|
||||
msgid "You are not authorized to access this page."
|
||||
msgstr ""
|
||||
|
||||
#: 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."
|
||||
msgstr ""
|
||||
|
||||
@ -1692,19 +1779,27 @@ msgstr ""
|
||||
msgid "You can also enter your username."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||
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."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||
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 ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||
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 ""
|
||||
|
||||
#: 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."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
@ -1721,7 +1816,7 @@ msgstr ""
|
||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
@ -1733,7 +1828,7 @@ msgstr ""
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: pl\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-11-04 14:22\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Polish\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||
@ -30,27 +30,27 @@ msgstr "{templatesCount} szablonów dostępnych"
|
||||
msgid "{value, plural, one {Column} other {Columns}}"
|
||||
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>"
|
||||
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>"
|
||||
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."
|
||||
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>"
|
||||
msgstr "<0>Społeczność poświęciła wiele czasu na napisanie dokumentacji dla Reactive Resume i jestem pewien, że pomoże Ci ona rozpocząć pracę z aplikacją.</0><1>Istnieje również wiele przykładów, które pomogą Ci rozpocząć pracę, a także funkcje, o których możesz nie wiedzieć, które mogą pomóc Ci zbudować idealne CV.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>Uwierzytelnianie dwuskładnikowe jest obecnie wyłączone.</0> Można je włączyć, dodając do konta aplikację uwierzytelniającą."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>Uwierzytelnianie dwuskładnikowe jest włączone.</0> Przy każdym logowaniu zostaniesz poproszony/a o wprowadzenie kodu."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Konto"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Dodaj niestandardowe pole"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:203
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Dodaj nowy element"
|
||||
@ -112,12 +112,12 @@ msgstr "Dodaj nowy element"
|
||||
msgid "Add a new item"
|
||||
msgstr "Dodaj nowy element"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:267
|
||||
msgid "Add a new section"
|
||||
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"
|
||||
msgstr "Dodaj nową stronę"
|
||||
|
||||
@ -133,6 +133,14 @@ msgstr "Posiadasz już konto?"
|
||||
msgid "An error occurred while validating the file."
|
||||
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
|
||||
msgid "and many more..."
|
||||
msgstr "i wiele więcej..."
|
||||
@ -191,6 +199,18 @@ msgstr "Dostępne w {languagesCount} językach"
|
||||
msgid "Awarder"
|
||||
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/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
@ -209,16 +229,16 @@ msgstr "Kod Zapasowy"
|
||||
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."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||
msgid "Base URL"
|
||||
msgstr "Podstawowy adres URL"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:58
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr "Podstawy"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
msgid "Basics"
|
||||
msgstr "Podstawy"
|
||||
|
||||
@ -246,8 +266,8 @@ msgstr "Zbudowane przez społeczność dla społeczności."
|
||||
msgid "Cancel"
|
||||
msgstr "Anuluj"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
#: apps/client/src/components/ai-actions.tsx:107
|
||||
#: apps/client/src/components/ai-actions.tsx:110
|
||||
msgid "Casual"
|
||||
msgstr "Nieformalnie"
|
||||
|
||||
@ -255,12 +275,16 @@ msgstr "Nieformalnie"
|
||||
msgid "Center Artboard"
|
||||
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/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Zmień hasło"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
#: apps/client/src/components/ai-actions.tsx:101
|
||||
msgid "Change Tone"
|
||||
msgstr "Zmień ton"
|
||||
|
||||
@ -288,6 +312,16 @@ msgstr "Kod"
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr "Kod musi mieć dokładnie 6 cyfr."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:272
|
||||
msgid "Collapse All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Collapse section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136
|
||||
msgid "Columns"
|
||||
msgstr "Kolumny"
|
||||
@ -296,21 +330,17 @@ msgstr "Kolumny"
|
||||
msgid "Company"
|
||||
msgstr "Firma"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
#: apps/client/src/components/ai-actions.tsx:119
|
||||
#: apps/client/src/components/ai-actions.tsx:122
|
||||
msgid "Confident"
|
||||
msgstr "Pewny siebie"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Potwierdź Nowe Hasło"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
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"
|
||||
msgstr "Kopiuj"
|
||||
|
||||
@ -351,7 +381,12 @@ msgstr "Stwórz teraz"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Stwórz przykładowe CV"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr "Obecne hasło"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "Niestandardowy CSS"
|
||||
@ -360,7 +395,7 @@ msgstr "Niestandardowy CSS"
|
||||
msgid "Custom resume sections"
|
||||
msgstr "Niestandardowe sekcje CV"
|
||||
|
||||
#: apps/client/src/stores/resume.ts:47
|
||||
#: apps/client/src/stores/resume.ts:53
|
||||
msgid "Custom Section"
|
||||
msgstr "Sekcja niestandardowa"
|
||||
|
||||
@ -386,10 +421,10 @@ msgstr "Ciemny"
|
||||
msgid "Date"
|
||||
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/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
|
||||
msgid "Date or Date Range"
|
||||
msgstr "Data lub zakres dat"
|
||||
@ -407,11 +442,15 @@ msgstr "Usuń"
|
||||
msgid "Delete Account"
|
||||
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/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/skills.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||
msgid "Description"
|
||||
msgstr "Opis"
|
||||
|
||||
@ -423,18 +462,18 @@ msgstr "Projektuj CV jedno/wielostronicowe"
|
||||
msgid "Disable"
|
||||
msgstr "Wyłącz"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Wyłącz uwierzytelnianie dwuskładnikowe"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Odrzuć"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentacja"
|
||||
|
||||
@ -442,7 +481,7 @@ msgstr "Dokumentacja"
|
||||
msgid "Don't have an account?"
|
||||
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!"
|
||||
msgstr "Nie wiesz od czego zacząć? Przejdź do dokumentów!"
|
||||
|
||||
@ -450,7 +489,7 @@ msgstr "Nie wiesz od czego zacząć? Przejdź do dokumentów!"
|
||||
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>"
|
||||
|
||||
#: 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"
|
||||
msgstr "Przekaż darowiznę na rzecz Reactive Resume"
|
||||
|
||||
@ -458,12 +497,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."
|
||||
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."
|
||||
msgstr "Pobierz plik PDF ze swoim CV. Plik ten można wykorzystać do wydrukowania CV, przesłania go rekruterom lub przesłania na portale pracy."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Pobierz PDF"
|
||||
|
||||
@ -487,7 +525,7 @@ msgstr "Duplikuj istniejący element"
|
||||
msgid "Duplicate an existing resume"
|
||||
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"
|
||||
msgstr "Edytuj"
|
||||
|
||||
@ -498,12 +536,12 @@ msgstr "Efekty"
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:90
|
||||
#: apps/client/src/pages/auth/register/page.tsx:141
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181
|
||||
msgid "Email"
|
||||
msgstr "E-mail"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Włącz 2FA"
|
||||
|
||||
@ -531,6 +569,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."
|
||||
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
|
||||
msgid "Errors"
|
||||
msgstr "Błędy"
|
||||
@ -539,11 +581,22 @@ msgstr "Błędy"
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr "Nawet jeśli nie jesteś w stanie finansowo wspomóc, nadal możesz mieć wpływ, dodając gwiazdkę na GitHubie, rozpowszechniając informacje wśród znajomych lub zostawiając krótką wiadomość, informując mnie, w jaki sposób Reactive Resume pomógł Ci. Twoja opinia i wsparcie zawsze są mile widziane i bardzo doceniane!"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:271
|
||||
msgid "Expand All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Expand section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "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 "Przeglądaj szablony dostępne w Reactive Resume i przeglądaj CV utworzone za ich pomocą. Mogą również służyć jako przykłady, które pomogą w tworzeniu kolejnego CV."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Eksportuj"
|
||||
@ -564,19 +617,19 @@ msgstr "Na koniec,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Popraw pisownię i gramatykę"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Czcionka"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Rozmiar Czcionki"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Podzbiór czcionek"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Wariant Czcionki"
|
||||
|
||||
@ -584,7 +637,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."
|
||||
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"
|
||||
msgstr "Zapomnij"
|
||||
|
||||
@ -601,7 +654,7 @@ msgstr "Nie pamiętasz hasła?"
|
||||
msgid "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?"
|
||||
msgstr "Znalazłeś błąd lub masz pomysł na nową funkcję?"
|
||||
|
||||
@ -609,12 +662,12 @@ msgstr "Znalazłeś błąd lub masz pomysł na nową funkcję?"
|
||||
msgid "Free, forever"
|
||||
msgstr "Za darmo, na zawsze"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:121
|
||||
#: apps/client/src/components/ai-actions.tsx:124
|
||||
#: apps/client/src/components/ai-actions.tsx:125
|
||||
#: apps/client/src/components/ai-actions.tsx:128
|
||||
msgid "Friendly"
|
||||
msgstr "Przyjazny"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:56
|
||||
msgid "Full Name"
|
||||
msgstr "Imię i nazwisko"
|
||||
|
||||
@ -643,6 +696,10 @@ msgstr "Nadaj swojemu staremu CV nową nazwę."
|
||||
msgid "Go to Dashboard"
|
||||
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
|
||||
msgid "Google"
|
||||
msgstr "Google"
|
||||
@ -651,11 +708,11 @@ msgstr "Google"
|
||||
msgid "Grayscale"
|
||||
msgstr "Skala szarości"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||
msgid "Grid"
|
||||
msgstr "Siatka"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:70
|
||||
msgid "Headline"
|
||||
msgstr "Nagłówek"
|
||||
|
||||
@ -668,7 +725,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."
|
||||
|
||||
#: 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
|
||||
msgid "Hidden"
|
||||
msgstr "Ukryte"
|
||||
@ -677,7 +734,7 @@ msgstr "Ukryte"
|
||||
msgid "Hide"
|
||||
msgstr "Ukryj"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Ukryj Ikony"
|
||||
|
||||
@ -734,7 +791,7 @@ msgstr "Popraw Pisanie"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Jeśli nie możesz zeskanować tego kodu QR, możesz również skopiować i wkleić ten link do swojej aplikacji uwierzytelniającej."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "W tej sekcji możesz zmienić swoje hasło i włączyć/wyłączyć uwierzytelnianie dwuskładnikowe."
|
||||
|
||||
@ -743,7 +800,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>."
|
||||
|
||||
#: 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"
|
||||
msgstr "Informacje"
|
||||
|
||||
@ -802,10 +860,10 @@ msgstr "jan.kowalski@przyklad.pl"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||
msgid "Keywords"
|
||||
msgstr "Słowa Kluczowe"
|
||||
|
||||
@ -824,7 +882,8 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Ostatnio zaktualizowane {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx: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"
|
||||
msgstr "Układ"
|
||||
|
||||
@ -837,7 +896,7 @@ msgid "Letter"
|
||||
msgstr "List"
|
||||
|
||||
#: 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"
|
||||
msgstr "Poziom"
|
||||
|
||||
@ -853,7 +912,7 @@ msgstr "Jasny"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Jasny lub ciemny motyw"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Wysokość wiersza"
|
||||
|
||||
@ -862,14 +921,14 @@ msgstr "Wysokość wiersza"
|
||||
msgid "LinkedIn, JSON Resume, etc."
|
||||
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"
|
||||
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/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:120
|
||||
msgid "Location"
|
||||
msgstr "Lokalizacja"
|
||||
|
||||
@ -897,7 +956,7 @@ msgstr "Wyloguj"
|
||||
msgid "Lost your device?"
|
||||
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"
|
||||
msgstr "Główne"
|
||||
|
||||
@ -914,7 +973,7 @@ msgstr "Marzec 2023"
|
||||
|
||||
#: 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/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
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "Marzec 2023 – obecnie"
|
||||
@ -923,7 +982,7 @@ msgstr "Marzec 2023 – obecnie"
|
||||
msgid "Margin"
|
||||
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"
|
||||
msgstr "Maksymalna liczba żetonów"
|
||||
|
||||
@ -931,18 +990,18 @@ msgstr "Maksymalna liczba żetonów"
|
||||
msgid "MIT License"
|
||||
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"
|
||||
msgstr "Model"
|
||||
|
||||
#: 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/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: 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/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/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/dashboard/settings/_sections/account.tsx:153
|
||||
msgid "Name"
|
||||
@ -957,7 +1016,7 @@ msgstr "Nazwa"
|
||||
msgid "Network"
|
||||
msgstr "Sieć"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Nowe Hasło"
|
||||
|
||||
@ -974,6 +1033,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Uwaga: Spowoduje to zmniejszenie bezpieczeństwa Twojego konta."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Notatki"
|
||||
@ -1009,16 +1069,16 @@ msgstr "OpenAI nie zwróciło żadnych wyborów dla Twojego tekstu."
|
||||
msgid "OpenAI Integration"
|
||||
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"
|
||||
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/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Opcje"
|
||||
|
||||
@ -1032,22 +1092,23 @@ msgid "Organization"
|
||||
msgstr "Nazwa firmy"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Strona"
|
||||
|
||||
#: 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}"
|
||||
msgstr "Strona {pageNumber}"
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Hasło"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||
msgid "PDF"
|
||||
msgstr "PDF"
|
||||
|
||||
@ -1055,7 +1116,7 @@ msgstr "PDF"
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr "Osobiste notatki do każdego CV"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:108
|
||||
msgid "Phone"
|
||||
msgstr "Telefon"
|
||||
|
||||
@ -1109,14 +1170,12 @@ msgstr "Napędzane przez <0>Simple Icons</0>"
|
||||
msgid "Primary Color"
|
||||
msgstr "Główny kolor"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Polityka prywatności"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
#: apps/client/src/components/ai-actions.tsx:113
|
||||
#: apps/client/src/components/ai-actions.tsx:116
|
||||
msgid "Professional"
|
||||
msgstr "Profesjonalny"
|
||||
|
||||
@ -1132,7 +1191,7 @@ msgstr "Publiczny"
|
||||
msgid "Publisher"
|
||||
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"
|
||||
msgstr "Zgłoś problem"
|
||||
|
||||
@ -1144,11 +1203,10 @@ msgstr "Zgłoś problem"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1175,12 +1233,12 @@ msgstr "Reactive Resume rozwija się dzięki tętniącej życiem społeczności.
|
||||
msgid "Redo"
|
||||
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
|
||||
msgid "Remove"
|
||||
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"
|
||||
msgstr "Usuń Stronę"
|
||||
|
||||
@ -1199,7 +1257,7 @@ msgstr "Wyślij ponownie link potwierdzający e-mail"
|
||||
msgid "Reset"
|
||||
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"
|
||||
msgstr "Zresetuj Układ"
|
||||
|
||||
@ -1213,8 +1271,8 @@ msgid "Reset Zoom"
|
||||
msgstr "Zresetuj Powiększenie"
|
||||
|
||||
#: 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:37
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||
msgid "Resumes"
|
||||
msgstr "CV"
|
||||
|
||||
@ -1237,11 +1295,11 @@ msgstr "Zaokrąklony"
|
||||
msgid "Save Changes"
|
||||
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"
|
||||
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"
|
||||
msgstr "Zapisane"
|
||||
|
||||
@ -1262,15 +1320,15 @@ msgstr "Przewiń do Pan"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Przewiń, aby powiększyć"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Wyszukaj czcionkę"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Wyszukaj podzbiór czcionek"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Wyszukaj wariant czcionki"
|
||||
|
||||
@ -1282,7 +1340,7 @@ msgstr "Wyszukaj język"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Bezpieczeństwo dzięki uwierzytelnianiu dwuskładnikowemu"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Bezpieczeństwo"
|
||||
|
||||
@ -1294,7 +1352,7 @@ msgstr "Samodzielny host z Dockerem"
|
||||
msgid "Send Email"
|
||||
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"
|
||||
msgstr "Wyślij mi wiadomość"
|
||||
|
||||
@ -1314,6 +1372,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Skonfiguruj uwierzytelnianie dwuskładnikowe na swoim koncie"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Udostępnianie"
|
||||
@ -1330,7 +1389,7 @@ msgstr "Pokaż linię przerwania"
|
||||
msgid "Show Page Numbers"
|
||||
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"
|
||||
msgstr "Pasek Boczny"
|
||||
|
||||
@ -1408,6 +1467,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Zacznij tworzyć swoje CV, nadając mu nazwę."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Statystyki"
|
||||
@ -1422,17 +1482,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/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/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/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "Summary"
|
||||
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!"
|
||||
msgstr "Wesprzyj aplikację, wpłacając dowolną kwotę!"
|
||||
|
||||
@ -1444,11 +1504,20 @@ msgstr "Wspierający Reactive Resume"
|
||||
msgid "Supports A4/Letter page formats"
|
||||
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
|
||||
msgid "System"
|
||||
msgstr "System"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Szablon"
|
||||
@ -1465,15 +1534,20 @@ msgstr "Referencje"
|
||||
msgid "Text Color"
|
||||
msgstr "Kolor Tekstu"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "Wprowadzone hasła nie są zgodne."
|
||||
#: apps/client/src/pages/public/error.tsx:17
|
||||
msgid "The page you're looking for doesn't exist."
|
||||
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
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "CV, które chcesz zaktualizować, jest zablokowane. Odblokuj je, jeśli chcesz wprowadzić w nim jakiekolwiek zmiany."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1604,7 @@ msgstr "Śledź wyświetlenia i pobrania"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Uwierzytelnianie dwuskładnikowe"
|
||||
|
||||
@ -1552,11 +1626,12 @@ msgid "Type of Study"
|
||||
msgstr "Uzyskane wykształcenie"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Typografia"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Podkreśl Linki"
|
||||
|
||||
@ -1599,6 +1674,14 @@ msgstr "Link"
|
||||
msgid "URL must start with 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:57
|
||||
msgid "Use your backup code"
|
||||
@ -1651,7 +1734,7 @@ msgstr "Wersja 4"
|
||||
msgid "Views"
|
||||
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"
|
||||
msgstr "Widoczny"
|
||||
|
||||
@ -1665,15 +1748,15 @@ 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/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/experience.tsx:100
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:96
|
||||
msgid "Website"
|
||||
msgstr "Strona"
|
||||
|
||||
@ -1681,10 +1764,14 @@ msgstr "Strona"
|
||||
msgid "What's new in the latest version"
|
||||
msgstr "Co nowego w najnowszej wersji"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
||||
#: apps/client/src/pages/public/error.tsx:26
|
||||
msgid "You are not authorized to access this page."
|
||||
msgstr "Nie masz uprawnień do wyświetlenia tej strony."
|
||||
|
||||
#: 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."
|
||||
msgstr "Możesz dodać wiele słów kluczowych, oddzielając je przecinkiem lub naciskając klawisz Enter."
|
||||
|
||||
@ -1692,19 +1779,27 @@ msgstr "Możesz dodać wiele słów kluczowych, oddzielając je przecinkiem lub
|
||||
msgid "You can also enter your username."
|
||||
msgstr "Możesz także wpisać swoją nazwę użytkownika."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||
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."
|
||||
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."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||
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ż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
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
msgstr "Możesz skorzystać z interfejsu API OpenAI, aby pomóc w generowaniu treści lub ulepszaniu pisania podczas tworzenia CV."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||
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 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
|
||||
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."
|
||||
|
||||
#: 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."
|
||||
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 +1816,7 @@ msgstr "Wysłaliśmy do Ciebie e-mail!"
|
||||
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ę!"
|
||||
|
||||
#: 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."
|
||||
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 +1828,7 @@ msgstr "Twój adres e-mail został pomyślnie zweryfikowany."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Twój klucz API OpenAI nie został jeszcze ustawiony. Przejdź do ustawień swojego konta, aby włączyć integrację z OpenAI."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Twoje hasło zostało pomyślnie zaktualizowane."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: pt\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-11-04 14:22\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Portuguese, Brazilian\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}}"
|
||||
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>"
|
||||
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>"
|
||||
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."
|
||||
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>"
|
||||
msgstr "<0>A comunidade passou muito tempo escrevendo a documentação do Reactive Resume e tenho certeza de que isso ajudará você a começar a usar o aplicativo.</0> <1>Também há muitos exemplos para ajudá-lo a começar e recursos que você talvez não conheça e que podem ajudá-lo a construir seu currículo perfeito.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>A autenticação de dois fatores está atualmente desativada.</0> Você pode habilitá-la adicionando um aplicativo autenticador à sua conta."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>A autenticação de dois fatores está habilitada.</0> Você será solicitado a inserir um código sempre que fizer login."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Conta"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Adicionar campo customizado"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:203
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Adicionar novo item"
|
||||
@ -112,12 +112,12 @@ msgstr "Adicionar novo item"
|
||||
msgid "Add a new item"
|
||||
msgstr "Adicionar novo item"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:267
|
||||
msgid "Add a new section"
|
||||
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"
|
||||
msgstr "Adicionar Nova Página"
|
||||
|
||||
@ -133,6 +133,14 @@ msgstr "Já possui uma conta?"
|
||||
msgid "An error occurred while validating the file."
|
||||
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
|
||||
msgid "and many more..."
|
||||
msgstr "e muito mais..."
|
||||
@ -191,6 +199,18 @@ msgstr "Disponível em {languagesCount} idiomas"
|
||||
msgid "Awarder"
|
||||
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/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
@ -209,16 +229,16 @@ msgstr "Código de Segurança"
|
||||
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."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||
msgid "Base URL"
|
||||
msgstr "URL Base"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:58
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr "Informações básicas"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
msgid "Basics"
|
||||
msgstr "Informações básicas"
|
||||
|
||||
@ -246,8 +266,8 @@ msgstr "Construída pela comunidade para a comunidade."
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
#: apps/client/src/components/ai-actions.tsx:107
|
||||
#: apps/client/src/components/ai-actions.tsx:110
|
||||
msgid "Casual"
|
||||
msgstr "Casual"
|
||||
|
||||
@ -255,12 +275,16 @@ msgstr "Casual"
|
||||
msgid "Center Artboard"
|
||||
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/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Alterar a senha"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
#: apps/client/src/components/ai-actions.tsx:101
|
||||
msgid "Change Tone"
|
||||
msgstr "Alterar tom"
|
||||
|
||||
@ -288,6 +312,16 @@ msgstr "Código"
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr "O código deve ter exatamente 6 dígitos."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:272
|
||||
msgid "Collapse All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Collapse section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136
|
||||
msgid "Columns"
|
||||
msgstr "Colunas"
|
||||
@ -296,21 +330,17 @@ msgstr "Colunas"
|
||||
msgid "Company"
|
||||
msgstr "Empresa"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
#: apps/client/src/components/ai-actions.tsx:119
|
||||
#: apps/client/src/components/ai-actions.tsx:122
|
||||
msgid "Confident"
|
||||
msgstr "Confiante"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Confirmar Nova Senha"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
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"
|
||||
msgstr "Copiar"
|
||||
|
||||
@ -351,7 +381,12 @@ msgstr "Criar um agora"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Criar currículo de exemplo"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr "Senha Atual"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "CSS personalizado"
|
||||
@ -360,7 +395,7 @@ msgstr "CSS personalizado"
|
||||
msgid "Custom resume sections"
|
||||
msgstr "Seções de currículo personalizadas"
|
||||
|
||||
#: apps/client/src/stores/resume.ts:47
|
||||
#: apps/client/src/stores/resume.ts:53
|
||||
msgid "Custom Section"
|
||||
msgstr "Seção personalizada"
|
||||
|
||||
@ -386,10 +421,10 @@ msgstr "Escuro"
|
||||
msgid "Date"
|
||||
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/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
|
||||
msgid "Date or Date Range"
|
||||
msgstr "Data ou intervalo de datas"
|
||||
@ -407,11 +442,15 @@ msgstr "Apagar"
|
||||
msgid "Delete Account"
|
||||
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/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/skills.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||
msgid "Description"
|
||||
msgstr "Descrição"
|
||||
|
||||
@ -423,18 +462,18 @@ msgstr "Crie currículos de uma ou várias páginas"
|
||||
msgid "Disable"
|
||||
msgstr "Desabilitar"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Desativar 2FA"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Descartar"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr "Documentação"
|
||||
|
||||
@ -442,7 +481,7 @@ msgstr "Documentação"
|
||||
msgid "Don't have an account?"
|
||||
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!"
|
||||
msgstr "Não sabe por onde começar? Consulte os documentos!"
|
||||
|
||||
@ -450,7 +489,7 @@ msgstr "Não sabe por onde começar? Consulte os documentos!"
|
||||
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>"
|
||||
|
||||
#: 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"
|
||||
msgstr "Doe para a Reactive Resume"
|
||||
|
||||
@ -458,12 +497,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."
|
||||
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."
|
||||
msgstr "Baixe um PDF de seu currículo. Esse arquivo pode ser usado para imprimir seu currículo, enviá-lo para recrutadores ou carregá-lo em portais de emprego."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Baixar PDF"
|
||||
|
||||
@ -487,7 +525,7 @@ msgstr "Duplicar um item existente"
|
||||
msgid "Duplicate an existing resume"
|
||||
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"
|
||||
msgstr "Editar"
|
||||
|
||||
@ -498,12 +536,12 @@ msgstr "Efeitos"
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:90
|
||||
#: apps/client/src/pages/auth/register/page.tsx:141
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181
|
||||
msgid "Email"
|
||||
msgstr "Email"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Ativar 2FA"
|
||||
|
||||
@ -531,6 +569,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."
|
||||
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
|
||||
msgid "Errors"
|
||||
msgstr "Erros"
|
||||
@ -539,11 +581,22 @@ msgstr "Erros"
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr "Mesmo que você não esteja em condições de contribuir financeiramente, você ainda pode fazer a diferença dando uma estrela ao repositório GitHub, divulgando para seus amigos ou enviando uma mensagem rápida para me contar como o Reactive Resume ajudou você. Seu feedback e apoio são sempre bem-vindos e muito apreciados!"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:271
|
||||
msgid "Expand All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Expand section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "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 os modelos disponíveis no Reactive Resume e veja os currículos criados com eles. Eles também podem servir como exemplos para ajudar a orientar a criação de seu próximo currículo."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Exportar"
|
||||
@ -564,19 +617,19 @@ msgstr "Finalmente,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Corrigir ortografia e gramática"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Família de fontes"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Tamanho da fonte"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Subconjunto de Fontes"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Variante da Fonte"
|
||||
|
||||
@ -584,7 +637,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."
|
||||
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"
|
||||
msgstr "Esquecer"
|
||||
|
||||
@ -601,7 +654,7 @@ msgstr "Esqueceu a sua senha?"
|
||||
msgid "Format"
|
||||
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?"
|
||||
msgstr "Encontrou um bug ou tem uma ideia para um novo recurso?"
|
||||
|
||||
@ -609,12 +662,12 @@ msgstr "Encontrou um bug ou tem uma ideia para um novo recurso?"
|
||||
msgid "Free, forever"
|
||||
msgstr "Grátis para sempre"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:121
|
||||
#: apps/client/src/components/ai-actions.tsx:124
|
||||
#: apps/client/src/components/ai-actions.tsx:125
|
||||
#: apps/client/src/components/ai-actions.tsx:128
|
||||
msgid "Friendly"
|
||||
msgstr "Amigável"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:56
|
||||
msgid "Full Name"
|
||||
msgstr "Nome Completo"
|
||||
|
||||
@ -643,6 +696,10 @@ msgstr "Dê um novo nome ao seu currículo antigo."
|
||||
msgid "Go to 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
|
||||
msgid "Google"
|
||||
msgstr "Google"
|
||||
@ -651,11 +708,11 @@ msgstr "Google"
|
||||
msgid "Grayscale"
|
||||
msgstr "Escala de cinza"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||
msgid "Grid"
|
||||
msgstr "Grid"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:70
|
||||
msgid "Headline"
|
||||
msgstr "Cabeçalho"
|
||||
|
||||
@ -668,7 +725,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."
|
||||
|
||||
#: 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
|
||||
msgid "Hidden"
|
||||
msgstr "Oculto"
|
||||
@ -677,7 +734,7 @@ msgstr "Oculto"
|
||||
msgid "Hide"
|
||||
msgstr "Ocultar"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Ocultar ícones"
|
||||
|
||||
@ -734,7 +791,7 @@ msgstr "Melhorar a escrita"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Caso você não consiga escanear este código QR, você também pode copiar e colar este link no seu aplicativo de autenticação."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "Nesta seção, você pode alterar sua senha e ativar/desativar a autenticação de dois fatores."
|
||||
|
||||
@ -743,7 +800,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>."
|
||||
|
||||
#: 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"
|
||||
msgstr "Informações"
|
||||
|
||||
@ -802,10 +860,10 @@ msgstr "joao.silva@example.com"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||
msgid "Keywords"
|
||||
msgstr "Palavras-chave"
|
||||
|
||||
@ -824,7 +882,8 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Última atualização {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx: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"
|
||||
msgstr "Layout"
|
||||
|
||||
@ -837,7 +896,7 @@ msgid "Letter"
|
||||
msgstr "Carta"
|
||||
|
||||
#: 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"
|
||||
msgstr "Nível"
|
||||
|
||||
@ -853,7 +912,7 @@ msgstr "Claro"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Tema claro ou escuro"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Altura da linha"
|
||||
|
||||
@ -862,14 +921,14 @@ msgstr "Altura da linha"
|
||||
msgid "LinkedIn, JSON Resume, 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"
|
||||
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/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:120
|
||||
msgid "Location"
|
||||
msgstr "Localização"
|
||||
|
||||
@ -897,7 +956,7 @@ msgstr "Sair"
|
||||
msgid "Lost your device?"
|
||||
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"
|
||||
msgstr "Principal"
|
||||
|
||||
@ -914,7 +973,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/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
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "Março de 2023 - Presente"
|
||||
@ -923,7 +982,7 @@ msgstr "Março de 2023 - Presente"
|
||||
msgid "Margin"
|
||||
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"
|
||||
msgstr "Máximo de Tokens"
|
||||
|
||||
@ -931,18 +990,18 @@ msgstr "Máximo de Tokens"
|
||||
msgid "MIT License"
|
||||
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"
|
||||
msgstr "Modelo"
|
||||
|
||||
#: 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/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: 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/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/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/dashboard/settings/_sections/account.tsx:153
|
||||
msgid "Name"
|
||||
@ -957,7 +1016,7 @@ msgstr "Nome"
|
||||
msgid "Network"
|
||||
msgstr "Rede"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Nova Senha"
|
||||
|
||||
@ -974,6 +1033,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Observação: Esta ação tornará sua conta menos segura."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Anotações"
|
||||
@ -1009,16 +1069,16 @@ msgstr "OpenAI não retornou nenhuma opção para o seu texto."
|
||||
msgid "OpenAI Integration"
|
||||
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"
|
||||
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/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Opções"
|
||||
|
||||
@ -1032,22 +1092,23 @@ msgid "Organization"
|
||||
msgstr "Organização"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Página"
|
||||
|
||||
#: 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}"
|
||||
msgstr "Página {pageNumber}"
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Senha"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||
msgid "PDF"
|
||||
msgstr "PDF"
|
||||
|
||||
@ -1055,7 +1116,7 @@ msgstr "PDF"
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr "Notas pessoais para cada currículo"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:108
|
||||
msgid "Phone"
|
||||
msgstr "Telefone"
|
||||
|
||||
@ -1109,14 +1170,12 @@ msgstr "Desenvolvido por <0>Simple Icons</0>"
|
||||
msgid "Primary Color"
|
||||
msgstr "Cor Primária"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Política de Privacidade"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
#: apps/client/src/components/ai-actions.tsx:113
|
||||
#: apps/client/src/components/ai-actions.tsx:116
|
||||
msgid "Professional"
|
||||
msgstr "Profissional"
|
||||
|
||||
@ -1132,7 +1191,7 @@ msgstr "Público"
|
||||
msgid "Publisher"
|
||||
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"
|
||||
msgstr "Aponte um problema"
|
||||
|
||||
@ -1144,11 +1203,10 @@ msgstr "Aponte um problema"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1175,12 +1233,12 @@ msgstr "O Reactive Resume só dá certo graças à sua comunidade vibrante. Este
|
||||
msgid "Redo"
|
||||
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
|
||||
msgid "Remove"
|
||||
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"
|
||||
msgstr "Remover Página"
|
||||
|
||||
@ -1199,7 +1257,7 @@ msgstr "Reenviar link de confirmação"
|
||||
msgid "Reset"
|
||||
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"
|
||||
msgstr "Redefinir Layout"
|
||||
|
||||
@ -1213,8 +1271,8 @@ msgid "Reset Zoom"
|
||||
msgstr "Redefinir Zoom"
|
||||
|
||||
#: 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:37
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||
msgid "Resumes"
|
||||
msgstr "Currículos"
|
||||
|
||||
@ -1237,11 +1295,11 @@ msgstr "Arredondado"
|
||||
msgid "Save Changes"
|
||||
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"
|
||||
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"
|
||||
msgstr "Salvo"
|
||||
|
||||
@ -1262,15 +1320,15 @@ msgstr "Rolar para Pan"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Role para ampliar"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Procure uma família de fontes"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Procure um subconjunto de fontes"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Procure uma variante de fonte"
|
||||
|
||||
@ -1282,7 +1340,7 @@ msgstr "Selecionar idioma"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Protegido com autenticação em dois fatores"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Segurança"
|
||||
|
||||
@ -1294,7 +1352,7 @@ msgstr "Auto-hospedagem com Docker"
|
||||
msgid "Send Email"
|
||||
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"
|
||||
msgstr "Envie-me uma mensagem"
|
||||
|
||||
@ -1314,6 +1372,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Configure a autenticação de dois fatores em sua conta"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Compartilhamento"
|
||||
@ -1330,7 +1389,7 @@ msgstr "Mostrar quebra de linha"
|
||||
msgid "Show Page Numbers"
|
||||
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"
|
||||
msgstr "Barra lateral"
|
||||
|
||||
@ -1408,6 +1467,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Comece a construir seu currículo dando um nome ao arquivo."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Estatísticas"
|
||||
@ -1422,17 +1482,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/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/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/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "Summary"
|
||||
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!"
|
||||
msgstr "Apoie o aplicativo doando o que puder!"
|
||||
|
||||
@ -1444,11 +1504,20 @@ msgstr "Apoiando o Reactive Resume"
|
||||
msgid "Supports A4/Letter page formats"
|
||||
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
|
||||
msgid "System"
|
||||
msgstr "Sistema"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Modelo"
|
||||
@ -1465,15 +1534,20 @@ msgstr "Depoimentos"
|
||||
msgid "Text Color"
|
||||
msgstr "Cor do texto"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "As senhas informadas não são iguais."
|
||||
#: apps/client/src/pages/public/error.tsx:17
|
||||
msgid "The page you're looking for doesn't exist."
|
||||
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
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "O currículo que você deseja atualizar está bloqueado. Desbloqueie-o antes de fazer alguma alteração nele."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1604,7 @@ msgstr "Acompanhe visualizações e downloads"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Autenticação de Dois Fatores"
|
||||
|
||||
@ -1552,11 +1626,12 @@ msgid "Type of Study"
|
||||
msgstr "Tipo de Formação"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Tipografia"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Sublinhar links"
|
||||
|
||||
@ -1599,6 +1674,14 @@ msgstr "URL"
|
||||
msgid "URL must start with 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:57
|
||||
msgid "Use your backup code"
|
||||
@ -1651,7 +1734,7 @@ msgstr "Versão 4"
|
||||
msgid "Views"
|
||||
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"
|
||||
msgstr "Visível"
|
||||
|
||||
@ -1665,15 +1748,15 @@ 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/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/experience.tsx:100
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:96
|
||||
msgid "Website"
|
||||
msgstr "Site"
|
||||
|
||||
@ -1681,10 +1764,14 @@ msgstr "Site"
|
||||
msgid "What's new in the latest version"
|
||||
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/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
||||
#: apps/client/src/pages/public/error.tsx:26
|
||||
msgid "You are not authorized to access this page."
|
||||
msgstr "Você não está autorizado a acessar esta página."
|
||||
|
||||
#: 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."
|
||||
msgstr "Você pode adicionar várias palavras-chave separando-as com vírgula ou pressionando Enter."
|
||||
|
||||
@ -1692,19 +1779,27 @@ msgstr "Você pode adicionar várias palavras-chave separando-as com vírgula ou
|
||||
msgid "You can also enter your username."
|
||||
msgstr "Você também pode inserir seu nome de usuário."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||
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."
|
||||
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."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||
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 "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
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
msgstr "Você pode usar a API OpenAI para ajudá-lo a gerar conteúdo ou melhorar seus textos ao escrever seu currículo."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||
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ê 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
|
||||
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."
|
||||
|
||||
#: 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."
|
||||
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 +1816,7 @@ msgstr "Você recebeu um e-mail!"
|
||||
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!"
|
||||
|
||||
#: 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."
|
||||
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 +1828,7 @@ msgstr "Seu endereço de e-mail foi verificado com sucesso."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Sua chave de API OpenAI ainda não foi definida. Acesse as configurações da sua conta para ativar a integração com a OpenAI."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Sua senha foi atualizada com sucesso."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: pt\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-11-04 14:22\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Portuguese\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}}"
|
||||
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>"
|
||||
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>"
|
||||
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."
|
||||
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>"
|
||||
msgstr "<0>A comunidade passou muito tempo a escrever a documentação do Reactive Resume e tenho a certeza de que isso o ajudará a começar a usar o aplicação.</0> <1>Também há muitos exemplos para ajudá-lo a começar e recursos que você talvez não conheça e que podem ajudá-lo a construir o currículo perfeito.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>A autenticação de dois fatores está atualmente desativada.</0> Pode ativá-la adicionando uma aplicação de autenticação à sua conta."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>A autenticação de dois fatores está ativada.</0> Ser-lhe-á pedido que introduza um código sempre que iniciar sessão."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Conta"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Adicionar um campo personalizado"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:203
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Adicionar um novo item"
|
||||
@ -112,12 +112,12 @@ msgstr "Adicionar um novo item"
|
||||
msgid "Add a new item"
|
||||
msgstr "Adicionar um novo item"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:267
|
||||
msgid "Add a new section"
|
||||
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"
|
||||
msgstr "Adicionar Nova Página"
|
||||
|
||||
@ -133,6 +133,14 @@ msgstr "Já tem uma conta?"
|
||||
msgid "An error occurred while validating the file."
|
||||
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
|
||||
msgid "and many more..."
|
||||
msgstr "e muitas mais..."
|
||||
@ -191,6 +199,18 @@ msgstr "Disponível em {languagesCount} idiomas"
|
||||
msgid "Awarder"
|
||||
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/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
@ -209,16 +229,16 @@ msgstr "Código de backup"
|
||||
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."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||
msgid "Base URL"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:58
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr "Informações básicas"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
msgid "Basics"
|
||||
msgstr "Informações básicas"
|
||||
|
||||
@ -246,8 +266,8 @@ msgstr "Pela comunidade, para a comunidade."
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
#: apps/client/src/components/ai-actions.tsx:107
|
||||
#: apps/client/src/components/ai-actions.tsx:110
|
||||
msgid "Casual"
|
||||
msgstr "Casual"
|
||||
|
||||
@ -255,12 +275,16 @@ msgstr "Casual"
|
||||
msgid "Center Artboard"
|
||||
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/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Alterar senha"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
#: apps/client/src/components/ai-actions.tsx:101
|
||||
msgid "Change Tone"
|
||||
msgstr "Alterar tom"
|
||||
|
||||
@ -288,6 +312,16 @@ msgstr "Código"
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr "O código deve ter exatamente 6 dígitos."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:272
|
||||
msgid "Collapse All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Collapse section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136
|
||||
msgid "Columns"
|
||||
msgstr "Colunas"
|
||||
@ -296,21 +330,17 @@ msgstr "Colunas"
|
||||
msgid "Company"
|
||||
msgstr "Organização"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
#: apps/client/src/components/ai-actions.tsx:119
|
||||
#: apps/client/src/components/ai-actions.tsx:122
|
||||
msgid "Confident"
|
||||
msgstr "Confiante"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Confirme a nova senha"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
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"
|
||||
msgstr "Copiar"
|
||||
|
||||
@ -351,7 +381,12 @@ msgstr "Crie uma agora"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Criar currículo de exemplo"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr "Palavra-passe Atual"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "CSS personalizado"
|
||||
@ -360,7 +395,7 @@ msgstr "CSS personalizado"
|
||||
msgid "Custom resume sections"
|
||||
msgstr "Secções de currículo personalizadas"
|
||||
|
||||
#: apps/client/src/stores/resume.ts:47
|
||||
#: apps/client/src/stores/resume.ts:53
|
||||
msgid "Custom Section"
|
||||
msgstr "Secção personalizada"
|
||||
|
||||
@ -386,10 +421,10 @@ msgstr "Modo escuro"
|
||||
msgid "Date"
|
||||
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/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
|
||||
msgid "Date or Date Range"
|
||||
msgstr "Data ou intervalo de datas"
|
||||
@ -407,11 +442,15 @@ msgstr "Apagar"
|
||||
msgid "Delete Account"
|
||||
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/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/skills.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||
msgid "Description"
|
||||
msgstr "Descrição"
|
||||
|
||||
@ -423,18 +462,18 @@ msgstr "Crie currículos de uma ou várias páginas"
|
||||
msgid "Disable"
|
||||
msgstr "Desativar"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Desabilitar 2FA"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Descartar"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr "Documentação"
|
||||
|
||||
@ -442,7 +481,7 @@ msgstr "Documentação"
|
||||
msgid "Don't have an account?"
|
||||
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!"
|
||||
msgstr "Não sabe por onde começar? Consulte a documentação!"
|
||||
|
||||
@ -450,7 +489,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>"
|
||||
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"
|
||||
msgstr "Faça um donativo para o Reactive Resume"
|
||||
|
||||
@ -458,12 +497,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."
|
||||
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."
|
||||
msgstr "Baixe um PDF do seu currículo. Este ficheiro pode ser usado para imprimir o seu currículo, enviá-lo para recrutadores ou carregá-lo em portais de empregos."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Baixar PDF"
|
||||
|
||||
@ -487,7 +525,7 @@ msgstr "Duplicar um item existente"
|
||||
msgid "Duplicate an existing resume"
|
||||
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"
|
||||
msgstr "Editar"
|
||||
|
||||
@ -498,12 +536,12 @@ msgstr "Efeitos"
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:90
|
||||
#: apps/client/src/pages/auth/register/page.tsx:141
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181
|
||||
msgid "Email"
|
||||
msgstr "Email"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Habilitar 2FA"
|
||||
|
||||
@ -531,6 +569,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."
|
||||
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
|
||||
msgid "Errors"
|
||||
msgstr "Erros"
|
||||
@ -539,11 +581,22 @@ msgstr "Erros"
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr "Mesmo que não consiga contribuir financeiramente, pode fazer a diferença dando uma estrela ao repositório GitHub, divulgando junto dos seus amigos ou enviando-me uma mensagem sobre como o Reactive Resume o ajudou. O seu feedback e apoio são sempre bem-vindos e muito apreciados!"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:271
|
||||
msgid "Expand All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Expand section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "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 os modelos disponíveis no Reactive Resume e veja os currículos criados com eles. Também podem servir como exemplos para ajudar na criação do seu próximo currículo."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Exportar"
|
||||
@ -564,19 +617,19 @@ msgstr "Finalmente,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Corrigir ortografia e gramática"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Tipo de Letra"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Tamanho da Letra"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Subconjunto do tipo de letra"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Variantes da fonte"
|
||||
|
||||
@ -584,7 +637,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."
|
||||
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"
|
||||
msgstr "Esquecer"
|
||||
|
||||
@ -601,7 +654,7 @@ msgstr "Esqueceu a sua senha?"
|
||||
msgid "Format"
|
||||
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?"
|
||||
msgstr "Encontrou um erro ou tem uma ideia para uma nova funcionalidade?"
|
||||
|
||||
@ -609,12 +662,12 @@ msgstr "Encontrou um erro ou tem uma ideia para uma nova funcionalidade?"
|
||||
msgid "Free, forever"
|
||||
msgstr "Grátis, para sempre"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:121
|
||||
#: apps/client/src/components/ai-actions.tsx:124
|
||||
#: apps/client/src/components/ai-actions.tsx:125
|
||||
#: apps/client/src/components/ai-actions.tsx:128
|
||||
msgid "Friendly"
|
||||
msgstr "Amigável"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:56
|
||||
msgid "Full Name"
|
||||
msgstr "Nome completo"
|
||||
|
||||
@ -643,6 +696,10 @@ msgstr "Dê um novo nome ao seu antigo currículo."
|
||||
msgid "Go to 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
|
||||
msgid "Google"
|
||||
msgstr "Google"
|
||||
@ -651,11 +708,11 @@ msgstr "Google"
|
||||
msgid "Grayscale"
|
||||
msgstr "Escala de cinzas"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||
msgid "Grid"
|
||||
msgstr "Grelha"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:70
|
||||
msgid "Headline"
|
||||
msgstr "Título"
|
||||
|
||||
@ -668,7 +725,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."
|
||||
|
||||
#: 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
|
||||
msgid "Hidden"
|
||||
msgstr "Oculto"
|
||||
@ -677,7 +734,7 @@ msgstr "Oculto"
|
||||
msgid "Hide"
|
||||
msgstr "Ocultar"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Ocultar ícones"
|
||||
|
||||
@ -734,7 +791,7 @@ msgstr "Melhorar a escrita"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Caso não consiga ler este código QR, também pode copiar e colar este link no seu aplicativo de autenticação."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "Nesta secção, pode alterar a sua senha e ativar/desativar a autenticação de dois fatores."
|
||||
|
||||
@ -743,7 +800,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>."
|
||||
|
||||
#: 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"
|
||||
msgstr "Informação"
|
||||
|
||||
@ -802,10 +860,10 @@ msgstr "joao.silva@exemplo.com"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||
msgid "Keywords"
|
||||
msgstr "Palavras-chave"
|
||||
|
||||
@ -824,7 +882,8 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Última atualização {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx: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"
|
||||
msgstr "Layout"
|
||||
|
||||
@ -837,7 +896,7 @@ msgid "Letter"
|
||||
msgstr "Carta"
|
||||
|
||||
#: 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"
|
||||
msgstr "Nível"
|
||||
|
||||
@ -853,7 +912,7 @@ msgstr "Modo claro"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Tema claro ou escuro"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Altura da Linha"
|
||||
|
||||
@ -862,14 +921,14 @@ msgstr "Altura da Linha"
|
||||
msgid "LinkedIn, JSON Resume, 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"
|
||||
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/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:120
|
||||
msgid "Location"
|
||||
msgstr "Localização"
|
||||
|
||||
@ -897,7 +956,7 @@ msgstr "Encerrar Sessão"
|
||||
msgid "Lost your device?"
|
||||
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"
|
||||
msgstr "Principal"
|
||||
|
||||
@ -914,7 +973,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/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
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "Março de 2023 - presente"
|
||||
@ -923,7 +982,7 @@ msgstr "Março de 2023 - presente"
|
||||
msgid "Margin"
|
||||
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"
|
||||
msgstr "Máximo de Tokens"
|
||||
|
||||
@ -931,18 +990,18 @@ msgstr "Máximo de Tokens"
|
||||
msgid "MIT License"
|
||||
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"
|
||||
msgstr "Modelo"
|
||||
|
||||
#: 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/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: 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/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/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/dashboard/settings/_sections/account.tsx:153
|
||||
msgid "Name"
|
||||
@ -957,7 +1016,7 @@ msgstr "Nome"
|
||||
msgid "Network"
|
||||
msgstr "Rede Social"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Nova Senha"
|
||||
|
||||
@ -974,6 +1033,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Observação: isso tornará sua conta menos segura."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Notas"
|
||||
@ -1009,16 +1069,16 @@ msgstr "OpenAI não retornou nenhuma escolha para o seu texto."
|
||||
msgid "OpenAI Integration"
|
||||
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"
|
||||
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/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Opções"
|
||||
|
||||
@ -1032,22 +1092,23 @@ msgid "Organization"
|
||||
msgstr "Organização"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Página"
|
||||
|
||||
#: 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}"
|
||||
msgstr "Página {pageNumber}"
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Senha"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||
msgid "PDF"
|
||||
msgstr "PDF"
|
||||
|
||||
@ -1055,7 +1116,7 @@ msgstr "PDF"
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr "Notas pessoais para cada currículo"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:108
|
||||
msgid "Phone"
|
||||
msgstr "Telefone"
|
||||
|
||||
@ -1109,14 +1170,12 @@ msgstr "Desenvolvido em <0>Simple Icons</0>"
|
||||
msgid "Primary Color"
|
||||
msgstr "Cor principal"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Política de Privacidade"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
#: apps/client/src/components/ai-actions.tsx:113
|
||||
#: apps/client/src/components/ai-actions.tsx:116
|
||||
msgid "Professional"
|
||||
msgstr "Profissional"
|
||||
|
||||
@ -1132,7 +1191,7 @@ msgstr "Público"
|
||||
msgid "Publisher"
|
||||
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"
|
||||
msgstr "Reportar problema"
|
||||
|
||||
@ -1144,11 +1203,10 @@ msgstr "Reportar problema"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1175,12 +1233,12 @@ msgstr "O Reactive Resume prospera graças à sua comunidade vibrante. Este proj
|
||||
msgid "Redo"
|
||||
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
|
||||
msgid "Remove"
|
||||
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"
|
||||
msgstr "Remover página"
|
||||
|
||||
@ -1199,7 +1257,7 @@ msgstr "Reenviar link de confirmação por email"
|
||||
msgid "Reset"
|
||||
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"
|
||||
msgstr "Repor Layout"
|
||||
|
||||
@ -1213,8 +1271,8 @@ msgid "Reset Zoom"
|
||||
msgstr "Repor zoom"
|
||||
|
||||
#: 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:37
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||
msgid "Resumes"
|
||||
msgstr "Currículos"
|
||||
|
||||
@ -1237,11 +1295,11 @@ msgstr "Arredondado"
|
||||
msgid "Save Changes"
|
||||
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"
|
||||
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"
|
||||
msgstr "Guardado"
|
||||
|
||||
@ -1262,15 +1320,15 @@ msgstr "Desloque-se para a panorâmica"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Desloque-se para o zoom"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Procure por uma família de fontes"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Procure por um subconjunto de fontes"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Procure por uma variante de fonte"
|
||||
|
||||
@ -1282,7 +1340,7 @@ msgstr "Pesquise por uma língua"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Proteja-se com a autenticação de dois factores"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Segurança"
|
||||
|
||||
@ -1294,7 +1352,7 @@ msgstr "Faça auto-hospedagem com o Docker"
|
||||
msgid "Send Email"
|
||||
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"
|
||||
msgstr "Envie-me uma mensagem"
|
||||
|
||||
@ -1314,6 +1372,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Configurar a autenticação de dois fatores na sua conta"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Partilhar"
|
||||
@ -1330,7 +1389,7 @@ msgstr "Mostrar linha de quebra"
|
||||
msgid "Show Page Numbers"
|
||||
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"
|
||||
msgstr "Barra lateral"
|
||||
|
||||
@ -1408,6 +1467,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Comece a criar seu currículo dando um nome a ele."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Estatísticas"
|
||||
@ -1422,17 +1482,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/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/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/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "Summary"
|
||||
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!"
|
||||
msgstr "Apoie o aplicativo doando o que puder!"
|
||||
|
||||
@ -1444,11 +1504,20 @@ msgstr "Apoiar Reactive Resume"
|
||||
msgid "Supports A4/Letter page formats"
|
||||
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
|
||||
msgid "System"
|
||||
msgstr "Sistema"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Modelo"
|
||||
@ -1465,15 +1534,20 @@ msgstr "Testemunhos"
|
||||
msgid "Text Color"
|
||||
msgstr "Cor do texto"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "As senhas que inseriu não são iguais."
|
||||
#: apps/client/src/pages/public/error.tsx:17
|
||||
msgid "The page you're looking for doesn't exist."
|
||||
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
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "O currículo que deseja atualizar está bloqueado, por favor, desbloqueie se deseja fazer alterações."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1604,7 @@ msgstr "Monitorizar visualizações e downloads"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Autenticação de dois fatores"
|
||||
|
||||
@ -1552,11 +1626,12 @@ msgid "Type of Study"
|
||||
msgstr "Tipo de graduação"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Fontes"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Sublinhar Links"
|
||||
|
||||
@ -1599,6 +1674,14 @@ msgstr "URL"
|
||||
msgid "URL must start with 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:57
|
||||
msgid "Use your backup code"
|
||||
@ -1651,7 +1734,7 @@ msgstr "Versão 4"
|
||||
msgid "Views"
|
||||
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"
|
||||
msgstr "Visível"
|
||||
|
||||
@ -1665,15 +1748,15 @@ 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/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/experience.tsx:100
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:96
|
||||
msgid "Website"
|
||||
msgstr "Site"
|
||||
|
||||
@ -1681,10 +1764,14 @@ msgstr "Site"
|
||||
msgid "What's new in the latest version"
|
||||
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/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
||||
#: apps/client/src/pages/public/error.tsx:26
|
||||
msgid "You are not authorized to access this page."
|
||||
msgstr "Você não está autorizado a acessar esta página."
|
||||
|
||||
#: 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."
|
||||
msgstr "Você pode adicionar várias palavras-chave separando-as com vírgula ou pressionando Enter."
|
||||
|
||||
@ -1692,19 +1779,27 @@ msgstr "Você pode adicionar várias palavras-chave separando-as com vírgula ou
|
||||
msgid "You can also enter your username."
|
||||
msgstr "Você também pode inserir seu nome de usuário."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||
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."
|
||||
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."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||
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 "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
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
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."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||
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ê 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
|
||||
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."
|
||||
|
||||
#: 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."
|
||||
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 +1816,7 @@ msgstr "Você recebeu um email!"
|
||||
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!"
|
||||
|
||||
#: 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."
|
||||
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 +1828,7 @@ msgstr "Seu endereço de e-mail foi verificado com sucesso."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Sua chave de API OpenAI ainda não foi definida. Acesse as configurações da sua conta para ativar a integração com a OpenAI."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Sua senha foi atualizada com sucesso."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ro\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-11-04 14:22\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Romanian\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);\n"
|
||||
@ -30,27 +30,27 @@ msgstr "{templatesCount} șabloane de CV din care să alegeți"
|
||||
msgid "{value, plural, one {Column} other {Columns}}"
|
||||
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>"
|
||||
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>"
|
||||
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."
|
||||
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>"
|
||||
msgstr "<0>Comunitatea a petrecut mult timp scriind documentația pentru reactivarea reactivă; și sunt sigur că te va ajuta să începi cu aplicația. /0><1>Există, de asemenea, o mulțime de exemple pentru a vă ajuta să începeți, și caracteristici despre care s-ar putea să nu știți care te-ar putea ajuta să construiești reluarea perfectă. /1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>Autentificarea în doi factori este momentan dezactivată.</0> O poți activa prin adăugarea unei aplicații de autentificare în contul tău."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>Autentificarea în doi factori este activată.</0> Vi se va cere să introduceți un cod de fiecare dată când vă conectați."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Cont"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Adăugarea unui câmp particularizat"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:203
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Adaugă un element nou"
|
||||
@ -112,12 +112,12 @@ msgstr "Adaugă un element nou"
|
||||
msgid "Add a new item"
|
||||
msgstr "Adaugă un element nou"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:267
|
||||
msgid "Add a new section"
|
||||
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"
|
||||
msgstr "Adaugă pagină nouă"
|
||||
|
||||
@ -133,6 +133,14 @@ msgstr "Aveți deja un cont?"
|
||||
msgid "An error occurred while validating the file."
|
||||
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
|
||||
msgid "and many more..."
|
||||
msgstr "si multe altele..."
|
||||
@ -191,6 +199,18 @@ msgstr "Disponibil în {languagesCount} limbi"
|
||||
msgid "Awarder"
|
||||
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/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
@ -209,16 +229,16 @@ msgstr "Cod de rezervă"
|
||||
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."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||
msgid "Base URL"
|
||||
msgstr "URL de bază"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:58
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr "Bazele"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
msgid "Basics"
|
||||
msgstr "Bazele"
|
||||
|
||||
@ -246,8 +266,8 @@ msgstr "Construit de comunitate, pentru comunitate."
|
||||
msgid "Cancel"
|
||||
msgstr "Anulează"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
#: apps/client/src/components/ai-actions.tsx:107
|
||||
#: apps/client/src/components/ai-actions.tsx:110
|
||||
msgid "Casual"
|
||||
msgstr "Cazual"
|
||||
|
||||
@ -255,12 +275,16 @@ msgstr "Cazual"
|
||||
msgid "Center 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/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Schimbare parolă"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
#: apps/client/src/components/ai-actions.tsx:101
|
||||
msgid "Change Tone"
|
||||
msgstr "Schimbați Tonul"
|
||||
|
||||
@ -288,6 +312,16 @@ msgstr "Cod"
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr "Codul trebuie să fie format din exact 6 cifre."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:272
|
||||
msgid "Collapse All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Collapse section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136
|
||||
msgid "Columns"
|
||||
msgstr "Coloane"
|
||||
@ -296,21 +330,17 @@ msgstr "Coloane"
|
||||
msgid "Company"
|
||||
msgstr "Companie"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
#: apps/client/src/components/ai-actions.tsx:119
|
||||
#: apps/client/src/components/ai-actions.tsx:122
|
||||
msgid "Confident"
|
||||
msgstr "Confidențialitate"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Confirmare parolă nouă"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
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"
|
||||
msgstr "Copiază"
|
||||
|
||||
@ -351,7 +381,12 @@ msgstr "Creați unul acum"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Creați un exemplu de CV"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr "Parola curentă"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "CSS personalizat"
|
||||
@ -360,7 +395,7 @@ msgstr "CSS personalizat"
|
||||
msgid "Custom resume sections"
|
||||
msgstr "Secțiuni personalizate de CV"
|
||||
|
||||
#: apps/client/src/stores/resume.ts:47
|
||||
#: apps/client/src/stores/resume.ts:53
|
||||
msgid "Custom Section"
|
||||
msgstr "Secțiune personalizată"
|
||||
|
||||
@ -386,10 +421,10 @@ msgstr "Întunecat"
|
||||
msgid "Date"
|
||||
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/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
|
||||
msgid "Date or Date Range"
|
||||
msgstr "Interval dată sau dată"
|
||||
@ -407,11 +442,15 @@ msgstr "Șterge"
|
||||
msgid "Delete Account"
|
||||
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/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/skills.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||
msgid "Description"
|
||||
msgstr "Descriere"
|
||||
|
||||
@ -423,18 +462,18 @@ msgstr "Proiectați CV-uri cu o singură sau mai multe pagini"
|
||||
msgid "Disable"
|
||||
msgstr "Dezactivat"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Dezactivează 2FA"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Renunțați"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr "Documentație"
|
||||
|
||||
@ -442,7 +481,7 @@ msgstr "Documentație"
|
||||
msgid "Don't have an account?"
|
||||
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!"
|
||||
msgstr "Nu știi de unde să începi? Atacă documentele!"
|
||||
|
||||
@ -450,7 +489,7 @@ msgstr "Nu știi de unde să începi? Atacă documentele!"
|
||||
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>"
|
||||
|
||||
#: 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"
|
||||
msgstr "Donează pentru Reactivare Reluare"
|
||||
|
||||
@ -458,12 +497,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."
|
||||
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."
|
||||
msgstr "Descărcați un PDF al CV-ului dvs. Acest fișier poate fi folosit pentru a vă imprima CV-ul, pentru a-l trimite recrutorilor sau pentru a încărca pe portalurile de locuri de muncă."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Descarcă PDF-ul"
|
||||
|
||||
@ -487,7 +525,7 @@ msgstr "Duplicați un element existent"
|
||||
msgid "Duplicate an existing resume"
|
||||
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"
|
||||
msgstr "Editare"
|
||||
|
||||
@ -498,12 +536,12 @@ msgstr "Efecte"
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:90
|
||||
#: apps/client/src/pages/auth/register/page.tsx:141
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181
|
||||
msgid "Email"
|
||||
msgstr "E-mail"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Activează 2FA"
|
||||
|
||||
@ -531,6 +569,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."
|
||||
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
|
||||
msgid "Errors"
|
||||
msgstr "Erori"
|
||||
@ -539,11 +581,22 @@ msgstr "Erori"
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr "Chiar dacă nu sunteți în măsură să contribuiți financiar, puteți totuși să faceți o diferență dând o stea depozitului GitHub; distribuirea cuvântului prietenilor tăi sau adăugarea unui mesaj rapid pentru a mă anunța cum te ajută Resume Reactiv. Feedback-ul și suportul dvs. sunt întotdeauna binevenite și foarte apreciate!"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:271
|
||||
msgid "Expand All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Expand section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "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 "Explorați șabloanele disponibile în CV-ul reactiv și vizualizați CV-urile create cu acestea. Ele ar putea servi, de asemenea, ca exemple pentru a ghida crearea următorului dvs. CV."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Exportă"
|
||||
@ -564,19 +617,19 @@ msgstr "În Sfârșit"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Remediați ortografie și gramatică"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Familia de Fonturi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Dimensiunea fontului"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Subset de fonturi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Variante de font"
|
||||
|
||||
@ -584,7 +637,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."
|
||||
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"
|
||||
msgstr "Uită"
|
||||
|
||||
@ -601,7 +654,7 @@ msgstr "V-ați uitat parola?"
|
||||
msgid "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?"
|
||||
msgstr "Ați găsit o eroare sau aveți o idee pentru o funcție nouă?"
|
||||
|
||||
@ -609,12 +662,12 @@ msgstr "Ați găsit o eroare sau aveți o idee pentru o funcție nouă?"
|
||||
msgid "Free, forever"
|
||||
msgstr "Gratuit pentru totdeauna"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:121
|
||||
#: apps/client/src/components/ai-actions.tsx:124
|
||||
#: apps/client/src/components/ai-actions.tsx:125
|
||||
#: apps/client/src/components/ai-actions.tsx:128
|
||||
msgid "Friendly"
|
||||
msgstr "Prietenos"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:56
|
||||
msgid "Full Name"
|
||||
msgstr "Numele Complet"
|
||||
|
||||
@ -643,6 +696,10 @@ msgstr "Dă un nume reluat vechi."
|
||||
msgid "Go to Dashboard"
|
||||
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
|
||||
msgid "Google"
|
||||
msgstr "Google"
|
||||
@ -651,11 +708,11 @@ msgstr "Google"
|
||||
msgid "Grayscale"
|
||||
msgstr "Grayscale"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||
msgid "Grid"
|
||||
msgstr "Grilă"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:70
|
||||
msgid "Headline"
|
||||
msgstr "Titlu"
|
||||
|
||||
@ -668,7 +725,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."
|
||||
|
||||
#: 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
|
||||
msgid "Hidden"
|
||||
msgstr "Ascuns"
|
||||
@ -677,7 +734,7 @@ msgstr "Ascuns"
|
||||
msgid "Hide"
|
||||
msgstr "Ascunde"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Ascunde pictogramele"
|
||||
|
||||
@ -734,7 +791,7 @@ msgstr "Îmbunătățiți scrierea"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "În cazul în care nu puteți scana acest cod QR, puteți, de asemenea, să copiați și să inserați acest link în aplicația dumneavoastră de autentificare."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "În această secțiune, puteți schimba parola și activa/dezactiva autentificarea cu doi factori."
|
||||
|
||||
@ -743,7 +800,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>."
|
||||
|
||||
#: 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"
|
||||
msgstr "Informație"
|
||||
|
||||
@ -802,10 +860,10 @@ msgstr "john.doe@example.com"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||
msgid "Keywords"
|
||||
msgstr "Cuvinte cheie"
|
||||
|
||||
@ -824,7 +882,8 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Ultima actualizare {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx: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"
|
||||
msgstr "Aspect"
|
||||
|
||||
@ -837,7 +896,7 @@ msgid "Letter"
|
||||
msgstr "Scrisoare"
|
||||
|
||||
#: 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"
|
||||
msgstr "Nivel"
|
||||
|
||||
@ -853,7 +912,7 @@ msgstr "Deschisă"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Temă deschisă sau întunecată"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Înălțimea liniei"
|
||||
|
||||
@ -862,14 +921,14 @@ msgstr "Înălțimea liniei"
|
||||
msgid "LinkedIn, JSON Resume, 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"
|
||||
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/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:120
|
||||
msgid "Location"
|
||||
msgstr "Locație"
|
||||
|
||||
@ -897,7 +956,7 @@ msgstr "Deconectare"
|
||||
msgid "Lost your device?"
|
||||
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"
|
||||
msgstr "Principal"
|
||||
|
||||
@ -914,7 +973,7 @@ msgstr "Martie 2023"
|
||||
|
||||
#: 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/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
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "Martie 2023 - Prezent"
|
||||
@ -923,7 +982,7 @@ msgstr "Martie 2023 - Prezent"
|
||||
msgid "Margin"
|
||||
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"
|
||||
msgstr "Jetoane maxime"
|
||||
|
||||
@ -931,18 +990,18 @@ msgstr "Jetoane maxime"
|
||||
msgid "MIT License"
|
||||
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"
|
||||
msgstr "Model"
|
||||
|
||||
#: 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/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: 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/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/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/dashboard/settings/_sections/account.tsx:153
|
||||
msgid "Name"
|
||||
@ -957,7 +1016,7 @@ msgstr "Nume"
|
||||
msgid "Network"
|
||||
msgstr "Rețea"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Parola Nouă"
|
||||
|
||||
@ -974,6 +1033,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Notă: acest lucru va face contul dumneavoastră mai puțin sigur."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Notițe"
|
||||
@ -1009,16 +1069,16 @@ msgstr "OpenAI nu a returnat nicio alegere pentru textul dvs."
|
||||
msgid "OpenAI Integration"
|
||||
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"
|
||||
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/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Opțiuni"
|
||||
|
||||
@ -1032,22 +1092,23 @@ msgid "Organization"
|
||||
msgstr "Organizație"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Pagină"
|
||||
|
||||
#: 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}"
|
||||
msgstr "Pagina {pageNumber}"
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Parolă"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||
msgid "PDF"
|
||||
msgstr "PDF"
|
||||
|
||||
@ -1055,7 +1116,7 @@ msgstr "PDF"
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr "Note personale pentru fiecare CV"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:108
|
||||
msgid "Phone"
|
||||
msgstr "Telefon"
|
||||
|
||||
@ -1109,14 +1170,12 @@ msgstr "Oferit de <0>Icons-ul simplu</0>"
|
||||
msgid "Primary Color"
|
||||
msgstr "Culoare primară"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Politica de confidenţialitate"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
#: apps/client/src/components/ai-actions.tsx:113
|
||||
#: apps/client/src/components/ai-actions.tsx:116
|
||||
msgid "Professional"
|
||||
msgstr "Profesional"
|
||||
|
||||
@ -1132,7 +1191,7 @@ msgstr "Public"
|
||||
msgid "Publisher"
|
||||
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"
|
||||
msgstr "Ridicați o problemă"
|
||||
|
||||
@ -1144,11 +1203,10 @@ msgstr "Ridicați o problemă"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1175,12 +1233,12 @@ msgstr "Reactiv Resume prosperă datorită comunității sale dinamice. Acest pr
|
||||
msgid "Redo"
|
||||
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
|
||||
msgid "Remove"
|
||||
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"
|
||||
msgstr "Elimină pagina"
|
||||
|
||||
@ -1199,7 +1257,7 @@ msgstr "Retrimite link-ul de confirmare a e-mailului"
|
||||
msgid "Reset"
|
||||
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"
|
||||
msgstr "Resetează Layout"
|
||||
|
||||
@ -1213,8 +1271,8 @@ msgid "Reset Zoom"
|
||||
msgstr "Resetați zoomul"
|
||||
|
||||
#: 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:37
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||
msgid "Resumes"
|
||||
msgstr "CV-uri"
|
||||
|
||||
@ -1237,11 +1295,11 @@ msgstr "Rotunjit"
|
||||
msgid "Save Changes"
|
||||
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"
|
||||
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"
|
||||
msgstr "Salvat"
|
||||
|
||||
@ -1262,15 +1320,15 @@ msgstr "Derulați la Pan"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Derulați pentru a mări"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Căutați o familie de fonturi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Căutați un subset de fonturi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Căutați o variantă de font"
|
||||
|
||||
@ -1282,7 +1340,7 @@ msgstr "Căutați o limbă"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Securizează cu autentificarea doi factori"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Securitate"
|
||||
|
||||
@ -1294,7 +1352,7 @@ msgstr "Self-host cu Docker"
|
||||
msgid "Send 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"
|
||||
msgstr "Trimite-mi un mesaj"
|
||||
|
||||
@ -1314,6 +1372,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Configurați autentificarea cu doi factori pentru contul dvs"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Partajarea"
|
||||
@ -1330,7 +1389,7 @@ msgstr "Arată linia de întrerupere"
|
||||
msgid "Show Page Numbers"
|
||||
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"
|
||||
msgstr "Bară laterală"
|
||||
|
||||
@ -1408,6 +1467,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Începeți să vă creați CV-ul dându-i un nume."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Statistici"
|
||||
@ -1422,17 +1482,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/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/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/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "Summary"
|
||||
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!"
|
||||
msgstr "Sprijină aplicația donând cât poți!"
|
||||
|
||||
@ -1444,11 +1504,20 @@ msgstr "Continuare suport pentru reactivare"
|
||||
msgid "Supports A4/Letter page formats"
|
||||
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
|
||||
msgid "System"
|
||||
msgstr "Sistem"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Șablon"
|
||||
@ -1465,15 +1534,20 @@ msgstr "Mărturii"
|
||||
msgid "Text Color"
|
||||
msgstr "Culoare text"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "Parolele introduse nu coincid."
|
||||
#: apps/client/src/pages/public/error.tsx:17
|
||||
msgid "The page you're looking for doesn't exist."
|
||||
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
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "CV-ul pe care doriți să îl actualizați este blocat, vă rugăm să îl deblocați dacă doriți să-i faceți modificări."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1604,7 @@ msgstr "Urmăriți vizionările și descărcările"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Autentificare în doi pași"
|
||||
|
||||
@ -1552,11 +1626,12 @@ msgid "Type of Study"
|
||||
msgstr "Tipul studiului"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Tipografie"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Subliniază link-urile"
|
||||
|
||||
@ -1599,6 +1674,14 @@ msgstr "URL"
|
||||
msgid "URL must start with 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:57
|
||||
msgid "Use your backup code"
|
||||
@ -1651,7 +1734,7 @@ msgstr "Versiunea 4"
|
||||
msgid "Views"
|
||||
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"
|
||||
msgstr "Vizibil"
|
||||
|
||||
@ -1665,15 +1748,15 @@ 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/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/experience.tsx:100
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:96
|
||||
msgid "Website"
|
||||
msgstr "Website"
|
||||
|
||||
@ -1681,10 +1764,14 @@ msgstr "Website"
|
||||
msgid "What's new in the latest version"
|
||||
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/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
||||
#: apps/client/src/pages/public/error.tsx:26
|
||||
msgid "You are not authorized to access this page."
|
||||
msgstr "Nu sunteți autorizat să accesați această pagină."
|
||||
|
||||
#: 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."
|
||||
msgstr "Puteți adăuga mai multe cuvinte cheie separându-le cu o virgulă sau apăsând enter."
|
||||
|
||||
@ -1692,19 +1779,27 @@ msgstr "Puteți adăuga mai multe cuvinte cheie separându-le cu o virgulă sau
|
||||
msgid "You can also enter your username."
|
||||
msgstr "Poți, de asemenea, să introduci numele de utilizator."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||
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."
|
||||
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."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||
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 "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
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
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."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||
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 "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
|
||||
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ă."
|
||||
|
||||
#: 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."
|
||||
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 +1816,7 @@ msgstr "Ai primit e-mail!"
|
||||
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!"
|
||||
|
||||
#: 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."
|
||||
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 +1828,7 @@ msgstr "Adresa ta de e-mail a fost verificată cu succes."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Cheia Dumneavoastră API OpenAI nu a fost încă stabilită. Mergeţi la setările contului dumneavoastră pentru a activa integrarea OpenAI."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Parola dumneavoastră a fost actualizată cu succes."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ru\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-11-04 14:22\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Russian\n"
|
||||
"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n"
|
||||
@ -24,33 +24,33 @@ msgstr "Вы успешно включили двухфакторную ауте
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:57
|
||||
msgid "{templatesCount} resume templates to choose from"
|
||||
msgstr "{templatesCount} шаблоны резюме на выбор"
|
||||
msgstr "{templatesCount} шаблонов резюме на выбор"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:142
|
||||
msgid "{value, plural, one {Column} other {Columns}}"
|
||||
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>"
|
||||
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>"
|
||||
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."
|
||||
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>"
|
||||
msgstr "<0>Сообщество потратило много времени на написание документации для Reactive Resume, и я уверен, что она поможет вам начать работу с приложением.</0> <1>Здесь также есть множество примеров, которые помогут вам начать работу, и функций, о которых вы, возможно, не знали, которые помогут вам составить идеальное резюме.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>Двухфакторная аутентификация в настоящее время отключена.</0> Вы можете включить его, добавив приложение для аутентификации в свою учетную запись."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>Двухфакторная аутентификация включена.</0> Вам будет предложено ввести код каждый раз при входе в систему."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Аккаунт"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Добавьте настраиваемое поле"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:203
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Добавить новый элемент"
|
||||
@ -112,12 +112,12 @@ msgstr "Добавить новый элемент"
|
||||
msgid "Add a new item"
|
||||
msgstr "Добавить новый элемент"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:267
|
||||
msgid "Add a new section"
|
||||
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"
|
||||
msgstr "Добавить новую страницу"
|
||||
|
||||
@ -133,6 +133,14 @@ msgstr "Уже есть аккаунт?"
|
||||
msgid "An error occurred while validating the file."
|
||||
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
|
||||
msgid "and many more..."
|
||||
msgstr "и многое другое..."
|
||||
@ -191,6 +199,18 @@ msgstr "Доступно на {languagesCount} языках"
|
||||
msgid "Awarder"
|
||||
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/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
@ -209,16 +229,16 @@ msgstr "Резервный код"
|
||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||
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"
|
||||
msgstr "Базовый URL"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:58
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr "Основы"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
msgid "Basics"
|
||||
msgstr "Основы"
|
||||
|
||||
@ -246,8 +266,8 @@ msgstr "Продукт сообщества для сообщества."
|
||||
msgid "Cancel"
|
||||
msgstr "Отмена"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
#: apps/client/src/components/ai-actions.tsx:107
|
||||
#: apps/client/src/components/ai-actions.tsx:110
|
||||
msgid "Casual"
|
||||
msgstr "Простой"
|
||||
|
||||
@ -255,12 +275,16 @@ msgstr "Простой"
|
||||
msgid "Center Artboard"
|
||||
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/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Изменить пароль"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
#: apps/client/src/components/ai-actions.tsx:101
|
||||
msgid "Change Tone"
|
||||
msgstr "Изменить тон"
|
||||
|
||||
@ -288,6 +312,16 @@ msgstr "Код"
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr "Код должен состоять ровно из 6 цифр."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:272
|
||||
msgid "Collapse All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Collapse section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136
|
||||
msgid "Columns"
|
||||
msgstr "Столбцы"
|
||||
@ -296,21 +330,17 @@ msgstr "Столбцы"
|
||||
msgid "Company"
|
||||
msgstr "Компания"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
#: apps/client/src/components/ai-actions.tsx:119
|
||||
#: apps/client/src/components/ai-actions.tsx:122
|
||||
msgid "Confident"
|
||||
msgstr "Надёжный"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Подтвердить новый пароль"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
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"
|
||||
msgstr "Скопировать"
|
||||
|
||||
@ -351,7 +381,12 @@ msgstr "Создать сейчас"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Создать Образец Резюме"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr "Текущий пароль"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "Пользовательский CSS"
|
||||
@ -360,7 +395,7 @@ msgstr "Пользовательский CSS"
|
||||
msgid "Custom resume sections"
|
||||
msgstr "Пользовательские разделы резюме"
|
||||
|
||||
#: apps/client/src/stores/resume.ts:47
|
||||
#: apps/client/src/stores/resume.ts:53
|
||||
msgid "Custom Section"
|
||||
msgstr "Пользовательский раздел"
|
||||
|
||||
@ -386,10 +421,10 @@ msgstr "Темная"
|
||||
msgid "Date"
|
||||
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/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
|
||||
msgid "Date or Date Range"
|
||||
msgstr "Дата или Диапазон Дат"
|
||||
@ -407,11 +442,15 @@ msgstr "Удалить"
|
||||
msgid "Delete Account"
|
||||
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/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/skills.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||
msgid "Description"
|
||||
msgstr "Описание"
|
||||
|
||||
@ -423,18 +462,18 @@ msgstr "Дизайн одностраничных/многостраничных
|
||||
msgid "Disable"
|
||||
msgstr "Отключить"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Отключить 2FA"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Отмена"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr "Документация"
|
||||
|
||||
@ -442,7 +481,7 @@ msgstr "Документация"
|
||||
msgid "Don't have an account?"
|
||||
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!"
|
||||
msgstr "Не знаете, с чего начать? Посмотрите документацию!"
|
||||
|
||||
@ -450,7 +489,7 @@ msgstr "Не знаете, с чего начать? Посмотрите док
|
||||
msgid "Don't see your language? <0>Help translate the app.</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"
|
||||
msgstr "Пожертвовать Reactive Resume"
|
||||
|
||||
@ -458,12 +497,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."
|
||||
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."
|
||||
msgstr "Скачать PDF-файл Вашего резюме. Этот файл можно использовать для печати резюме, отправки его рекрутерам или загрузки на сайты по поиску работы."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Скачать PDF"
|
||||
|
||||
@ -487,7 +525,7 @@ msgstr "Дублировать существующий элемент"
|
||||
msgid "Duplicate an existing resume"
|
||||
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"
|
||||
msgstr "Изменить"
|
||||
|
||||
@ -498,12 +536,12 @@ msgstr "Эффекты"
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:90
|
||||
#: apps/client/src/pages/auth/register/page.tsx:141
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181
|
||||
msgid "Email"
|
||||
msgstr "Эл. почта"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Включить 2FA"
|
||||
|
||||
@ -531,6 +569,10 @@ msgstr "Введите ниже одноразовый пароль из ваш
|
||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||
msgstr "Введите свой адрес эл. почты, и мы пришлем вам ссылку для сброса пароля, если такой аккаунт существует."
|
||||
|
||||
#: apps/client/src/pages/public/error.tsx:46
|
||||
msgid "Error {statusCode}"
|
||||
msgstr "Ошибка {statusCode}"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||
msgid "Errors"
|
||||
msgstr "Ошибки"
|
||||
@ -539,11 +581,22 @@ msgstr "Ошибки"
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr "Даже если вы не вы не можете внести вклад в проект финансово, вы все равно можете помочь проекту, поставив звезду репозиторию на GitHub, рассказав друзьям или оставив короткое сообщение, чтобы я узнал, как именно Reactive Resume помог вам. Ваши отзывы и поддержка всегда приветствуются и очень ценятся!"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:271
|
||||
msgid "Expand All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Expand section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "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 "Изучите шаблоны, доступные в Reactive Resume, и просмотрите резюме, созданные с их помощью. Они также могут послужить примерами для создания вашего следующего резюме."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Экспорт"
|
||||
@ -564,19 +617,19 @@ msgstr "Наконец-то,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Исправить орфографию и грамматику"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Семейство шрифтов"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Размер шрифта"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Подгруппа шрифтов"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Вариант шрифта"
|
||||
|
||||
@ -584,7 +637,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."
|
||||
msgstr "Например, здесь можно записать информацию о том, в какие компании вы отправили это резюме, или ссылки на описания вакансий."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||
msgid "Forget"
|
||||
msgstr "Удалить"
|
||||
|
||||
@ -601,7 +654,7 @@ msgstr "Забыли ваш пароль?"
|
||||
msgid "Format"
|
||||
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?"
|
||||
msgstr "Нашли ошибку или у вас есть идея для новой функции?"
|
||||
|
||||
@ -609,12 +662,12 @@ msgstr "Нашли ошибку или у вас есть идея для нов
|
||||
msgid "Free, forever"
|
||||
msgstr "Бесплатно, навсегда"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:121
|
||||
#: apps/client/src/components/ai-actions.tsx:124
|
||||
#: apps/client/src/components/ai-actions.tsx:125
|
||||
#: apps/client/src/components/ai-actions.tsx:128
|
||||
msgid "Friendly"
|
||||
msgstr "Дружелюбно"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:56
|
||||
msgid "Full Name"
|
||||
msgstr "Полное имя"
|
||||
|
||||
@ -643,6 +696,10 @@ msgstr "Дайте своему старому резюме новое имя."
|
||||
msgid "Go to Dashboard"
|
||||
msgstr "На главную"
|
||||
|
||||
#: apps/client/src/pages/public/error.tsx:55
|
||||
msgid "Go to home"
|
||||
msgstr "Перейти на главную"
|
||||
|
||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||
msgid "Google"
|
||||
msgstr "Google"
|
||||
@ -651,11 +708,11 @@ msgstr "Google"
|
||||
msgid "Grayscale"
|
||||
msgstr "Монохром"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||
msgid "Grid"
|
||||
msgstr "Плитка"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:70
|
||||
msgid "Headline"
|
||||
msgstr "Заголовок"
|
||||
|
||||
@ -668,7 +725,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr "Здесь вы можете обновить свой профиль, чтобы настроить и персонализировать свой опыт."
|
||||
|
||||
#: 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
|
||||
msgid "Hidden"
|
||||
msgstr "Скрытый"
|
||||
@ -677,7 +734,7 @@ msgstr "Скрытый"
|
||||
msgid "Hide"
|
||||
msgstr "Скрыть"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Скрывать иконки"
|
||||
|
||||
@ -734,7 +791,7 @@ msgstr "Улучшить написание"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Если вы не можете отсканировать QR-код, скопируйте эту ссылку в свое приложение-аутентификатор."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "В этом разделе вы можете изменить свой пароль и включить/выключить двухфакторную аутентификацию."
|
||||
|
||||
@ -743,7 +800,8 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "В этом разделе вы можете удалить свою учетную запись и все данные, связанные с аккаунтом, но имейте в виду, что <0>это действие необратимо</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx: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"
|
||||
msgstr "Информация"
|
||||
|
||||
@ -802,10 +860,10 @@ msgstr "ivan.ivanovich@example.com"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||
msgid "Keywords"
|
||||
msgstr "Ключевые слова"
|
||||
|
||||
@ -824,7 +882,8 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Последнее обновление {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx: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"
|
||||
msgstr "Макет"
|
||||
|
||||
@ -837,7 +896,7 @@ msgid "Letter"
|
||||
msgstr "Letter"
|
||||
|
||||
#: 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"
|
||||
msgstr "Уровень"
|
||||
|
||||
@ -853,7 +912,7 @@ msgstr "Светлая"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Светлая или темная тема"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Высота строки"
|
||||
|
||||
@ -862,14 +921,14 @@ msgstr "Высота строки"
|
||||
msgid "LinkedIn, JSON Resume, etc."
|
||||
msgstr "LinkedIn, JSON Resume и т.д."
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||
msgid "List"
|
||||
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/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:120
|
||||
msgid "Location"
|
||||
msgstr "Местоположение"
|
||||
|
||||
@ -897,7 +956,7 @@ msgstr "Выйти"
|
||||
msgid "Lost your device?"
|
||||
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"
|
||||
msgstr "Главная"
|
||||
|
||||
@ -914,7 +973,7 @@ msgstr "Март 2023"
|
||||
|
||||
#: 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/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
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "Март 2023 - настоящее время"
|
||||
@ -923,7 +982,7 @@ msgstr "Март 2023 - настоящее время"
|
||||
msgid "Margin"
|
||||
msgstr "Отступ"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||
msgid "Max Tokens"
|
||||
msgstr "Максимум токенов"
|
||||
|
||||
@ -931,18 +990,18 @@ msgstr "Максимум токенов"
|
||||
msgid "MIT License"
|
||||
msgstr "Лицензия MIT"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||
msgid "Model"
|
||||
msgstr "Модель"
|
||||
|
||||
#: 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/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: 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/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/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/dashboard/settings/_sections/account.tsx:153
|
||||
msgid "Name"
|
||||
@ -957,7 +1016,7 @@ msgstr "Имя"
|
||||
msgid "Network"
|
||||
msgstr "Сеть"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Новый пароль"
|
||||
|
||||
@ -974,6 +1033,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Примечание: Это сделает вашу учетную запись менее безопасной."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Заметки"
|
||||
@ -1009,16 +1069,16 @@ msgstr "OpenAI не вернул никаких вариантов для ваш
|
||||
msgid "OpenAI Integration"
|
||||
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"
|
||||
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/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Настройки"
|
||||
|
||||
@ -1032,22 +1092,23 @@ msgid "Organization"
|
||||
msgstr "Организация"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Страница"
|
||||
|
||||
#: 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}"
|
||||
msgstr "Страница {pageNumber}"
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Пароль"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||
msgid "PDF"
|
||||
msgstr "PDF"
|
||||
|
||||
@ -1055,7 +1116,7 @@ msgstr "PDF"
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr "Личные заметки для каждого резюме"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:108
|
||||
msgid "Phone"
|
||||
msgstr "Телефон"
|
||||
|
||||
@ -1109,14 +1170,12 @@ msgstr "Разработано с помощью <0>Simple Icons</0>"
|
||||
msgid "Primary Color"
|
||||
msgstr "Основной цвет"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Политика конфиденциальности"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
#: apps/client/src/components/ai-actions.tsx:113
|
||||
#: apps/client/src/components/ai-actions.tsx:116
|
||||
msgid "Professional"
|
||||
msgstr "Профессиональный"
|
||||
|
||||
@ -1132,7 +1191,7 @@ msgstr "Открытый"
|
||||
msgid "Publisher"
|
||||
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"
|
||||
msgstr "Поднять проблему"
|
||||
|
||||
@ -1144,11 +1203,10 @@ msgstr "Поднять проблему"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1175,12 +1233,12 @@ msgstr "Reactive Resume процветает благодаря своему а
|
||||
msgid "Redo"
|
||||
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
|
||||
msgid "Remove"
|
||||
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"
|
||||
msgstr "Удалить страницу"
|
||||
|
||||
@ -1199,7 +1257,7 @@ msgstr "Отправить ссылку для подтверждения пов
|
||||
msgid "Reset"
|
||||
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"
|
||||
msgstr "Сбросить макет"
|
||||
|
||||
@ -1213,8 +1271,8 @@ msgid "Reset Zoom"
|
||||
msgstr "Сбросить масштаб"
|
||||
|
||||
#: 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:37
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||
msgid "Resumes"
|
||||
msgstr "Резюме"
|
||||
|
||||
@ -1237,11 +1295,11 @@ msgstr "Скруглённая"
|
||||
msgid "Save Changes"
|
||||
msgstr "Сохранить изменения"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||
msgid "Save Locally"
|
||||
msgstr "Сохранить локально"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||
msgid "Saved"
|
||||
msgstr "Сохранено"
|
||||
|
||||
@ -1262,15 +1320,15 @@ msgstr "Прокрутите до панорамирования"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Прокрутка для увеличения"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Поиск семейства шрифтов"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Поиск подгруппы шрифта"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Поиск варианта шрифта"
|
||||
|
||||
@ -1282,7 +1340,7 @@ msgstr "Поиск языка"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Защита с помощью двухфакторной аутентификации"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Безопасность"
|
||||
|
||||
@ -1294,7 +1352,7 @@ msgstr "Хостинг на Docker"
|
||||
msgid "Send Email"
|
||||
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"
|
||||
msgstr "Отправить мне сообщение"
|
||||
|
||||
@ -1314,6 +1372,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Настройте двухфакторную аутентификацию на своей учетной записи"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Поделиться"
|
||||
@ -1330,7 +1389,7 @@ msgstr "Показать линию разрыва"
|
||||
msgid "Show Page Numbers"
|
||||
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"
|
||||
msgstr "Боковая панель"
|
||||
|
||||
@ -1408,6 +1467,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Начните составлять свое резюме, дав ему название."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Статистика"
|
||||
@ -1422,17 +1482,17 @@ msgstr "Храните коды резервного копирования в
|
||||
|
||||
#: 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/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/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/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "Summary"
|
||||
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!"
|
||||
msgstr "Поддержите приложение, пожертвовав сколько можете!"
|
||||
|
||||
@ -1444,11 +1504,20 @@ msgstr "Поддержите Reactive Resume"
|
||||
msgid "Supports A4/Letter page formats"
|
||||
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
|
||||
msgid "System"
|
||||
msgstr "Системная"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Шаблон"
|
||||
@ -1465,15 +1534,20 @@ msgstr "Отзывы"
|
||||
msgid "Text Color"
|
||||
msgstr "Цвет текста"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "Введенные вами пароли не совпадают."
|
||||
#: apps/client/src/pages/public/error.tsx:17
|
||||
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 "Некорректный запрос."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "Резюме, которое Вы хотите обновить, заблокировано, пожалуйста, разблокируйте его, если хотите внести в него какие-либо изменения."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1604,7 @@ msgstr "Отслеживание просмотров и загрузок"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Двухфакторная аутентификация"
|
||||
|
||||
@ -1552,11 +1626,12 @@ msgid "Type of Study"
|
||||
msgstr "Форма обучения"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Типография"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Подчеркивать ссылки"
|
||||
|
||||
@ -1599,6 +1674,14 @@ msgstr "URL"
|
||||
msgid "URL must start with 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:57
|
||||
msgid "Use your backup code"
|
||||
@ -1651,7 +1734,7 @@ msgstr "Версия 4"
|
||||
msgid "Views"
|
||||
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"
|
||||
msgstr "Видимый"
|
||||
|
||||
@ -1665,15 +1748,15 @@ msgstr "Мы подтверждаем ваш адрес эл. почты, тол
|
||||
|
||||
#: 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/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/experience.tsx:100
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:96
|
||||
msgid "Website"
|
||||
msgstr "Сайт"
|
||||
|
||||
@ -1681,10 +1764,14 @@ msgstr "Сайт"
|
||||
msgid "What's new in the latest version"
|
||||
msgstr "Что нового в последней версии"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
||||
#: apps/client/src/pages/public/error.tsx:26
|
||||
msgid "You are not authorized to access this page."
|
||||
msgstr "Вы не авторизованы для доступа к этой странице."
|
||||
|
||||
#: 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."
|
||||
msgstr "Вы можете добавить несколько ключевых слов, разделив их запятой или нажав Enter."
|
||||
|
||||
@ -1692,19 +1779,27 @@ msgstr "Вы можете добавить несколько ключевых
|
||||
msgid "You can also enter your username."
|
||||
msgstr "Вы также можете ввести свое имя пользователя."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||
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."
|
||||
msgstr "Вы также можете интегрироваться с Ollama, просто задав API-ключ `sk-1234567890abcdef` и базовый URL - URL Вашего Ollama, т.е. `http://localhost:11434/v1`. Вы также можете выбирать модели и устанавливать максимальное количество токенов в соответствии с Вашими предпочтениями."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||
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 "Вы также можете интегрироваться с 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
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
msgstr "Вы можете использовать API OpenAI, чтобы сгенерировать контент или улучшить текст при составлении резюме."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||
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 "Вы также можете интегрироваться с 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
|
||||
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 "Вы можете отслеживать количество просмотров вашего резюме и количество людей, скачавших его, включив общий доступ."
|
||||
|
||||
#: 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."
|
||||
msgstr "У вас есть возможность <0>получить свой собственный ключ API OpenAI</0>. Этот ключ позволит использовать API по своему усмотрению. В качестве альтернативы, если вы хотите полностью отключить AI функции в Reactive Resume, вы можете просто удалить ключ из своих настроек."
|
||||
|
||||
@ -1721,7 +1816,7 @@ msgstr "Вы получили письмо!"
|
||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||
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."
|
||||
msgstr "Ваш ключ API надежно хранится в локальном хранилище браузера и используется только при запросах к OpenAI через их официальный SDK. Будьте уверены, в том, что ключ не передается ни на какой внешний сервер, за исключением случаев взаимодействия с сервисами OpenAI."
|
||||
|
||||
@ -1733,7 +1828,7 @@ msgstr "Ваш адрес эл. почты был успешно подтвер
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Ваш ключ API OpenAI еще не установлен. Пожалуйста, включите интеграцию OpenAI в настройках вашего аккаунта."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Ваш пароль был успешно обновлен."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: sk\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-11-04 14:22\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Slovak\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}}"
|
||||
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>"
|
||||
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>"
|
||||
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."
|
||||
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>"
|
||||
msgstr "<0>Komunita strávila veľa času písaním dokumentácie k aplikácii Reactive Resume a som si istý, že vám pomôže začať pracovať s aplikáciou.</0><1>Je tu aj veľa príkladov, ktoré vám pomôžu začať, a funkcií, o ktorých možno neviete a ktoré by vám mohli pomôcť vytvoriť dokonalý životopis.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>Dvojfaktorové overovanie je v súčasnosti vypnuté.</0> Môžete ho povoliť pridaním aplikácie autentifikátora do svojho konta."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>Dvojfaktorové overovanie je povolené.</0> Pri každom prihlásení budete požiadaní o zadanie kódu."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Účet"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Pridanie vlastného poľa"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:203
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Pridanie novej položky"
|
||||
@ -112,12 +112,12 @@ msgstr "Pridanie novej položky"
|
||||
msgid "Add a new item"
|
||||
msgstr "Pridanie novej položky"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:267
|
||||
msgid "Add a new section"
|
||||
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"
|
||||
msgstr "Pridať novú stránku"
|
||||
|
||||
@ -133,6 +133,14 @@ msgstr "Už máte účet?"
|
||||
msgid "An error occurred while validating the file."
|
||||
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
|
||||
msgid "and many more..."
|
||||
msgstr "a mnoho ďalších..."
|
||||
@ -191,6 +199,18 @@ msgstr "K dispozícii v {languagesCount} jazykoch"
|
||||
msgid "Awarder"
|
||||
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/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
@ -209,16 +229,16 @@ msgstr "Záložný kód"
|
||||
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."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||
msgid "Base URL"
|
||||
msgstr "Základná adresa URL"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:58
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr "Základy"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
msgid "Basics"
|
||||
msgstr "Základy"
|
||||
|
||||
@ -246,8 +266,8 @@ msgstr "Od komunity, pre komunitu."
|
||||
msgid "Cancel"
|
||||
msgstr "Zrušiť"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
#: apps/client/src/components/ai-actions.tsx:107
|
||||
#: apps/client/src/components/ai-actions.tsx:110
|
||||
msgid "Casual"
|
||||
msgstr "Príležitostné"
|
||||
|
||||
@ -255,12 +275,16 @@ msgstr "Príležitostné"
|
||||
msgid "Center Artboard"
|
||||
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/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Zmena hesla"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
#: apps/client/src/components/ai-actions.tsx:101
|
||||
msgid "Change Tone"
|
||||
msgstr "Zmena tónu"
|
||||
|
||||
@ -288,6 +312,16 @@ msgstr "Kód"
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr "Kód musí mať presne 6 číslic."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:272
|
||||
msgid "Collapse All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Collapse section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136
|
||||
msgid "Columns"
|
||||
msgstr "Stĺpce"
|
||||
@ -296,21 +330,17 @@ msgstr "Stĺpce"
|
||||
msgid "Company"
|
||||
msgstr "Spoločnosť"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
#: apps/client/src/components/ai-actions.tsx:119
|
||||
#: apps/client/src/components/ai-actions.tsx:122
|
||||
msgid "Confident"
|
||||
msgstr "Sebavedomé"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Potvrdenie nového hesla"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
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"
|
||||
msgstr "Kopírovať"
|
||||
|
||||
@ -351,7 +381,12 @@ msgstr "Vytvorte si ho teraz"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Vytvorenie vzorového životopisu"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr "Aktuálne heslo"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "Vlastné CSS"
|
||||
@ -360,7 +395,7 @@ msgstr "Vlastné CSS"
|
||||
msgid "Custom resume sections"
|
||||
msgstr "Vlastné časti životopisu"
|
||||
|
||||
#: apps/client/src/stores/resume.ts:47
|
||||
#: apps/client/src/stores/resume.ts:53
|
||||
msgid "Custom Section"
|
||||
msgstr "Vlastná sekcia"
|
||||
|
||||
@ -386,10 +421,10 @@ msgstr "Dark"
|
||||
msgid "Date"
|
||||
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/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
|
||||
msgid "Date or Date Range"
|
||||
msgstr "Dátum alebo rozsah dátumov"
|
||||
@ -407,11 +442,15 @@ msgstr "Odstrániť"
|
||||
msgid "Delete Account"
|
||||
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/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/skills.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||
msgid "Description"
|
||||
msgstr "Popis"
|
||||
|
||||
@ -423,18 +462,18 @@ msgstr "Navrhovanie jednostranných/ viacstranových životopisov"
|
||||
msgid "Disable"
|
||||
msgstr "Zakázať"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Zakázanie funkcie 2FA"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Vyradiť"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentácia"
|
||||
|
||||
@ -442,7 +481,7 @@ msgstr "Dokumentácia"
|
||||
msgid "Don't have an account?"
|
||||
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!"
|
||||
msgstr "Neviete, kde začať? Prejdite na dokumenty!"
|
||||
|
||||
@ -450,7 +489,7 @@ msgstr "Neviete, kde začať? Prejdite na dokumenty!"
|
||||
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>"
|
||||
|
||||
#: 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"
|
||||
msgstr "Darujte Reaktívny životopis"
|
||||
|
||||
@ -458,12 +497,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."
|
||||
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."
|
||||
msgstr "Stiahnite si svoj životopis vo formáte PDF. Tento súbor môžete použiť na vytlačenie svojho životopisu, poslať ho náborovým pracovníkom alebo nahrať na pracovné portály."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Stiahnuť PDF"
|
||||
|
||||
@ -487,7 +525,7 @@ msgstr "Duplikovať existujúcu položku"
|
||||
msgid "Duplicate an existing resume"
|
||||
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"
|
||||
msgstr "Upraviť"
|
||||
|
||||
@ -498,12 +536,12 @@ msgstr "Účinky"
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:90
|
||||
#: apps/client/src/pages/auth/register/page.tsx:141
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181
|
||||
msgid "Email"
|
||||
msgstr "E-mail"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Povolenie 2FA"
|
||||
|
||||
@ -531,6 +569,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."
|
||||
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
|
||||
msgid "Errors"
|
||||
msgstr "Chyby"
|
||||
@ -539,11 +581,22 @@ msgstr "Chyby"
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr "Aj keď nie ste v pozícii, aby ste mohli finančne prispieť, stále môžete prispieť tým, že dáte úložisku GitHub hviezdičku, rozšírite túto informáciu medzi svojich priateľov alebo mi napíšete krátku správu, aby som vedel, ako vám Reactive Resume pomohol. Vaša spätná väzba a podpora sú vždy vítané a veľmi si ich cením!"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:271
|
||||
msgid "Expand All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Expand section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "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 "Preskúmajte šablóny dostupné v Reactive Resume a prezrite si životopisy, ktoré boli pomocou nich vytvorené. Môžu vám poslúžiť aj ako príklady, ktoré vám pomôžu pri tvorbe vášho ďalšieho životopisu."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Export"
|
||||
@ -564,19 +617,19 @@ msgstr "Nakoniec,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Oprava pravopisu a gramatiky"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Rodina písiem"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Veľkosť písma"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Podskupina písiem"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Varianty písma"
|
||||
|
||||
@ -584,7 +637,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."
|
||||
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"
|
||||
msgstr "Zabudnite na"
|
||||
|
||||
@ -601,7 +654,7 @@ msgstr "Zabudli ste heslo?"
|
||||
msgid "Format"
|
||||
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?"
|
||||
msgstr "Našli ste chybu alebo máte nápad na novú funkciu?"
|
||||
|
||||
@ -609,12 +662,12 @@ msgstr "Našli ste chybu alebo máte nápad na novú funkciu?"
|
||||
msgid "Free, forever"
|
||||
msgstr "Zadarmo, navždy"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:121
|
||||
#: apps/client/src/components/ai-actions.tsx:124
|
||||
#: apps/client/src/components/ai-actions.tsx:125
|
||||
#: apps/client/src/components/ai-actions.tsx:128
|
||||
msgid "Friendly"
|
||||
msgstr "Friendly"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:56
|
||||
msgid "Full Name"
|
||||
msgstr "Celé meno"
|
||||
|
||||
@ -643,6 +696,10 @@ msgstr "Dajte svojmu starému životopisu nové meno."
|
||||
msgid "Go to Dashboard"
|
||||
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
|
||||
msgid "Google"
|
||||
msgstr "Google"
|
||||
@ -651,11 +708,11 @@ msgstr "Google"
|
||||
msgid "Grayscale"
|
||||
msgstr "Odtiene sivej"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||
msgid "Grid"
|
||||
msgstr "Sieť"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:70
|
||||
msgid "Headline"
|
||||
msgstr "Titulok"
|
||||
|
||||
@ -668,7 +725,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."
|
||||
|
||||
#: 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
|
||||
msgid "Hidden"
|
||||
msgstr "Skryté"
|
||||
@ -677,7 +734,7 @@ msgstr "Skryté"
|
||||
msgid "Hide"
|
||||
msgstr "Skryť"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Skryť ikony"
|
||||
|
||||
@ -734,7 +791,7 @@ msgstr "Zlepšiť písanie"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Ak sa vám nepodarí naskenovať tento kód QR, môžete toto prepojenie skopírovať a vložiť do aplikácie autentifikátora."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "V tejto časti môžete zmeniť heslo a povoliť/povoliť dvojfaktorové overovanie."
|
||||
|
||||
@ -743,7 +800,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>."
|
||||
|
||||
#: 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"
|
||||
msgstr "Informácie"
|
||||
|
||||
@ -802,10 +860,10 @@ msgstr "john.doe@example.com"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||
msgid "Keywords"
|
||||
msgstr "Kľúčové slová"
|
||||
|
||||
@ -824,7 +882,8 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Posledná aktualizácia {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx: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"
|
||||
msgstr "Rozloženie"
|
||||
|
||||
@ -837,7 +896,7 @@ msgid "Letter"
|
||||
msgstr "List"
|
||||
|
||||
#: 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"
|
||||
msgstr "Úroveň"
|
||||
|
||||
@ -853,7 +912,7 @@ msgstr "Svetlo"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Svetlá alebo tmavá téma"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Výška riadku"
|
||||
|
||||
@ -862,14 +921,14 @@ msgstr "Výška riadku"
|
||||
msgid "LinkedIn, JSON Resume, etc."
|
||||
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"
|
||||
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/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:120
|
||||
msgid "Location"
|
||||
msgstr "Umiestnenie"
|
||||
|
||||
@ -897,7 +956,7 @@ msgstr "Odhlásenie"
|
||||
msgid "Lost your device?"
|
||||
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"
|
||||
msgstr "Hlavná stránka"
|
||||
|
||||
@ -914,7 +973,7 @@ msgstr "marec 2023"
|
||||
|
||||
#: 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/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
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "marec 2023 - súčasnosť"
|
||||
@ -923,7 +982,7 @@ msgstr "marec 2023 - súčasnosť"
|
||||
msgid "Margin"
|
||||
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"
|
||||
msgstr "Maximálny počet žetónov"
|
||||
|
||||
@ -931,18 +990,18 @@ msgstr "Maximálny počet žetónov"
|
||||
msgid "MIT License"
|
||||
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"
|
||||
msgstr "Model"
|
||||
|
||||
#: 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/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: 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/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/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/dashboard/settings/_sections/account.tsx:153
|
||||
msgid "Name"
|
||||
@ -957,7 +1016,7 @@ msgstr "Názov"
|
||||
msgid "Network"
|
||||
msgstr "Sieť"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Nové heslo"
|
||||
|
||||
@ -974,6 +1033,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Poznámka: Tým sa vaše konto stane menej bezpečným."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Poznámky"
|
||||
@ -1009,16 +1069,16 @@ msgstr "Aplikácia OpenAI nevrátila žiadne možnosti pre váš text."
|
||||
msgid "OpenAI Integration"
|
||||
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"
|
||||
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/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Možnosti"
|
||||
|
||||
@ -1032,22 +1092,23 @@ msgid "Organization"
|
||||
msgstr "Organizácia"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Strana"
|
||||
|
||||
#: 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}"
|
||||
msgstr "Strana {pageNumber}"
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Heslo"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||
msgid "PDF"
|
||||
msgstr "PDF"
|
||||
|
||||
@ -1055,7 +1116,7 @@ msgstr "PDF"
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr "Osobné poznámky ku každému životopisu"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:108
|
||||
msgid "Phone"
|
||||
msgstr "Telefón"
|
||||
|
||||
@ -1109,14 +1170,12 @@ msgstr "Poháňané <0>jednoduchými ikonami</0>"
|
||||
msgid "Primary Color"
|
||||
msgstr "Primárna farba"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Zásady ochrany osobných údajov"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
#: apps/client/src/components/ai-actions.tsx:113
|
||||
#: apps/client/src/components/ai-actions.tsx:116
|
||||
msgid "Professional"
|
||||
msgstr "Profesionálne"
|
||||
|
||||
@ -1132,7 +1191,7 @@ msgstr "Verejnosť"
|
||||
msgid "Publisher"
|
||||
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"
|
||||
msgstr "Upozorniť na problém"
|
||||
|
||||
@ -1144,11 +1203,10 @@ msgstr "Upozorniť na problém"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1175,12 +1233,12 @@ msgstr "Reactive Resume sa darí vďaka živej komunite. Tento projekt vďačí
|
||||
msgid "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
|
||||
msgid "Remove"
|
||||
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"
|
||||
msgstr "Odstrániť stránku"
|
||||
|
||||
@ -1199,7 +1257,7 @@ msgstr "Opätovné odoslanie prepojenia na potvrdenie e-mailu"
|
||||
msgid "Reset"
|
||||
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"
|
||||
msgstr "Obnovenie rozloženia"
|
||||
|
||||
@ -1213,8 +1271,8 @@ msgid "Reset Zoom"
|
||||
msgstr "Obnovenie priblíženia"
|
||||
|
||||
#: 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:37
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||
msgid "Resumes"
|
||||
msgstr "Životopisy"
|
||||
|
||||
@ -1237,11 +1295,11 @@ msgstr "Zaoblené"
|
||||
msgid "Save Changes"
|
||||
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"
|
||||
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"
|
||||
msgstr "Uložené"
|
||||
|
||||
@ -1262,15 +1320,15 @@ msgstr "Posuňte sa na Pan"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Posúvanie na zväčšenie"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Vyhľadanie rodiny písiem"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Vyhľadanie podmnožiny písma"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Vyhľadanie variantu písma"
|
||||
|
||||
@ -1282,7 +1340,7 @@ msgstr "Vyhľadávanie jazyka"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Zabezpečenie pomocou dvojfaktorového overovania"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Zabezpečenie"
|
||||
|
||||
@ -1294,7 +1352,7 @@ msgstr "Vlastný hostiteľ pomocou nástroja Docker"
|
||||
msgid "Send Email"
|
||||
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"
|
||||
msgstr "Pošlite mi správu"
|
||||
|
||||
@ -1314,6 +1372,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Nastavenie dvojfaktorového overovania na svojom konte"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Zdieľanie"
|
||||
@ -1330,7 +1389,7 @@ msgstr "Zobraziť čiaru prestávky"
|
||||
msgid "Show Page Numbers"
|
||||
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"
|
||||
msgstr "Bočný panel"
|
||||
|
||||
@ -1408,6 +1467,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Svoj životopis začnite tvoriť tak, že mu dáte meno."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Štatistika"
|
||||
@ -1422,17 +1482,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/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/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/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "Summary"
|
||||
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!"
|
||||
msgstr "Podporte aplikáciu darovaním toho, čo môžete!"
|
||||
|
||||
@ -1444,11 +1504,20 @@ msgstr "Podporný reaktívny životopis"
|
||||
msgid "Supports A4/Letter page formats"
|
||||
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
|
||||
msgid "System"
|
||||
msgstr "Systém"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Šablóna"
|
||||
@ -1465,15 +1534,20 @@ msgstr "Skúsenosti"
|
||||
msgid "Text Color"
|
||||
msgstr "Farba textu"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "Zadané heslá sa nezhodujú."
|
||||
#: apps/client/src/pages/public/error.tsx:17
|
||||
msgid "The page you're looking for doesn't exist."
|
||||
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
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "Životopis, ktorý chcete aktualizovať, je uzamknutý, ak v ňom chcete vykonať akékoľvek zmeny, odomknite ho."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1604,7 @@ msgstr "Sledovanie zobrazení a stiahnutí"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Dvojfaktorové overovanie"
|
||||
|
||||
@ -1552,11 +1626,12 @@ msgid "Type of Study"
|
||||
msgstr "Typ štúdie"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Typografia"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Podčiarknite odkazy"
|
||||
|
||||
@ -1599,6 +1674,14 @@ msgstr "ADRESA URL"
|
||||
msgid "URL must start with 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:57
|
||||
msgid "Use your backup code"
|
||||
@ -1651,7 +1734,7 @@ msgstr "Verzia 4"
|
||||
msgid "Views"
|
||||
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"
|
||||
msgstr "Viditeľné"
|
||||
|
||||
@ -1665,15 +1748,15 @@ 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/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/experience.tsx:100
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:96
|
||||
msgid "Website"
|
||||
msgstr "Webová lokalita"
|
||||
|
||||
@ -1681,10 +1764,14 @@ msgstr "Webová lokalita"
|
||||
msgid "What's new in the latest version"
|
||||
msgstr "Novinky v najnovšej verzii"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
||||
#: apps/client/src/pages/public/error.tsx:26
|
||||
msgid "You are not authorized to access this page."
|
||||
msgstr "Nemáte oprávnenie na prístup na túto stránku."
|
||||
|
||||
#: 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."
|
||||
msgstr "Môžete pridať viacero kľúčových slov tak, že ich oddelíte čiarkou alebo stlačíte kláves enter."
|
||||
|
||||
@ -1692,19 +1779,27 @@ msgstr "Môžete pridať viacero kľúčových slov tak, že ich oddelíte čiar
|
||||
msgid "You can also enter your username."
|
||||
msgstr "Môžete tiež zadať svoje používateľské meno."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||
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."
|
||||
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í."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||
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 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
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
msgstr "Rozhranie API OpenAI môžete využiť na pomoc pri vytváraní obsahu alebo na zlepšenie písania pri písaní životopisu."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||
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 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
|
||||
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."
|
||||
|
||||
#: 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."
|
||||
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 +1816,7 @@ msgstr "Máte poštu!"
|
||||
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!"
|
||||
|
||||
#: 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."
|
||||
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 +1828,7 @@ msgstr "Vaša e-mailová adresa bola úspešne overená."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Váš kľúč API OpenAI ešte nebol nastavený. Prejdite do nastavení svojho účtu a povoľte integráciu OpenAI."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Vaše heslo bolo úspešne aktualizované."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: sq\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-11-04 14:22\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Albanian\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}}"
|
||||
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>"
|
||||
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>"
|
||||
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."
|
||||
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>"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr ""
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Llogaria"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Shto një fushë të personalizuar"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:203
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Shto një vlerë të re"
|
||||
@ -112,12 +112,12 @@ msgstr "Shto një vlerë të re"
|
||||
msgid "Add a new item"
|
||||
msgstr "Shto një vlerë të re"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:267
|
||||
msgid "Add a new section"
|
||||
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"
|
||||
msgstr "Shto një faqe të re"
|
||||
|
||||
@ -133,6 +133,14 @@ msgstr "Posedoni një llogari?"
|
||||
msgid "An error occurred while validating the file."
|
||||
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
|
||||
msgid "and many more..."
|
||||
msgstr "dhe shume te tjera..."
|
||||
@ -191,6 +199,18 @@ msgstr "E ofruar në {languagesCount} gjuhë"
|
||||
msgid "Awarder"
|
||||
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/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
@ -209,16 +229,16 @@ msgstr "Kodi rezervë"
|
||||
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."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||
msgid "Base URL"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:58
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr "Bazat"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
msgid "Basics"
|
||||
msgstr "Bazat"
|
||||
|
||||
@ -246,8 +266,8 @@ msgstr "Nga komuniteti, për komunitetin."
|
||||
msgid "Cancel"
|
||||
msgstr "Anulo"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
#: apps/client/src/components/ai-actions.tsx:107
|
||||
#: apps/client/src/components/ai-actions.tsx:110
|
||||
msgid "Casual"
|
||||
msgstr "Jo formale"
|
||||
|
||||
@ -255,12 +275,16 @@ msgstr "Jo formale"
|
||||
msgid "Center Artboard"
|
||||
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/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Ndrysho fjalëkalimin"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
#: apps/client/src/components/ai-actions.tsx:101
|
||||
msgid "Change Tone"
|
||||
msgstr ""
|
||||
|
||||
@ -288,6 +312,16 @@ msgstr "Kodi"
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr "Kodi duhet të jetë saktësisht 6 shifra."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:272
|
||||
msgid "Collapse All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Collapse section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136
|
||||
msgid "Columns"
|
||||
msgstr "Kolonat"
|
||||
@ -296,21 +330,17 @@ msgstr "Kolonat"
|
||||
msgid "Company"
|
||||
msgstr "Kompania"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
#: apps/client/src/components/ai-actions.tsx:119
|
||||
#: apps/client/src/components/ai-actions.tsx:122
|
||||
msgid "Confident"
|
||||
msgstr "Të sigurt"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Konfirmo fjalëkalimin e ri"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
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"
|
||||
msgstr "Kopjo"
|
||||
|
||||
@ -351,7 +381,12 @@ msgstr "Regjistrohu"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Krijo një CV nga shembujt"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
@ -360,7 +395,7 @@ msgstr ""
|
||||
msgid "Custom resume sections"
|
||||
msgstr "Rubrikat e personalizuara të CV-së"
|
||||
|
||||
#: apps/client/src/stores/resume.ts:47
|
||||
#: apps/client/src/stores/resume.ts:53
|
||||
msgid "Custom Section"
|
||||
msgstr "Rubrikë e personalizuar"
|
||||
|
||||
@ -386,10 +421,10 @@ msgstr "E errët"
|
||||
msgid "Date"
|
||||
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/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
|
||||
msgid "Date or Date Range"
|
||||
msgstr "Data ose intervali"
|
||||
@ -407,11 +442,15 @@ msgstr "Fshi"
|
||||
msgid "Delete Account"
|
||||
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/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/skills.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||
msgid "Description"
|
||||
msgstr "Përshkrimi"
|
||||
|
||||
@ -423,18 +462,18 @@ msgstr ""
|
||||
msgid "Disable"
|
||||
msgstr "Çaktivizo"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Çaktivizo vërtetimin me dy faktorë"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Braktis"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentacioni"
|
||||
|
||||
@ -442,7 +481,7 @@ msgstr "Dokumentacioni"
|
||||
msgid "Don't have an account?"
|
||||
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!"
|
||||
msgstr "Nuk dini ku të filloni? Shiko dokumentacionin!"
|
||||
|
||||
@ -450,7 +489,7 @@ msgstr "Nuk dini ku të filloni? Shiko dokumentacionin!"
|
||||
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>"
|
||||
|
||||
#: 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"
|
||||
msgstr "Dhuro në Reactive Resume"
|
||||
|
||||
@ -458,12 +497,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."
|
||||
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."
|
||||
msgstr "Shkarkoni CV-në tuaj si PDF. Ky skedar mund të përdoret për të printuar CV-në tuaj, për ta dërguar te rekrutuesit ose për ta ngarkuar në portalet e punës."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Shkarko PDF"
|
||||
|
||||
@ -487,7 +525,7 @@ msgstr "Dupliko një vlerë ekzistuese"
|
||||
msgid "Duplicate an existing resume"
|
||||
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"
|
||||
msgstr "Përpuno"
|
||||
|
||||
@ -498,12 +536,12 @@ msgstr "Efektet"
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:90
|
||||
#: apps/client/src/pages/auth/register/page.tsx:141
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181
|
||||
msgid "Email"
|
||||
msgstr "Email"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Aktivizo vërtetimin me dy faktorë"
|
||||
|
||||
@ -531,6 +569,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."
|
||||
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
|
||||
msgid "Errors"
|
||||
msgstr "Problemet"
|
||||
@ -539,11 +581,22 @@ msgstr "Problemet"
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:271
|
||||
msgid "Expand All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Expand section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "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 "Eksploroni shabllonet e disponueshme në Reactive Resume dhe shikoni CV-të e krijuara me to. Ato mund të ndihmojnë në krijimin e CV-së tuaj të ardhshme."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Exporto"
|
||||
@ -564,19 +617,19 @@ msgstr "Së fundi,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Rregulloni drejtshkrimin dhe gramatikën"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Madhësia e germave"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Varianti i germave"
|
||||
|
||||
@ -584,7 +637,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."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||
msgid "Forget"
|
||||
msgstr "Harro"
|
||||
|
||||
@ -601,7 +654,7 @@ msgstr "Keni harruar fjalëkalimin?"
|
||||
msgid "Format"
|
||||
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?"
|
||||
msgstr "Keni gjetur një gabim, apo keni një ide për një veçori të re?"
|
||||
|
||||
@ -609,12 +662,12 @@ msgstr "Keni gjetur një gabim, apo keni një ide për një veçori të re?"
|
||||
msgid "Free, forever"
|
||||
msgstr "Falas, përgjithmonë"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:121
|
||||
#: apps/client/src/components/ai-actions.tsx:124
|
||||
#: apps/client/src/components/ai-actions.tsx:125
|
||||
#: apps/client/src/components/ai-actions.tsx:128
|
||||
msgid "Friendly"
|
||||
msgstr "Miqësor"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:56
|
||||
msgid "Full Name"
|
||||
msgstr "Emri i plotë"
|
||||
|
||||
@ -643,6 +696,10 @@ msgstr "Jepini CV-së tuaj të vjetër një emër të ri."
|
||||
msgid "Go to Dashboard"
|
||||
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
|
||||
msgid "Google"
|
||||
msgstr "Google"
|
||||
@ -651,11 +708,11 @@ msgstr "Google"
|
||||
msgid "Grayscale"
|
||||
msgstr "Nuancat gri"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||
msgid "Grid"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:70
|
||||
msgid "Headline"
|
||||
msgstr "Titulli"
|
||||
|
||||
@ -668,7 +725,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."
|
||||
|
||||
#: 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
|
||||
msgid "Hidden"
|
||||
msgstr "E fshehur"
|
||||
@ -677,7 +734,7 @@ msgstr "E fshehur"
|
||||
msgid "Hide"
|
||||
msgstr "Fshih"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Fshih ikonat"
|
||||
|
||||
@ -734,7 +791,7 @@ msgstr "Përmirëso të shkruarit"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Në rast se nuk jeni në gjendje të skanoni këtë kod QR, mund ta kopjoni linkun nga aplikacioni authenticator dhe ta ngjisni atë këtu."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "Në këtë seksion, ju mund të ndryshoni fjalëkalimin tuaj dhe të aktivizoni/çaktivizoni vërtetimin me dy faktorë."
|
||||
|
||||
@ -743,7 +800,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>."
|
||||
|
||||
#: 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"
|
||||
msgstr "Informacion"
|
||||
|
||||
@ -802,10 +860,10 @@ msgstr "filan.fisteku@shembull.al"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||
msgid "Keywords"
|
||||
msgstr "Fjalët kyçe"
|
||||
|
||||
@ -824,7 +882,8 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Përditësuar së fundmi me {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx: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"
|
||||
msgstr ""
|
||||
|
||||
@ -837,7 +896,7 @@ msgid "Letter"
|
||||
msgstr ""
|
||||
|
||||
#: 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"
|
||||
msgstr "Niveli"
|
||||
|
||||
@ -853,7 +912,7 @@ msgstr "E çelët"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Pamje e çelët apo e errët"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Lartësia e rreshtit"
|
||||
|
||||
@ -862,14 +921,14 @@ msgstr "Lartësia e rreshtit"
|
||||
msgid "LinkedIn, JSON Resume, etc."
|
||||
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"
|
||||
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/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:120
|
||||
msgid "Location"
|
||||
msgstr "Vendndodhja"
|
||||
|
||||
@ -897,7 +956,7 @@ msgstr "Çkyçu"
|
||||
msgid "Lost your device?"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -914,7 +973,7 @@ msgstr "Mars 2023"
|
||||
|
||||
#: 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/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
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "Mars 2023 - tani"
|
||||
@ -923,7 +982,7 @@ msgstr "Mars 2023 - tani"
|
||||
msgid "Margin"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -931,18 +990,18 @@ msgstr ""
|
||||
msgid "MIT License"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: 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/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: 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/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/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/dashboard/settings/_sections/account.tsx:153
|
||||
msgid "Name"
|
||||
@ -957,7 +1016,7 @@ msgstr "Emri"
|
||||
msgid "Network"
|
||||
msgstr "Rrjeti"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Fjalëkalim i ri"
|
||||
|
||||
@ -974,6 +1033,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Kujdes: Kjo mund ta zvoglojë sigurinë e llogarisë tuaj."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Shënime"
|
||||
@ -1009,16 +1069,16 @@ msgstr "OpenAI nuk gjeti asnjë zgjedhje për tekstin tuaj."
|
||||
msgid "OpenAI Integration"
|
||||
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"
|
||||
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/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Mundësitë"
|
||||
|
||||
@ -1032,22 +1092,23 @@ msgid "Organization"
|
||||
msgstr "Organizata"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Faqja"
|
||||
|
||||
#: 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}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Fjalëkalimi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||
msgid "PDF"
|
||||
msgstr "PDF"
|
||||
|
||||
@ -1055,7 +1116,7 @@ msgstr "PDF"
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr "Shënime personale për çdo CV"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:108
|
||||
msgid "Phone"
|
||||
msgstr "Telefoni"
|
||||
|
||||
@ -1109,14 +1170,12 @@ msgstr "Mundësuar nga <0>Simple Icons</0>"
|
||||
msgid "Primary Color"
|
||||
msgstr "Ngjyra kryesore"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||
msgid "Privacy Policy"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
#: apps/client/src/components/ai-actions.tsx:113
|
||||
#: apps/client/src/components/ai-actions.tsx:116
|
||||
msgid "Professional"
|
||||
msgstr "Profesional"
|
||||
|
||||
@ -1132,7 +1191,7 @@ msgstr "Publik"
|
||||
msgid "Publisher"
|
||||
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"
|
||||
msgstr "Krijo një Issue në GitHub"
|
||||
|
||||
@ -1144,11 +1203,10 @@ msgstr "Krijo një Issue në GitHub"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1175,12 +1233,12 @@ msgstr ""
|
||||
msgid "Redo"
|
||||
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
|
||||
msgid "Remove"
|
||||
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"
|
||||
msgstr "Fshi faqen"
|
||||
|
||||
@ -1199,7 +1257,7 @@ msgstr "Ridërgo linun për konfirmimit të emailit"
|
||||
msgid "Reset"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1213,8 +1271,8 @@ msgid "Reset Zoom"
|
||||
msgstr "Kthe madhësinë si në fillim"
|
||||
|
||||
#: 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:37
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||
msgid "Resumes"
|
||||
msgstr "CV-të"
|
||||
|
||||
@ -1237,11 +1295,11 @@ msgstr "E rrumbullakësuar"
|
||||
msgid "Save Changes"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||
msgid "Saved"
|
||||
msgstr ""
|
||||
|
||||
@ -1262,15 +1320,15 @@ msgstr ""
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Kërkoni një familje të shkronjave"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Kërkoni një nëngrup shkronjash"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Kërkoni një variant të shkronjave"
|
||||
|
||||
@ -1282,7 +1340,7 @@ msgstr "Kërkoni një gjuhë"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Sigurohuni duke përdorur vërtetim me dy faktorë"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Siguria"
|
||||
|
||||
@ -1294,7 +1352,7 @@ msgstr ""
|
||||
msgid "Send Email"
|
||||
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"
|
||||
msgstr "Më dërgo një mesazh"
|
||||
|
||||
@ -1314,6 +1372,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Konfiguro vërtetimin me dy faktorë në llogarinë tuaj"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Shpërndarja"
|
||||
@ -1330,7 +1389,7 @@ msgstr "Shfaq fundin e faqes"
|
||||
msgid "Show Page Numbers"
|
||||
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"
|
||||
msgstr "Shiriti anësor"
|
||||
|
||||
@ -1408,6 +1467,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Filloni të ndërtoni CV-në tuaj duke i dhënë një emër."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Statistikat"
|
||||
@ -1422,17 +1482,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/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/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/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "Summary"
|
||||
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!"
|
||||
msgstr "Mbështetni aplikacionin duke dhuruar atë që mundeni!"
|
||||
|
||||
@ -1444,11 +1504,20 @@ msgstr "Mbështet Reactive Resume"
|
||||
msgid "Supports A4/Letter page formats"
|
||||
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
|
||||
msgid "System"
|
||||
msgstr "Sistemi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Shabllon"
|
||||
@ -1465,15 +1534,20 @@ msgstr "Dëshmitë"
|
||||
msgid "Text Color"
|
||||
msgstr "Ngjyra e tekstit"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "Fjalëkalimet nuk përputhen."
|
||||
#: apps/client/src/pages/public/error.tsx:17
|
||||
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 ""
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "CV që dëshironi të përditësoni është e kyçur, ju lutemi çkyçeni nëse dëshironi para se ta ndryshoni."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1604,7 @@ msgstr "Gjurmo shikimet dhe shkarkimet"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Vërtetimi me dy faktorë"
|
||||
|
||||
@ -1552,11 +1626,12 @@ msgid "Type of Study"
|
||||
msgstr "Lloji i studimit"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Tipografia"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Nënvizoni linket"
|
||||
|
||||
@ -1599,6 +1674,14 @@ msgstr "Linku"
|
||||
msgid "URL must start with 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:57
|
||||
msgid "Use your backup code"
|
||||
@ -1651,7 +1734,7 @@ msgstr "Versioni 4"
|
||||
msgid "Views"
|
||||
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"
|
||||
msgstr "E dukshme"
|
||||
|
||||
@ -1665,15 +1748,15 @@ 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/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/experience.tsx:100
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:96
|
||||
msgid "Website"
|
||||
msgstr "Faqja e internetit"
|
||||
|
||||
@ -1681,10 +1764,14 @@ msgstr "Faqja e internetit"
|
||||
msgid "What's new in the latest version"
|
||||
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/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
||||
#: apps/client/src/pages/public/error.tsx:26
|
||||
msgid "You are not authorized to access this page."
|
||||
msgstr ""
|
||||
|
||||
#: 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."
|
||||
msgstr "Mund të shtoni fjalë kyçe duke i ndarë me presje ose duke shtypur enter."
|
||||
|
||||
@ -1692,19 +1779,27 @@ msgstr "Mund të shtoni fjalë kyçe duke i ndarë me presje ose duke shtypur en
|
||||
msgid "You can also enter your username."
|
||||
msgstr "Ju gjithashtu mund të jepni emrin tuaj të përdoruesit."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||
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."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||
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 ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
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."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||
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 ""
|
||||
|
||||
#: 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."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
@ -1721,7 +1816,7 @@ msgstr "Keni mesazhe të palexuara!"
|
||||
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."
|
||||
|
||||
#: 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."
|
||||
msgstr ""
|
||||
|
||||
@ -1733,7 +1828,7 @@ msgstr "Adresa juaj e emailit është verifikuar me sukses."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Çelësi juaj OpenAI API nuk është konfiguruar ende. Ju lutem shkoni te parametrat e llogarisë tuaj për të aktivizuar integrimin me OpenAI."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Fjalëkalimi juaj u përditësua."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: sr\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-11-04 14:22\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Serbian (Cyrillic)\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
@ -30,27 +30,27 @@ msgstr ""
|
||||
msgid "{value, plural, one {Column} other {Columns}}"
|
||||
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>"
|
||||
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>"
|
||||
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."
|
||||
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>"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr ""
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr ""
|
||||
msgid "Add a custom field"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:203
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr ""
|
||||
@ -112,12 +112,12 @@ msgstr ""
|
||||
msgid "Add a new item"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:267
|
||||
msgid "Add a new section"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -133,6 +133,14 @@ msgstr ""
|
||||
msgid "An error occurred while validating the file."
|
||||
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
|
||||
msgid "and many more..."
|
||||
msgstr ""
|
||||
@ -191,6 +199,18 @@ msgstr ""
|
||||
msgid "Awarder"
|
||||
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/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
@ -209,16 +229,16 @@ msgstr ""
|
||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||
msgid "Base URL"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:58
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
msgid "Basics"
|
||||
msgstr ""
|
||||
|
||||
@ -246,8 +266,8 @@ msgstr "Од заједнице, за заједницу."
|
||||
msgid "Cancel"
|
||||
msgstr "Откажи"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
#: apps/client/src/components/ai-actions.tsx:107
|
||||
#: apps/client/src/components/ai-actions.tsx:110
|
||||
msgid "Casual"
|
||||
msgstr ""
|
||||
|
||||
@ -255,12 +275,16 @@ msgstr ""
|
||||
msgid "Center Artboard"
|
||||
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/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
#: apps/client/src/components/ai-actions.tsx:101
|
||||
msgid "Change Tone"
|
||||
msgstr ""
|
||||
|
||||
@ -288,6 +312,16 @@ msgstr ""
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:272
|
||||
msgid "Collapse All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Collapse section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
@ -296,21 +330,17 @@ msgstr ""
|
||||
msgid "Company"
|
||||
msgstr "Компанија"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
#: apps/client/src/components/ai-actions.tsx:119
|
||||
#: apps/client/src/components/ai-actions.tsx:122
|
||||
msgid "Confident"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -351,7 +381,12 @@ msgstr "Направи један сада"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Направи пример резимеа"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
@ -360,7 +395,7 @@ msgstr ""
|
||||
msgid "Custom resume sections"
|
||||
msgstr "Прилагођени одељци резимеа"
|
||||
|
||||
#: apps/client/src/stores/resume.ts:47
|
||||
#: apps/client/src/stores/resume.ts:53
|
||||
msgid "Custom Section"
|
||||
msgstr ""
|
||||
|
||||
@ -386,10 +421,10 @@ msgstr "Тамна"
|
||||
msgid "Date"
|
||||
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/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
|
||||
msgid "Date or Date Range"
|
||||
msgstr "Датум или опсег датума"
|
||||
@ -407,11 +442,15 @@ msgstr "Обриши"
|
||||
msgid "Delete Account"
|
||||
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/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/skills.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||
msgid "Description"
|
||||
msgstr "Опис"
|
||||
|
||||
@ -423,18 +462,18 @@ msgstr "Дизајнирајте једностране/вишестране р
|
||||
msgid "Disable"
|
||||
msgstr "Онемогући"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Онемогући двофакторску аутентификацију"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Одбаци"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr "Документација"
|
||||
|
||||
@ -442,7 +481,7 @@ msgstr "Документација"
|
||||
msgid "Don't have an account?"
|
||||
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!"
|
||||
msgstr "Не знате одакле да почнете? Погледајте документацију!"
|
||||
|
||||
@ -450,7 +489,7 @@ msgstr "Не знате одакле да почнете? Погледајте
|
||||
msgid "Don't see your language? <0>Help translate the app.</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"
|
||||
msgstr "Донирајте Реактивном Резимеу"
|
||||
|
||||
@ -458,12 +497,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."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Преузми PDF"
|
||||
|
||||
@ -487,7 +525,7 @@ msgstr "Дуплирај постојећу ставку"
|
||||
msgid "Duplicate an existing resume"
|
||||
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"
|
||||
msgstr "Измени"
|
||||
|
||||
@ -498,12 +536,12 @@ msgstr "Ефекти"
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:90
|
||||
#: apps/client/src/pages/auth/register/page.tsx:141
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr ""
|
||||
|
||||
@ -531,6 +569,10 @@ msgstr ""
|
||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/public/error.tsx:46
|
||||
msgid "Error {statusCode}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||
msgid "Errors"
|
||||
msgstr ""
|
||||
@ -539,11 +581,22 @@ msgstr ""
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:271
|
||||
msgid "Expand All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Expand section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "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 ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
@ -564,19 +617,19 @@ msgstr ""
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr ""
|
||||
|
||||
@ -584,7 +637,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."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||
msgid "Forget"
|
||||
msgstr ""
|
||||
|
||||
@ -601,7 +654,7 @@ msgstr ""
|
||||
msgid "Format"
|
||||
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?"
|
||||
msgstr ""
|
||||
|
||||
@ -609,12 +662,12 @@ msgstr ""
|
||||
msgid "Free, forever"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:121
|
||||
#: apps/client/src/components/ai-actions.tsx:124
|
||||
#: apps/client/src/components/ai-actions.tsx:125
|
||||
#: apps/client/src/components/ai-actions.tsx:128
|
||||
msgid "Friendly"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:56
|
||||
msgid "Full Name"
|
||||
msgstr ""
|
||||
|
||||
@ -643,6 +696,10 @@ msgstr "Дајте свом старом резимеу ново име."
|
||||
msgid "Go to Dashboard"
|
||||
msgstr "Иди на контролну таблу"
|
||||
|
||||
#: apps/client/src/pages/public/error.tsx:55
|
||||
msgid "Go to home"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||
msgid "Google"
|
||||
msgstr "Google"
|
||||
@ -651,11 +708,11 @@ msgstr "Google"
|
||||
msgid "Grayscale"
|
||||
msgstr "Сиви тонови"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||
msgid "Grid"
|
||||
msgstr "Мрежа"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:70
|
||||
msgid "Headline"
|
||||
msgstr "Наслов"
|
||||
|
||||
@ -668,7 +725,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr "Овде можете ажурирати свој профил да бисте прилагодили и персонализовали своје корисничко искуство."
|
||||
|
||||
#: 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
|
||||
msgid "Hidden"
|
||||
msgstr "Сакривено"
|
||||
@ -677,7 +734,7 @@ msgstr "Сакривено"
|
||||
msgid "Hide"
|
||||
msgstr "Сакриј"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Сакриј иконе"
|
||||
|
||||
@ -734,7 +791,7 @@ msgstr "Побољшајте писање"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Уколико нисте у могућности да скенирате овај QR код, такође можете ископирати-налепити овај линк у своју апликацију за аутентификацију."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "У овом одељку можете променити своју лозинку и омогућити/онемогућити двофакторску аутентикацију."
|
||||
|
||||
@ -743,7 +800,8 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx: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"
|
||||
msgstr ""
|
||||
|
||||
@ -802,10 +860,10 @@ msgstr ""
|
||||
msgid "JSON"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
@ -824,7 +882,8 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx: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"
|
||||
msgstr ""
|
||||
|
||||
@ -837,7 +896,7 @@ msgid "Letter"
|
||||
msgstr ""
|
||||
|
||||
#: 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"
|
||||
msgstr "Ниво"
|
||||
|
||||
@ -853,7 +912,7 @@ msgstr ""
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Светла или тамна тема"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr ""
|
||||
|
||||
@ -862,14 +921,14 @@ msgstr ""
|
||||
msgid "LinkedIn, JSON Resume, etc."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||
msgid "List"
|
||||
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/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:120
|
||||
msgid "Location"
|
||||
msgstr ""
|
||||
|
||||
@ -897,7 +956,7 @@ msgstr ""
|
||||
msgid "Lost your device?"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -914,7 +973,7 @@ msgstr ""
|
||||
|
||||
#: 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/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
|
||||
msgid "March 2023 - Present"
|
||||
msgstr ""
|
||||
@ -923,7 +982,7 @@ msgstr ""
|
||||
msgid "Margin"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||
msgid "Max Tokens"
|
||||
msgstr ""
|
||||
|
||||
@ -931,18 +990,18 @@ msgstr ""
|
||||
msgid "MIT License"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#: 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/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: 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/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/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/dashboard/settings/_sections/account.tsx:153
|
||||
msgid "Name"
|
||||
@ -957,7 +1016,7 @@ msgstr ""
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
@ -974,6 +1033,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
@ -1009,16 +1069,16 @@ msgstr ""
|
||||
msgid "OpenAI Integration"
|
||||
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"
|
||||
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/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Опције"
|
||||
|
||||
@ -1032,22 +1092,23 @@ msgid "Organization"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
#: 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}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||
msgid "PDF"
|
||||
msgstr ""
|
||||
|
||||
@ -1055,7 +1116,7 @@ msgstr ""
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:108
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
@ -1109,14 +1170,12 @@ msgstr ""
|
||||
msgid "Primary Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||
msgid "Privacy Policy"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
#: apps/client/src/components/ai-actions.tsx:113
|
||||
#: apps/client/src/components/ai-actions.tsx:116
|
||||
msgid "Professional"
|
||||
msgstr ""
|
||||
|
||||
@ -1132,7 +1191,7 @@ msgstr ""
|
||||
msgid "Publisher"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1144,11 +1203,10 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1175,12 +1233,12 @@ msgstr ""
|
||||
msgid "Redo"
|
||||
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
|
||||
msgid "Remove"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1199,7 +1257,7 @@ msgstr ""
|
||||
msgid "Reset"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1213,8 +1271,8 @@ msgid "Reset Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: 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:37
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||
msgid "Resumes"
|
||||
msgstr ""
|
||||
|
||||
@ -1237,11 +1295,11 @@ msgstr ""
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||
msgid "Save Locally"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||
msgid "Saved"
|
||||
msgstr ""
|
||||
|
||||
@ -1262,15 +1320,15 @@ msgstr ""
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
@ -1282,7 +1340,7 @@ msgstr ""
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
@ -1294,7 +1352,7 @@ msgstr ""
|
||||
msgid "Send Email"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1314,6 +1372,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr ""
|
||||
@ -1330,7 +1389,7 @@ msgstr ""
|
||||
msgid "Show Page Numbers"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1408,6 +1467,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr ""
|
||||
@ -1422,17 +1482,17 @@ msgstr ""
|
||||
|
||||
#: 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/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/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/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "Summary"
|
||||
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!"
|
||||
msgstr ""
|
||||
|
||||
@ -1444,11 +1504,20 @@ msgstr ""
|
||||
msgid "Supports A4/Letter page formats"
|
||||
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
|
||||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
@ -1465,8 +1534,12 @@ msgstr ""
|
||||
msgid "Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
#: apps/client/src/pages/public/error.tsx:17
|
||||
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 ""
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
@ -1474,6 +1547,7 @@ msgid "The resume you want to update is locked, please unlock if you wish to mak
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1604,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
@ -1552,11 +1626,12 @@ msgid "Type of Study"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr ""
|
||||
|
||||
@ -1599,6 +1674,14 @@ msgstr ""
|
||||
msgid "URL must start with https://"
|
||||
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:57
|
||||
msgid "Use your backup code"
|
||||
@ -1651,7 +1734,7 @@ msgstr ""
|
||||
msgid "Views"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1665,15 +1748,15 @@ msgstr ""
|
||||
|
||||
#: 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/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/experience.tsx:100
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:96
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
@ -1681,10 +1764,14 @@ msgstr ""
|
||||
msgid "What's new in the latest version"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
||||
#: apps/client/src/pages/public/error.tsx:26
|
||||
msgid "You are not authorized to access this page."
|
||||
msgstr ""
|
||||
|
||||
#: 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."
|
||||
msgstr ""
|
||||
|
||||
@ -1692,19 +1779,27 @@ msgstr ""
|
||||
msgid "You can also enter your username."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||
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."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||
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 ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||
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 ""
|
||||
|
||||
#: 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."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
@ -1721,7 +1816,7 @@ msgstr ""
|
||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
@ -1733,7 +1828,7 @@ msgstr ""
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: sv\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-11-04 14:22\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Swedish\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}}"
|
||||
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>"
|
||||
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>"
|
||||
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."
|
||||
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>"
|
||||
msgstr "<0>Gemenskapen har lagt ner mycket tid på att skriva dokumentationen för Reactive Resume, och jag är säker på att det kommer att hjälpa dig att komma igång med appen.</0> <1>Det finns också många exempel som hjälper dig att komma igång, och funktioner som du kanske inte känner till som kan hjälpa dig att bygga ditt perfekta CV.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>Tvåfaktorsautentisering är för närvarande inaktiverad.</0> Du kan aktivera det genom att lägga till en autentiseringsapp till ditt konto."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>Tvåfaktorsautentisering är aktiverad.</0> Du kommer att bli ombedd att ange en kod varje gång du loggar in."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Konto"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Lägga till ett anpassat fält"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:203
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Lägg till ett nytt objekt"
|
||||
@ -112,12 +112,12 @@ msgstr "Lägg till ett nytt objekt"
|
||||
msgid "Add a new item"
|
||||
msgstr "Lägg till ett nytt objekt"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:267
|
||||
msgid "Add a new section"
|
||||
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"
|
||||
msgstr "Lägg till ny sida"
|
||||
|
||||
@ -133,6 +133,14 @@ msgstr "Har du redan ett konto?"
|
||||
msgid "An error occurred while validating the file."
|
||||
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
|
||||
msgid "and many more..."
|
||||
msgstr "och många fler..."
|
||||
@ -191,6 +199,18 @@ msgstr "Tillgänglig på {languagesCount} språk"
|
||||
msgid "Awarder"
|
||||
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/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
@ -209,16 +229,16 @@ msgstr "Reservkod"
|
||||
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."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||
msgid "Base URL"
|
||||
msgstr "Bas-URL"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:58
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr "Grunderna"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
msgid "Basics"
|
||||
msgstr "Grunderna"
|
||||
|
||||
@ -246,8 +266,8 @@ msgstr "Av gemenskapen, för gemenskapen."
|
||||
msgid "Cancel"
|
||||
msgstr "Avbryt"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
#: apps/client/src/components/ai-actions.tsx:107
|
||||
#: apps/client/src/components/ai-actions.tsx:110
|
||||
msgid "Casual"
|
||||
msgstr "Tillfällig"
|
||||
|
||||
@ -255,12 +275,16 @@ msgstr "Tillfällig"
|
||||
msgid "Center Artboard"
|
||||
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/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Ändra lösenord"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
#: apps/client/src/components/ai-actions.tsx:101
|
||||
msgid "Change Tone"
|
||||
msgstr "Ändra ton"
|
||||
|
||||
@ -288,6 +312,16 @@ msgstr "Kod"
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr "Koden måste vara exakt 6 siffror lång."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:272
|
||||
msgid "Collapse All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Collapse section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136
|
||||
msgid "Columns"
|
||||
msgstr "Kolumner"
|
||||
@ -296,21 +330,17 @@ msgstr "Kolumner"
|
||||
msgid "Company"
|
||||
msgstr "Företag"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
#: apps/client/src/components/ai-actions.tsx:119
|
||||
#: apps/client/src/components/ai-actions.tsx:122
|
||||
msgid "Confident"
|
||||
msgstr "Självsäker"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Bekräfta nytt lösenord"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
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"
|
||||
msgstr "Kopiera"
|
||||
|
||||
@ -351,7 +381,12 @@ msgstr "Skapa ett nu"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Skapa ett exempel på CV"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr "Befintligt Lösenord"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "Anpassad CSS"
|
||||
@ -360,7 +395,7 @@ msgstr "Anpassad CSS"
|
||||
msgid "Custom resume sections"
|
||||
msgstr "Anpassade CV-avsnitt"
|
||||
|
||||
#: apps/client/src/stores/resume.ts:47
|
||||
#: apps/client/src/stores/resume.ts:53
|
||||
msgid "Custom Section"
|
||||
msgstr "Anpassat avsnitt"
|
||||
|
||||
@ -386,10 +421,10 @@ msgstr "Mörk"
|
||||
msgid "Date"
|
||||
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/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
|
||||
msgid "Date or Date Range"
|
||||
msgstr "Datum eller datumintervall"
|
||||
@ -407,11 +442,15 @@ msgstr "Radera"
|
||||
msgid "Delete Account"
|
||||
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/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/skills.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||
msgid "Description"
|
||||
msgstr "Beskrivning"
|
||||
|
||||
@ -423,18 +462,18 @@ msgstr "Designa CV:n på en eller flera sidor"
|
||||
msgid "Disable"
|
||||
msgstr "Inaktivera"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Inaktivera 2FA"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Kasta"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentation"
|
||||
|
||||
@ -442,7 +481,7 @@ msgstr "Dokumentation"
|
||||
msgid "Don't have an account?"
|
||||
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!"
|
||||
msgstr "Vet du inte var du ska börja? Besök dokumentationen!"
|
||||
|
||||
@ -450,7 +489,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>"
|
||||
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"
|
||||
msgstr "Donera till Reactive Resume"
|
||||
|
||||
@ -458,12 +497,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."
|
||||
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."
|
||||
msgstr "Ladda ner en PDF av ditt CV. Den här filen kan användas för att skriva ut ditt CV, skicka det till rekryterare eller ladda upp på jobbportaler."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Ladda ner PDF"
|
||||
|
||||
@ -487,7 +525,7 @@ msgstr "Duplicera ett befintligt objekt"
|
||||
msgid "Duplicate an existing resume"
|
||||
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"
|
||||
msgstr "Redigera"
|
||||
|
||||
@ -498,12 +536,12 @@ msgstr "Effekter"
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:90
|
||||
#: apps/client/src/pages/auth/register/page.tsx:141
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181
|
||||
msgid "Email"
|
||||
msgstr "E-post"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Aktivera 2FA"
|
||||
|
||||
@ -531,6 +569,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."
|
||||
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
|
||||
msgid "Errors"
|
||||
msgstr "Fel"
|
||||
@ -539,11 +581,22 @@ msgstr "Fel"
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr "Även om du inte har möjlighet att bidra ekonomiskt kan du fortfarande göra skillnad genom att ge GitHub-förvaret en stjärna, sprida budskapet till dina vänner eller skicka ett snabbt meddelande för att låta mig veta hur Reactive Resume har hjälpt dig. Din feedback och stöd är alltid välkomna och mycket uppskattade!"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:271
|
||||
msgid "Expand All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Expand section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "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 "Utforska mallarna som är tillgängliga i Reactive Resume och se de CV som skapats med dem. De kan också fungera som exempel för att hjälpa dig att skapa ditt nästa CV."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Exportera"
|
||||
@ -564,19 +617,19 @@ msgstr "Äntligen,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Fixa stavning och grammatik"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Typsnittsfamilj"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Textstorlek"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Typsnittsundergrupp"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Typsnittsvarianter"
|
||||
|
||||
@ -584,7 +637,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."
|
||||
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"
|
||||
msgstr "Glöm"
|
||||
|
||||
@ -601,7 +654,7 @@ msgstr "Glömt ditt lösenord?"
|
||||
msgid "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?"
|
||||
msgstr "Hittade du en bugg eller har du en idé om en ny funktion?"
|
||||
|
||||
@ -609,12 +662,12 @@ msgstr "Hittade du en bugg eller har du en idé om en ny funktion?"
|
||||
msgid "Free, forever"
|
||||
msgstr "Gratis, för alltid"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:121
|
||||
#: apps/client/src/components/ai-actions.tsx:124
|
||||
#: apps/client/src/components/ai-actions.tsx:125
|
||||
#: apps/client/src/components/ai-actions.tsx:128
|
||||
msgid "Friendly"
|
||||
msgstr "Vänlig"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:56
|
||||
msgid "Full Name"
|
||||
msgstr "Fullständigt namn"
|
||||
|
||||
@ -643,6 +696,10 @@ msgstr "Ge ditt gamla CV ett nytt namn."
|
||||
msgid "Go to 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
|
||||
msgid "Google"
|
||||
msgstr "Google"
|
||||
@ -651,11 +708,11 @@ msgstr "Google"
|
||||
msgid "Grayscale"
|
||||
msgstr "Gråskala"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||
msgid "Grid"
|
||||
msgstr "Rutnät"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:70
|
||||
msgid "Headline"
|
||||
msgstr "Rubrik"
|
||||
|
||||
@ -668,7 +725,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."
|
||||
|
||||
#: 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
|
||||
msgid "Hidden"
|
||||
msgstr "Dolt"
|
||||
@ -677,7 +734,7 @@ msgstr "Dolt"
|
||||
msgid "Hide"
|
||||
msgstr "Dölj"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Dölj ikoner"
|
||||
|
||||
@ -734,7 +791,7 @@ msgstr "Förbättra skrivandet"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Om du inte kan skanna den här QR-koden kan du också kopiera och klistra in den här länken i din autentiseringsapp."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "I det här avsnittet kan du ändra ditt lösenord och aktivera/inaktivera tvåfaktorsautentisering."
|
||||
|
||||
@ -743,7 +800,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>."
|
||||
|
||||
#: 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"
|
||||
msgstr "Information"
|
||||
|
||||
@ -802,10 +860,10 @@ msgstr "sven.svensson@example.com"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||
msgid "Keywords"
|
||||
msgstr "Nyckelord"
|
||||
|
||||
@ -824,7 +882,8 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Senast uppdaterad {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx: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"
|
||||
msgstr "Layout"
|
||||
|
||||
@ -837,7 +896,7 @@ msgid "Letter"
|
||||
msgstr "Brev"
|
||||
|
||||
#: 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"
|
||||
msgstr "Nivå"
|
||||
|
||||
@ -853,7 +912,7 @@ msgstr "Ljus"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Ljust eller mörkt tema"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Radavstånd"
|
||||
|
||||
@ -862,14 +921,14 @@ msgstr "Radavstånd"
|
||||
msgid "LinkedIn, JSON Resume, etc."
|
||||
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"
|
||||
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/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:120
|
||||
msgid "Location"
|
||||
msgstr "Plats"
|
||||
|
||||
@ -897,7 +956,7 @@ msgstr "Logga ut"
|
||||
msgid "Lost your device?"
|
||||
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"
|
||||
msgstr "Huvud"
|
||||
|
||||
@ -914,7 +973,7 @@ msgstr "mars 2023"
|
||||
|
||||
#: 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/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
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "mars 2023 - nutid"
|
||||
@ -923,7 +982,7 @@ msgstr "mars 2023 - nutid"
|
||||
msgid "Margin"
|
||||
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"
|
||||
msgstr "Högsta antal tokens"
|
||||
|
||||
@ -931,18 +990,18 @@ msgstr "Högsta antal tokens"
|
||||
msgid "MIT License"
|
||||
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"
|
||||
msgstr "Modell"
|
||||
|
||||
#: 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/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: 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/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/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/dashboard/settings/_sections/account.tsx:153
|
||||
msgid "Name"
|
||||
@ -957,7 +1016,7 @@ msgstr "Namn"
|
||||
msgid "Network"
|
||||
msgstr "Nätverk"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Nytt lösenord"
|
||||
|
||||
@ -974,6 +1033,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Obs! Detta kommer att göra ditt konto mindre säkert."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Anteckningar"
|
||||
@ -1009,16 +1069,16 @@ msgstr "OpenAI returnerade inga val för din text."
|
||||
msgid "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"
|
||||
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/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Inställningar"
|
||||
|
||||
@ -1032,22 +1092,23 @@ msgid "Organization"
|
||||
msgstr "Organisation"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Sida"
|
||||
|
||||
#: 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}"
|
||||
msgstr "Sidan {pageNumber}"
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Lösenord"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||
msgid "PDF"
|
||||
msgstr "PDF"
|
||||
|
||||
@ -1055,7 +1116,7 @@ msgstr "PDF"
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr "Personliga anteckningar för varje CV"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:108
|
||||
msgid "Phone"
|
||||
msgstr "Telefon"
|
||||
|
||||
@ -1109,14 +1170,12 @@ msgstr "Drivs av <0>Simple Icons</0>"
|
||||
msgid "Primary Color"
|
||||
msgstr "Primärfärg"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Integritetspolicy"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
#: apps/client/src/components/ai-actions.tsx:113
|
||||
#: apps/client/src/components/ai-actions.tsx:116
|
||||
msgid "Professional"
|
||||
msgstr "Professionell"
|
||||
|
||||
@ -1132,7 +1191,7 @@ msgstr "Offentlig"
|
||||
msgid "Publisher"
|
||||
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"
|
||||
msgstr "Lyfta en fråga"
|
||||
|
||||
@ -1144,11 +1203,10 @@ msgstr "Lyfta en fråga"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1175,12 +1233,12 @@ msgstr "Reactive Resume trivs tack vare sin livfulla gemenskap. Projektet har m
|
||||
msgid "Redo"
|
||||
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
|
||||
msgid "Remove"
|
||||
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"
|
||||
msgstr "Ta bort sida"
|
||||
|
||||
@ -1199,7 +1257,7 @@ msgstr "Skicka e-postbekräftelselänk igen"
|
||||
msgid "Reset"
|
||||
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"
|
||||
msgstr "Återställ layout"
|
||||
|
||||
@ -1213,8 +1271,8 @@ msgid "Reset Zoom"
|
||||
msgstr "Återställ zoom"
|
||||
|
||||
#: 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:37
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||
msgid "Resumes"
|
||||
msgstr "CV"
|
||||
|
||||
@ -1237,11 +1295,11 @@ msgstr "Avrundad"
|
||||
msgid "Save Changes"
|
||||
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"
|
||||
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"
|
||||
msgstr "Sparad"
|
||||
|
||||
@ -1262,15 +1320,15 @@ msgstr "Bläddra till Pan"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Bläddra till Zoom"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Sök efter en typsnittsfamilj"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Sök efter en typsnittsundergrupp"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Sök efter en typsnittsvariant"
|
||||
|
||||
@ -1282,7 +1340,7 @@ msgstr "Sök efter ett språk"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Säker med tvåfaktorsautentisering"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Säkerhet"
|
||||
|
||||
@ -1294,7 +1352,7 @@ msgstr "Självvärd med Docker"
|
||||
msgid "Send Email"
|
||||
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"
|
||||
msgstr "Skicka ett meddelande till mig"
|
||||
|
||||
@ -1314,6 +1372,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Ställ in tvåfaktorsautentisering på ditt konto"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Delning"
|
||||
@ -1330,7 +1389,7 @@ msgstr "Visa radbrytning"
|
||||
msgid "Show Page Numbers"
|
||||
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"
|
||||
msgstr "Sidofält"
|
||||
|
||||
@ -1408,6 +1467,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Börja bygga ditt CV genom att ge det ett namn."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Statistik"
|
||||
@ -1422,17 +1482,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/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/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/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "Summary"
|
||||
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!"
|
||||
msgstr "Stöd appen genom att donera vad du kan!"
|
||||
|
||||
@ -1444,11 +1504,20 @@ msgstr "Stödjer Reactive Resume"
|
||||
msgid "Supports A4/Letter page formats"
|
||||
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
|
||||
msgid "System"
|
||||
msgstr "System"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Mall"
|
||||
@ -1465,15 +1534,20 @@ msgstr "Vittnesmål"
|
||||
msgid "Text Color"
|
||||
msgstr "Textfärg"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "Lösenorden du angav stämmer inte överens."
|
||||
#: apps/client/src/pages/public/error.tsx:17
|
||||
msgid "The page you're looking for doesn't exist."
|
||||
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
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "CV:t du vill uppdatera är låst, lås upp om du vill göra några ändringar i det."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1604,7 @@ msgstr "Spåra visningar och nedladdningar"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Tvåfaktorsautentisering"
|
||||
|
||||
@ -1552,11 +1626,12 @@ msgid "Type of Study"
|
||||
msgstr "Typ av studie"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Typografi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Understryk länkar"
|
||||
|
||||
@ -1599,6 +1674,14 @@ msgstr "URL"
|
||||
msgid "URL must start with 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:57
|
||||
msgid "Use your backup code"
|
||||
@ -1651,7 +1734,7 @@ msgstr "Version 4"
|
||||
msgid "Views"
|
||||
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"
|
||||
msgstr "Synlig"
|
||||
|
||||
@ -1665,15 +1748,15 @@ 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/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/experience.tsx:100
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:96
|
||||
msgid "Website"
|
||||
msgstr "Webbplats"
|
||||
|
||||
@ -1681,10 +1764,14 @@ msgstr "Webbplats"
|
||||
msgid "What's new in the latest version"
|
||||
msgstr "Vad är nytt i den senaste versionen"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
||||
#: apps/client/src/pages/public/error.tsx:26
|
||||
msgid "You are not authorized to access this page."
|
||||
msgstr "Du saknar behörighet att komma åt den här sidan."
|
||||
|
||||
#: 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."
|
||||
msgstr "Du kan lägga till flera nyckelord genom att separera dem med ett kommatecken eller trycka på enter."
|
||||
|
||||
@ -1692,19 +1779,27 @@ msgstr "Du kan lägga till flera nyckelord genom att separera dem med ett kommat
|
||||
msgid "You can also enter your username."
|
||||
msgstr "Du kan också ange ditt användarnamn."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||
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."
|
||||
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."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||
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 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
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
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."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||
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 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
|
||||
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."
|
||||
|
||||
#: 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."
|
||||
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 +1816,7 @@ msgstr "Du har fått mail!"
|
||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||
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."
|
||||
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 +1828,7 @@ msgstr "Din e-postadress har verifierats."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Din OpenAI API-nyckel har inte ställts in ännu. Gå till dina kontoinställningar för att aktivera OpenAI-integration."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Ditt lösenord har uppdaterats."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: th\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-11-04 14:22\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Thai\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
@ -20,7 +20,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:171
|
||||
msgid "You have enabled two-factor authentication successfully."
|
||||
msgstr "เปิดใช้งานการยืนยันตัวตนแบบสองปัจจัย (2FA) สำเร็จ"
|
||||
msgstr "เปิดใช้งานการยืนยันตัวตนแบบสองปัจจัยสำเร็จ"
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:57
|
||||
msgid "{templatesCount} resume templates to choose from"
|
||||
@ -30,27 +30,27 @@ msgstr "มีเทมเพลตเรซูเม่ {templatesCount} แบ
|
||||
msgid "{value, plural, one {Column} other {Columns}}"
|
||||
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>"
|
||||
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>"
|
||||
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."
|
||||
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>"
|
||||
msgstr "<0>ชุมชนของเราใช้เวลามากในการเขียนคู่มือใช้งาน Reactive Resume ขึ้นมา และผมมั่นใจว่าคู่มือจะช่วยให้คุณเริ่มใช้งานแอปได้สะดวกขึ้น</0><1>นอกจากนี้ ยังมีตัวอย่างอีกเยอะมากเพื่อให้คุณเริ่มใช้งานเป็น และฟีเจอร์ที่คุณอาจไม่รู้มาก่อน ซึ่งจะช่วยทำให้คุณสร้างเรซูเม่ที่สมบูรณ์แบบออกมาได้</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>การยืนยันตัวตนแบบสองขั้นตอนยังไม่ได้เปิดใช้งาน</0> คุณสามารถเปิดใช้งานได้โดยการเพิ่มแอปยืนยันตัวตนลงในบัญชีของคุณ"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>การยืนยันตัวตนแบบสองขั้นตอนเปิดใช้งานแล้ว</0> คุณจะถูกขอให้กรอกรหัสทุกครั้งที่คุณเข้าสู่ระบบ"
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "บัญชี"
|
||||
msgid "Add a custom field"
|
||||
msgstr "เพิ่มช่องข้อมูลที่กำหนดเอง"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:203
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "เพิ่มรายการใหม่"
|
||||
@ -112,12 +112,12 @@ msgstr "เพิ่มรายการใหม่"
|
||||
msgid "Add a new item"
|
||||
msgstr "เพิ่มรายการใหม่"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:267
|
||||
msgid "Add a new section"
|
||||
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"
|
||||
msgstr "เพิ่มหน้าใหม่"
|
||||
|
||||
@ -133,6 +133,14 @@ msgstr "มีบัญชีแล้วใช่หรือไม่?"
|
||||
msgid "An error occurred while validating the file."
|
||||
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
|
||||
msgid "and many more..."
|
||||
msgstr "และอีกมากมายๆ..."
|
||||
@ -148,7 +156,7 @@ msgstr "ทุกคนที่มีลิงค์นี้สามารถ
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:41
|
||||
msgid "Apply Custom CSS"
|
||||
msgstr ""
|
||||
msgstr "ใช้งาน CSS ที่กำหนดเอง"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
@ -191,6 +199,18 @@ msgstr "มีให้บริการใน {languagesCount} ภาษา"
|
||||
msgid "Awarder"
|
||||
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/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
@ -209,16 +229,16 @@ msgstr "รหัสสำรอง"
|
||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||
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"
|
||||
msgstr "Base URL"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:58
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr "พื้นฐาน"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
msgid "Basics"
|
||||
msgstr "พื้นฐาน"
|
||||
|
||||
@ -246,8 +266,8 @@ msgstr "โดยชุมชน เพื่อชุมชน"
|
||||
msgid "Cancel"
|
||||
msgstr "ยกเลิก"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
#: apps/client/src/components/ai-actions.tsx:107
|
||||
#: apps/client/src/components/ai-actions.tsx:110
|
||||
msgid "Casual"
|
||||
msgstr "สบายๆ"
|
||||
|
||||
@ -255,12 +275,16 @@ msgstr "สบายๆ"
|
||||
msgid "Center Artboard"
|
||||
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/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "เปลี่ยนรหัสผ่าน"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
#: apps/client/src/components/ai-actions.tsx:101
|
||||
msgid "Change Tone"
|
||||
msgstr "เปลี่ยนโทน"
|
||||
|
||||
@ -288,6 +312,16 @@ msgstr "รหัส"
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr "รหัสต้องมีความยาว 6 หลัก"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:272
|
||||
msgid "Collapse All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Collapse section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136
|
||||
msgid "Columns"
|
||||
msgstr "คอลัมน์"
|
||||
@ -296,21 +330,17 @@ msgstr "คอลัมน์"
|
||||
msgid "Company"
|
||||
msgstr "บริษัท"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
#: apps/client/src/components/ai-actions.tsx:119
|
||||
#: apps/client/src/components/ai-actions.tsx:122
|
||||
msgid "Confident"
|
||||
msgstr "มั่นใจ"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "ยืนยันรหัสผ่านใหม่"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
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"
|
||||
msgstr "คัดลอก"
|
||||
|
||||
@ -351,16 +381,21 @@ msgstr "สร้างตอนนี้เลย"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "สร้างเรซูเม่ตัวอย่าง"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr "รหัสผ่านเดิม"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
msgstr "CSS ที่กำหนดเอง"
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:62
|
||||
msgid "Custom resume sections"
|
||||
msgstr "ส่วนเรซูเม่ที่กำหนดเอง"
|
||||
|
||||
#: apps/client/src/stores/resume.ts:47
|
||||
#: apps/client/src/stores/resume.ts:53
|
||||
msgid "Custom Section"
|
||||
msgstr "ส่วนที่กำหนดเอง"
|
||||
|
||||
@ -386,10 +421,10 @@ msgstr "มืด"
|
||||
msgid "Date"
|
||||
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/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
|
||||
msgid "Date or Date Range"
|
||||
msgstr "วันที่หรือช่วงวันที่"
|
||||
@ -407,11 +442,15 @@ msgstr "ลบ"
|
||||
msgid "Delete Account"
|
||||
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/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/skills.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||
msgid "Description"
|
||||
msgstr "รายละเอียด"
|
||||
|
||||
@ -423,18 +462,18 @@ msgstr "ออกแบบเรซูเม่หน้าเดียว/ห
|
||||
msgid "Disable"
|
||||
msgstr "ปิดใช้งาน"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "ปิดใช้งาน 2FA"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "ยกเลิก"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr "เอกสารอ้างอิง"
|
||||
|
||||
@ -442,7 +481,7 @@ msgstr "เอกสารอ้างอิง"
|
||||
msgid "Don't have an account?"
|
||||
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!"
|
||||
msgstr "ไม่รู้จะเริ่มจากที่ไหนเหรอ? กดอ่านคู่มือเลย!"
|
||||
|
||||
@ -450,7 +489,7 @@ msgstr "ไม่รู้จะเริ่มจากที่ไหนเห
|
||||
msgid "Don't see your language? <0>Help translate the app.</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"
|
||||
msgstr "บริจาคให้กับ Reactive Resume"
|
||||
|
||||
@ -458,12 +497,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."
|
||||
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."
|
||||
msgstr "ดาวน์โหลด PDF เรซูเม่ของคุณ ไฟล์นี้สามารถใช้เพื่อพิมพ์เรซูเม่ของคุณ ส่งให้ผู้สรรหาบุคลากร หรืออัพโหลดบนพอร์ทัลรับสมัครงาน"
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "ดาวน์โหลด PDF"
|
||||
|
||||
@ -487,7 +525,7 @@ msgstr "คัดลอกรายการที่มีอยู่"
|
||||
msgid "Duplicate an existing resume"
|
||||
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"
|
||||
msgstr "แก้ไข"
|
||||
|
||||
@ -498,12 +536,12 @@ msgstr "เอฟเฟกต์"
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:90
|
||||
#: apps/client/src/pages/auth/register/page.tsx:141
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181
|
||||
msgid "Email"
|
||||
msgstr "อีเมล"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "เปิดใช้งาน 2FA"
|
||||
|
||||
@ -531,6 +569,10 @@ msgstr "ป้อนรหัสผ่านแบบครั้งเดีย
|
||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||
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
|
||||
msgid "Errors"
|
||||
msgstr "ข้อผิดพลาด"
|
||||
@ -539,11 +581,22 @@ msgstr "ข้อผิดพลาด"
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr "แม้ว่าคุณจะไม่อยู่ในฐานะที่จะบริจาคเงินได้ แต่คุณยังคงสามารถสร้างความแตกต่างได้ด้วยการติดดาวให้กับ GitHub repository นี้ กระจายข่าวให้เพื่อนของคุณ หรือส่งข้อความสั้นๆ เพื่อบอกให้ผมรู้ว่า Reactive Resume ช่วยคุณได้อย่างไร ข้อเสนอแนะและการสนับสนุนของคุณ ผมยินดีน้อมรับและชื่นชมเสมอ!"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:271
|
||||
msgid "Expand All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Expand section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "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 "สำรวจเทมเพลตที่มีให้ใช้ใน Reactive Resume และดูเรซูเม่ที่สร้างขึ้นจากเทมเพลตนั้น พวกมันยังสามารถเป็นตัวอย่างเพื่อช่วยในการสร้างเรซูเม่ของคุณต่อไป"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "ส่งออก"
|
||||
@ -564,19 +617,19 @@ msgstr "ในที่สุด"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "แก้ไขการสะกดและไวยากรณ์"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "ตระกูลฟอนต์"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "ขนาดฟอนต์"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "ฟอนต์ย่อย"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "รูปแบบฟอนต์"
|
||||
|
||||
@ -584,7 +637,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."
|
||||
msgstr "ตัวอย่างเช่น ข้อมูลเกี่ยวกับบริษัทที่คุณส่งเรซูเม่นี้ให้หรือลิงก์ไปยังรายละเอียดงานสามารถเขียนไว้ได้ที่นี่"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||
msgid "Forget"
|
||||
msgstr "ลืม"
|
||||
|
||||
@ -601,7 +654,7 @@ msgstr "ลืมรหัสผ่านของคุณใช่หรือ
|
||||
msgid "Format"
|
||||
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?"
|
||||
msgstr "เจอบัค หรือมีไอเดียเกี่ยวกับฟีเจอร์ใหม่หรือเปล่า?"
|
||||
|
||||
@ -609,12 +662,12 @@ msgstr "เจอบัค หรือมีไอเดียเกี่ย
|
||||
msgid "Free, forever"
|
||||
msgstr "ฟรี ตลอดไป"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:121
|
||||
#: apps/client/src/components/ai-actions.tsx:124
|
||||
#: apps/client/src/components/ai-actions.tsx:125
|
||||
#: apps/client/src/components/ai-actions.tsx:128
|
||||
msgid "Friendly"
|
||||
msgstr "เป็นกันเอง"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:56
|
||||
msgid "Full Name"
|
||||
msgstr "ชื่อเต็ม"
|
||||
|
||||
@ -643,6 +696,10 @@ msgstr "ตั้งชื่อใหม่ให้เรซูเม่เก
|
||||
msgid "Go to Dashboard"
|
||||
msgstr "ไปที่แดชบอร์ด"
|
||||
|
||||
#: apps/client/src/pages/public/error.tsx:55
|
||||
msgid "Go to home"
|
||||
msgstr "กลับหน้าแรก"
|
||||
|
||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||
msgid "Google"
|
||||
msgstr "Google"
|
||||
@ -651,11 +708,11 @@ msgstr "Google"
|
||||
msgid "Grayscale"
|
||||
msgstr "ขาวดำ"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||
msgid "Grid"
|
||||
msgstr "ตาราง"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:70
|
||||
msgid "Headline"
|
||||
msgstr "พาดหัว"
|
||||
|
||||
@ -668,7 +725,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr "คุณสามารถอัปเดตโปรไฟล์เพื่อปรับแต่งประสบการณ์ของคุณได้ที่นี่"
|
||||
|
||||
#: 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
|
||||
msgid "Hidden"
|
||||
msgstr "ซ่อนไว้"
|
||||
@ -677,7 +734,7 @@ msgstr "ซ่อนไว้"
|
||||
msgid "Hide"
|
||||
msgstr "ซ่อน"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "ซ่อนไอคอน"
|
||||
|
||||
@ -734,7 +791,7 @@ msgstr "ปรับปรุงการเขียน"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "ในกรณีที่คุณไม่สามารถสแกนโค้ด QR นี้ได้ คุณสามารถคัดลอกและวางลิงก์นี้ลงในแอปยืนยันตัวตนของคุณได้"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "ในส่วนนี้ คุณสามารถเปลี่ยนรหัสผ่านของคุณและเปิด/ปิดการใช้งานการยืนยันตัวตนแบบสองขั้นตอนได้"
|
||||
|
||||
@ -743,7 +800,8 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "ในส่วนนี้ คุณสามารถลบบัญชีของคุณและข้อมูลทั้งหมดที่เกี่ยวข้องกับผู้ใช้ของคุณได้ แต่โปรดจำไว้ว่า <0>การทำเช่นนี้ไม่สามารถย้อนคืนข้อมูลได้</0>"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx: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"
|
||||
msgstr "ข้อมูล"
|
||||
|
||||
@ -802,10 +860,10 @@ msgstr "somchai.niranam@example.th"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||
msgid "Keywords"
|
||||
msgstr "คีย์เวิร์ด"
|
||||
|
||||
@ -824,7 +882,8 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "อัปเดตล่าสุด {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx: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"
|
||||
msgstr "เค้าโครง"
|
||||
|
||||
@ -837,7 +896,7 @@ msgid "Letter"
|
||||
msgstr "จดหมาย"
|
||||
|
||||
#: 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"
|
||||
msgstr "ระดับ"
|
||||
|
||||
@ -853,7 +912,7 @@ msgstr "สว่าง"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "ธีมสว่างหรือมืด"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "ความสูงของเส้น"
|
||||
|
||||
@ -862,14 +921,14 @@ msgstr "ความสูงของเส้น"
|
||||
msgid "LinkedIn, JSON Resume, etc."
|
||||
msgstr "LinkedIn, เรซูเม่ JSON ฯลฯ"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||
msgid "List"
|
||||
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/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:120
|
||||
msgid "Location"
|
||||
msgstr "สถานที่"
|
||||
|
||||
@ -897,7 +956,7 @@ msgstr "ออกจากระบบ"
|
||||
msgid "Lost your device?"
|
||||
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"
|
||||
msgstr "ส่วนหลัก"
|
||||
|
||||
@ -914,7 +973,7 @@ msgstr "มีนาคม 2566"
|
||||
|
||||
#: 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/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
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "มีนาคม 2566 - ปัจจุบัน"
|
||||
@ -923,7 +982,7 @@ msgstr "มีนาคม 2566 - ปัจจุบัน"
|
||||
msgid "Margin"
|
||||
msgstr "ระยะขอบ"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||
msgid "Max Tokens"
|
||||
msgstr "Max Tokens"
|
||||
|
||||
@ -931,18 +990,18 @@ msgstr "Max Tokens"
|
||||
msgid "MIT License"
|
||||
msgstr "ใบอนุญาต MIT"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||
msgid "Model"
|
||||
msgstr "โมเดล"
|
||||
|
||||
#: 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/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: 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/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/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/dashboard/settings/_sections/account.tsx:153
|
||||
msgid "Name"
|
||||
@ -957,7 +1016,7 @@ msgstr "ชื่อ"
|
||||
msgid "Network"
|
||||
msgstr "ชื่อเว็บไซต์"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "รหัสผ่านใหม่"
|
||||
|
||||
@ -974,6 +1033,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "หมายเหตุ: บัญชีของคุณจะปลอดภัยน้อยลงหากทำเช่นนี้"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "โน้ต"
|
||||
@ -1009,16 +1069,16 @@ msgstr "OpenAI ไม่ได้ส่งตัวเลือกใดๆ ใ
|
||||
msgid "OpenAI Integration"
|
||||
msgstr "การใช้ระบบ OpenAI"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
||||
msgid "OpenAI/Ollama API Key"
|
||||
msgstr ""
|
||||
#: 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:79
|
||||
msgid "OpenAI/Ollama Integration"
|
||||
msgstr ""
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||
msgid "OpenAI/Ollama API Key"
|
||||
msgstr "API คีย์ของ OpenAI/Ollama"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "การตั้งค่า"
|
||||
|
||||
@ -1032,22 +1092,23 @@ msgid "Organization"
|
||||
msgstr "องค์กร"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "หน้า"
|
||||
|
||||
#: 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}"
|
||||
msgstr ""
|
||||
msgstr "หน้า {pageNumber}"
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "รหัสผ่าน"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||
msgid "PDF"
|
||||
msgstr "PDF"
|
||||
|
||||
@ -1055,7 +1116,7 @@ msgstr "PDF"
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr "โน้ตส่วนตัวสำหรับแต่ละเรซูเม่"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:108
|
||||
msgid "Phone"
|
||||
msgstr "เบอร์"
|
||||
|
||||
@ -1109,14 +1170,12 @@ msgstr "ขับเคลื่อนโดย <0>Simple Icons</0>"
|
||||
msgid "Primary Color"
|
||||
msgstr "สีหลัก"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||
msgid "Privacy Policy"
|
||||
msgstr "นโยบายความเป็นส่วนตัว"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
#: apps/client/src/components/ai-actions.tsx:113
|
||||
#: apps/client/src/components/ai-actions.tsx:116
|
||||
msgid "Professional"
|
||||
msgstr "มืออาชีพ"
|
||||
|
||||
@ -1132,7 +1191,7 @@ msgstr "สาธารณะ"
|
||||
msgid "Publisher"
|
||||
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"
|
||||
msgstr "แจ้งปัญหา"
|
||||
|
||||
@ -1144,11 +1203,10 @@ msgstr "แจ้งปัญหา"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1175,12 +1233,12 @@ msgstr "Reactive Resume ประสบความสำเร็จได้
|
||||
msgid "Redo"
|
||||
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
|
||||
msgid "Remove"
|
||||
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"
|
||||
msgstr "ลบหน้า"
|
||||
|
||||
@ -1199,7 +1257,7 @@ msgstr "ส่งลิงก์ยืนยันอีเมลอีกคร
|
||||
msgid "Reset"
|
||||
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"
|
||||
msgstr "รีเซ็ตเค้าโครง"
|
||||
|
||||
@ -1213,8 +1271,8 @@ msgid "Reset Zoom"
|
||||
msgstr "รีเซ็ตการซูม"
|
||||
|
||||
#: 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:37
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||
msgid "Resumes"
|
||||
msgstr "เรซูเม่"
|
||||
|
||||
@ -1237,11 +1295,11 @@ msgstr "โค้งมน"
|
||||
msgid "Save Changes"
|
||||
msgstr "บันทึกการเปลี่ยนแปลง"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||
msgid "Save Locally"
|
||||
msgstr "บันทึกในเบราว์เซอร์"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||
msgid "Saved"
|
||||
msgstr "บันทึกสำเร็จ"
|
||||
|
||||
@ -1256,21 +1314,21 @@ msgstr "เกรด"
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:104
|
||||
msgid "Scroll to Pan"
|
||||
msgstr ""
|
||||
msgstr "เลื่อนเพื่อขยับ"
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:104
|
||||
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"
|
||||
msgstr "ค้นหาฟอนต์"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "ค้นหาฟอนต์ย่อย"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "ค้นหารูปแบบฟอนต์"
|
||||
|
||||
@ -1282,7 +1340,7 @@ msgstr "ค้นหาภาษา"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "รักษาความปลอดภัยด้วยการยืนยันตัวตนสองขั้นตอน"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "ความปลอดภัย"
|
||||
|
||||
@ -1294,7 +1352,7 @@ msgstr "โฮสต์ด้วยตนเองบน Docker"
|
||||
msgid "Send Email"
|
||||
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"
|
||||
msgstr "ส่งข้อความหาผม"
|
||||
|
||||
@ -1314,6 +1372,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "ตั้งค่าการยืนยันตัวตนแบบสองขั้นตอนบนบัญชีของคุณ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "การแชร์"
|
||||
@ -1330,7 +1389,7 @@ msgstr "แสดงเส้นแบ่ง"
|
||||
msgid "Show Page Numbers"
|
||||
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"
|
||||
msgstr "แถบด้านข้าง"
|
||||
|
||||
@ -1408,6 +1467,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "เริ่มสร้างเรซูเม่ของคุณด้วยการตั้งชื่อ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "สถิติ"
|
||||
@ -1422,17 +1482,17 @@ msgstr "เก็บรหัสสำรองของคุณให้ปล
|
||||
|
||||
#: 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/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/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/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "Summary"
|
||||
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!"
|
||||
msgstr "สนับสนุนแอปด้วยการบริจาคเงินตามกำลังของคุณ!"
|
||||
|
||||
@ -1444,11 +1504,20 @@ msgstr "สนับสนุน Reactive Resume"
|
||||
msgid "Supports A4/Letter page formats"
|
||||
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
|
||||
msgid "System"
|
||||
msgstr "ระบบ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "เทมเพลต"
|
||||
@ -1465,15 +1534,20 @@ msgstr "คำรับรอง"
|
||||
msgid "Text Color"
|
||||
msgstr "สีตัวอักษร"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "คุณกรอกรหัสผ่านไม่ตรงกัน"
|
||||
#: apps/client/src/pages/public/error.tsx:17
|
||||
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 "คำขอที่ส่งไปผิดพลาด"
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "เรซูเม่ที่คุณต้องการอัปเดตถูกล็อกแล้ว โปรดปลดล็อกหากคุณต้องการทำการเปลี่ยนแปลงใดๆ กับเรซูเม่นั้น"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1604,7 @@ msgstr "ติดตามยอดดูและยอดดาวน์โห
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "การยืนยันตัวตนแบบสองขั้นตอน"
|
||||
|
||||
@ -1552,11 +1626,12 @@ msgid "Type of Study"
|
||||
msgstr "ระดับการศึกษา"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "แบบอักษร"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "ขีดเส้นใต้ลิงก์"
|
||||
|
||||
@ -1599,6 +1674,14 @@ msgstr "URL"
|
||||
msgid "URL must start with 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:57
|
||||
msgid "Use your backup code"
|
||||
@ -1651,13 +1734,13 @@ msgstr "เวอร์ชั่น 4"
|
||||
msgid "Views"
|
||||
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"
|
||||
msgstr "มองเห็นได้"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70
|
||||
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
|
||||
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,15 +1748,15 @@ msgstr "เราตรวจสอบที่อยู่อีเมลขอ
|
||||
|
||||
#: 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/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/experience.tsx:100
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:96
|
||||
msgid "Website"
|
||||
msgstr "เว็บไซต์"
|
||||
|
||||
@ -1681,10 +1764,14 @@ msgstr "เว็บไซต์"
|
||||
msgid "What's new in the latest version"
|
||||
msgstr "มีอะไรใหม่ในเวอร์ชั่นล่าสุด"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
||||
#: apps/client/src/pages/public/error.tsx:26
|
||||
msgid "You are not authorized to access this page."
|
||||
msgstr "คุณไม่มีสิทธิเข้าถึงหน้านี้"
|
||||
|
||||
#: 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."
|
||||
msgstr "คุณสามารถเพิ่มคีย์เวิร์ดได้หลายคำโดยคั่นด้วยเครื่องหมายจุลภาคหรือกด Enter"
|
||||
|
||||
@ -1692,19 +1779,27 @@ msgstr "คุณสามารถเพิ่มคีย์เวิร์ด
|
||||
msgid "You can also enter your username."
|
||||
msgstr "คุณสามารถป้อนชื่อผู้ใช้ของคุณได้ด้วย"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||
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."
|
||||
msgstr ""
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||
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 "คุณยังสามารถผสานการทำงานกับ 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
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
msgstr "คุณสามารถใช้ OpenAI API เพื่อช่วยคุณสร้างเนื้อหาหรือปรับปรุงการเขียนของคุณขณะที่เขียนเรซูเม่ได้"
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||
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 "คุณยังสามารถผสานการทำงานกับ 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
|
||||
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 "คุณสามารถติดตามยอดดูเรซูเม่ของคุณได้ หรือดูว่ามีคนดาวน์โหลดเรซูเม่ที่เปิดเป็นสาธารณะไว้กี่คน"
|
||||
|
||||
#: 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."
|
||||
msgstr "คุณมีตัวเลือกในการ<0>ขอคีย์ OpenAI API ของคุณเอง</0> คีย์นี้ช่วยให้คุณใช้ประโยชน์จาก API ได้ตามที่คุณต้องการ กลับกัน หากคุณต้องการปิดการใช้งานคุณสมบัติ AI ใน Reactive Resume โดยสิ้นเชิง คุณแค่ลบคีย์ออกจากการตั้งค่าของคุณได้เลย"
|
||||
|
||||
@ -1721,7 +1816,7 @@ msgstr "เมลเข้าแล้ว!"
|
||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||
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."
|
||||
msgstr "คีย์ API ของคุณถูกจัดเก็บไว้อย่างปลอดภัยในพื้นที่จัดเก็บภายในเบราว์เซอร์ และจะเรียกใช้เมื่อมีการส่งคำขอไปยัง OpenAI ผ่านทาง SDK ทางการเท่านั้น ขอให้มั่นใจได้ว่าคีย์ของคุณจะไม่ถูกส่งไปยังเซิร์ฟเวอร์ภายนอกใดๆ ยกเว้นเมื่อมีการโต้ตอบกับบริการของ OpenAI"
|
||||
|
||||
@ -1733,7 +1828,7 @@ msgstr "ที่อยู่อีเมลของคุณได้รับ
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "คีย์ API ของ OpenAI ของคุณยังไม่ได้ตั้งค่า โปรดไปที่การตั้งค่าบัญชีของคุณเพื่อเปิดใช้งานการใช้ระบบ OpenAI"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "รหัสผ่านของคุณได้รับการอัปเดตเรียบร้อยแล้ว"
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: tr\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-11-04 14:22\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Turkish\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}}"
|
||||
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>"
|
||||
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>"
|
||||
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."
|
||||
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>"
|
||||
msgstr "<0>Topluluk, Reactive Resume için belgeleri yazmaya çok zaman harcadı ve eminim ki bu belgeler, uygulamayla başlamanıza yardımcı olacaktır.</0><1>Ayrıca, başlamanıza yardımcı olacak birçok örnek ve belki de bilmediğiniz özellikler, mükemmel özgeçmişinizi oluşturmanıza yardımcı olabilir.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>İki faktörlü kimlik doğrulama şu anda devre dışı.</0> Hesabınıza kimlik doğrulama uygulaması ekleyerek aktif edebilirsiniz."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>İki faktörlü kimlik doğrulama şu anda aktif.</0> Giriş yaptığınız her zaman sizden bir kod girmeniz istenecektir."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Hesap"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Özel alan ekle"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:203
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Yeni bir Öğe Ekle"
|
||||
@ -112,12 +112,12 @@ msgstr "Yeni bir Öğe Ekle"
|
||||
msgid "Add a new item"
|
||||
msgstr "Yeni bir Öğe Ekle"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:267
|
||||
msgid "Add a new section"
|
||||
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"
|
||||
msgstr "Yeni Sayfa Ekle"
|
||||
|
||||
@ -133,6 +133,14 @@ msgstr "Zaten bir hesabınız mı var?"
|
||||
msgid "An error occurred while validating the file."
|
||||
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
|
||||
msgid "and many more..."
|
||||
msgstr "ve daha fazlası..."
|
||||
@ -191,6 +199,18 @@ msgstr "{languagesCount} dillerinde mevcuttur"
|
||||
msgid "Awarder"
|
||||
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/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
@ -209,16 +229,16 @@ msgstr "Yedekleme kodu"
|
||||
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."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||
msgid "Base URL"
|
||||
msgstr "Temel URL"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:58
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr "Temel Bilgiler"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
msgid "Basics"
|
||||
msgstr "Temel Bilgiler"
|
||||
|
||||
@ -246,8 +266,8 @@ msgstr "Topluluk tarafından topluluk için oluşturuldu."
|
||||
msgid "Cancel"
|
||||
msgstr "Reddet"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
#: apps/client/src/components/ai-actions.tsx:107
|
||||
#: apps/client/src/components/ai-actions.tsx:110
|
||||
msgid "Casual"
|
||||
msgstr "Sıradan"
|
||||
|
||||
@ -255,12 +275,16 @@ msgstr "Sıradan"
|
||||
msgid "Center Artboard"
|
||||
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/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Şifre Değiştir"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
#: apps/client/src/components/ai-actions.tsx:101
|
||||
msgid "Change Tone"
|
||||
msgstr "Tonu Değiştir"
|
||||
|
||||
@ -288,6 +312,16 @@ msgstr "Kod"
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr "Kod tam olarak 6 hane uzunluğunda olmalıdır."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:272
|
||||
msgid "Collapse All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Collapse section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136
|
||||
msgid "Columns"
|
||||
msgstr "Sütunlar"
|
||||
@ -296,21 +330,17 @@ msgstr "Sütunlar"
|
||||
msgid "Company"
|
||||
msgstr "Şirket"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
#: apps/client/src/components/ai-actions.tsx:119
|
||||
#: apps/client/src/components/ai-actions.tsx:122
|
||||
msgid "Confident"
|
||||
msgstr "Kendinden Emin"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Yeni parolayı doğrulayın"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
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"
|
||||
msgstr "Kopyala"
|
||||
|
||||
@ -351,7 +381,12 @@ msgstr "Hemen bir tane oluştur"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Örnek özgeçmiş oluştur"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr "Geçerli Parola"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "Özel CSS"
|
||||
@ -360,7 +395,7 @@ msgstr "Özel CSS"
|
||||
msgid "Custom resume sections"
|
||||
msgstr "Özel özgeçmiş bölümleri"
|
||||
|
||||
#: apps/client/src/stores/resume.ts:47
|
||||
#: apps/client/src/stores/resume.ts:53
|
||||
msgid "Custom Section"
|
||||
msgstr "Özel bölüm"
|
||||
|
||||
@ -386,10 +421,10 @@ msgstr "Karanlık"
|
||||
msgid "Date"
|
||||
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/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
|
||||
msgid "Date or Date Range"
|
||||
msgstr "Tarih veya Tarih Aralığı"
|
||||
@ -407,11 +442,15 @@ msgstr "Sil"
|
||||
msgid "Delete Account"
|
||||
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/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/skills.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||
msgid "Description"
|
||||
msgstr "Açıklama"
|
||||
|
||||
@ -423,18 +462,18 @@ msgstr "Tek/çok sayfalı özgeçmiş tasarlayın"
|
||||
msgid "Disable"
|
||||
msgstr "Devre dışı bırak"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "2FA'yı devre dışı bırak"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Vazgeç"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr "Dökümantasyon"
|
||||
|
||||
@ -442,7 +481,7 @@ msgstr "Dökümantasyon"
|
||||
msgid "Don't have an account?"
|
||||
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!"
|
||||
msgstr "Nereden başlayacağınızı bilmiyor musunuz? Dokümanlara göz atın!"
|
||||
|
||||
@ -450,7 +489,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>"
|
||||
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"
|
||||
msgstr "Reaktif Özgeçmiş'e Bağış Yapın"
|
||||
|
||||
@ -458,12 +497,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."
|
||||
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."
|
||||
msgstr "Özgeçmişinizin PDF dosyasını indirin. Bu dosya özgeçmişinizi yazdırmak, işe alım uzmanlarına göndermek veya iş portallarına yüklemek için kullanılabilir."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "PDF indir"
|
||||
|
||||
@ -487,7 +525,7 @@ msgstr "Mevcut bir öğeyi çoğalt"
|
||||
msgid "Duplicate an existing resume"
|
||||
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"
|
||||
msgstr "Düzenle"
|
||||
|
||||
@ -498,12 +536,12 @@ msgstr "Efektler"
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:90
|
||||
#: apps/client/src/pages/auth/register/page.tsx:141
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181
|
||||
msgid "Email"
|
||||
msgstr "E-Posta"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "2FA'yı etkinleştir"
|
||||
|
||||
@ -531,6 +569,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."
|
||||
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
|
||||
msgid "Errors"
|
||||
msgstr "Hatalar"
|
||||
@ -539,11 +581,22 @@ msgstr "Hatalar"
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr "Maddi olarak katkıda bulunacak durumda olmasanız bile, GitHub sayfamıza bir yıldız vererek, arkadaşlarınıza duyurarak veya Reactive Resume'un size nasıl yardımcı olduğunu bildirmek için hızlı bir mesaj bırakarak yine de bir fark yaratabilirsiniz. Geri bildiriminiz ve desteğiniz bizim için çok değerlidir!"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:271
|
||||
msgid "Expand All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Expand section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "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 "Reactive Resume'da bulunan şablonları keşfedin ve bunlarla hazırlanmış özgeçmişleri görüntüleyin. Bu şablonlar, bir sonraki özgeçmişinizin oluşturulmasına yardımcı olacak örnekler olarak da kullanılabilir."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Dışa aktar"
|
||||
@ -564,19 +617,19 @@ msgstr "Nihayet,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Yazım ve Dil Bilgisini Düzeltin"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Yazı Tipi Ailesi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Yazı Tipi Büyüklüğü"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Yazı Tipi Alt Kümesi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Yazı Tipi Çeşitleri"
|
||||
|
||||
@ -584,7 +637,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."
|
||||
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"
|
||||
msgstr "Unut"
|
||||
|
||||
@ -601,7 +654,7 @@ msgstr "Şifrenizi mi unuttunuz?"
|
||||
msgid "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?"
|
||||
msgstr "Bir hata mı buldunuz ya da yeni bir özellik için bir fikriniz mi var?"
|
||||
|
||||
@ -609,12 +662,12 @@ msgstr "Bir hata mı buldunuz ya da yeni bir özellik için bir fikriniz mi var?
|
||||
msgid "Free, forever"
|
||||
msgstr "Ömür boyu ücretsiz"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:121
|
||||
#: apps/client/src/components/ai-actions.tsx:124
|
||||
#: apps/client/src/components/ai-actions.tsx:125
|
||||
#: apps/client/src/components/ai-actions.tsx:128
|
||||
msgid "Friendly"
|
||||
msgstr "Dostça"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:56
|
||||
msgid "Full Name"
|
||||
msgstr "Tam Ad"
|
||||
|
||||
@ -643,6 +696,10 @@ msgstr "Eski özgeçmişinize yeni bir isim verin."
|
||||
msgid "Go to Dashboard"
|
||||
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
|
||||
msgid "Google"
|
||||
msgstr "Google"
|
||||
@ -651,11 +708,11 @@ msgstr "Google"
|
||||
msgid "Grayscale"
|
||||
msgstr "Gri tonlamalı"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||
msgid "Grid"
|
||||
msgstr "Izgara"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:70
|
||||
msgid "Headline"
|
||||
msgstr "Başlık"
|
||||
|
||||
@ -668,7 +725,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."
|
||||
|
||||
#: 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
|
||||
msgid "Hidden"
|
||||
msgstr "Gizli"
|
||||
@ -677,7 +734,7 @@ msgstr "Gizli"
|
||||
msgid "Hide"
|
||||
msgstr "Gizle"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Simgeleri Gizle"
|
||||
|
||||
@ -734,7 +791,7 @@ msgstr "Yazmayı Geliştirin"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Bu QR Kodunu tarayamamanız durumunda, bu bağlantıyı kopyalayıp kimlik doğrulayıcı uygulamanıza da yapıştırabilirsiniz."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "Bu bölümde şifrenizi değiştirebilir ve iki faktörlü kimlik doğrulamayı etkinleştirebilir/devre dışı bırakabilirsiniz."
|
||||
|
||||
@ -743,7 +800,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."
|
||||
|
||||
#: 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"
|
||||
msgstr "Bilgi"
|
||||
|
||||
@ -802,10 +860,10 @@ msgstr "john.doe@example.com"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||
msgid "Keywords"
|
||||
msgstr "Anahtar Kelimeler"
|
||||
|
||||
@ -824,7 +882,8 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Son güncelleme {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx: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"
|
||||
msgstr "Düzen"
|
||||
|
||||
@ -837,7 +896,7 @@ msgid "Letter"
|
||||
msgstr "Harf"
|
||||
|
||||
#: 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"
|
||||
msgstr "Düzey"
|
||||
|
||||
@ -853,7 +912,7 @@ msgstr "Açık"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Açık veya koyu tema"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Satır Yüksekliği"
|
||||
|
||||
@ -862,14 +921,14 @@ msgstr "Satır Yüksekliği"
|
||||
msgid "LinkedIn, JSON Resume, etc."
|
||||
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"
|
||||
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/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:120
|
||||
msgid "Location"
|
||||
msgstr "Konum"
|
||||
|
||||
@ -897,7 +956,7 @@ msgstr "Çıkış yap"
|
||||
msgid "Lost your device?"
|
||||
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"
|
||||
msgstr "Ana Sayfa"
|
||||
|
||||
@ -914,7 +973,7 @@ msgstr "Mart 2023"
|
||||
|
||||
#: 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/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
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "Mart 2023 - Günümüz"
|
||||
@ -923,7 +982,7 @@ msgstr "Mart 2023 - Günümüz"
|
||||
msgid "Margin"
|
||||
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"
|
||||
msgstr "Maksimum Jeton"
|
||||
|
||||
@ -931,18 +990,18 @@ msgstr "Maksimum Jeton"
|
||||
msgid "MIT License"
|
||||
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"
|
||||
msgstr "Model"
|
||||
|
||||
#: 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/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: 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/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/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/dashboard/settings/_sections/account.tsx:153
|
||||
msgid "Name"
|
||||
@ -957,7 +1016,7 @@ msgstr "İsim"
|
||||
msgid "Network"
|
||||
msgstr "Sosyal Ağ"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Yeni Şifre"
|
||||
|
||||
@ -974,6 +1033,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Not: Bu, hesabınızın güvenliğini azaltacaktır."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Notlar"
|
||||
@ -1009,16 +1069,16 @@ msgstr "OpenAI, metniniz için herhangi bir seçenek döndürmedi."
|
||||
msgid "OpenAI Integration"
|
||||
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"
|
||||
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/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Seçenekler"
|
||||
|
||||
@ -1032,22 +1092,23 @@ msgid "Organization"
|
||||
msgstr "Organizasyon"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Sayfa"
|
||||
|
||||
#: 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}"
|
||||
msgstr "Sayfa {pageNumber}"
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Şifre"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||
msgid "PDF"
|
||||
msgstr "PDF"
|
||||
|
||||
@ -1055,7 +1116,7 @@ msgstr "PDF"
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr "Her özgeçmiş için kişisel notlar"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:108
|
||||
msgid "Phone"
|
||||
msgstr "Telefon"
|
||||
|
||||
@ -1091,11 +1152,11 @@ msgstr "Portre"
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54
|
||||
msgctxt "Position held at a company, for example, Software Engineer"
|
||||
msgid "Position"
|
||||
msgstr "Konum"
|
||||
msgstr "Pozisyon"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53
|
||||
msgid "Position"
|
||||
msgstr "Konum"
|
||||
msgstr "Pozisyon"
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:96
|
||||
msgid "Powered by"
|
||||
@ -1109,14 +1170,12 @@ msgstr "<0>Simple Icons</0> tarafından desteklenmektedir"
|
||||
msgid "Primary Color"
|
||||
msgstr "Birincil Renk"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Gizlilik Politikası"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
#: apps/client/src/components/ai-actions.tsx:113
|
||||
#: apps/client/src/components/ai-actions.tsx:116
|
||||
msgid "Professional"
|
||||
msgstr "Profesyonel"
|
||||
|
||||
@ -1132,7 +1191,7 @@ msgstr "Herkese Açık"
|
||||
msgid "Publisher"
|
||||
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"
|
||||
msgstr "Bir sorunu dile getirin"
|
||||
|
||||
@ -1144,11 +1203,10 @@ msgstr "Bir sorunu dile getirin"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1175,12 +1233,12 @@ msgstr "Reaktif Özgeçmiş, canlı topluluğu sayesinde gelişiyor. Bu proje il
|
||||
msgid "Redo"
|
||||
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
|
||||
msgid "Remove"
|
||||
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"
|
||||
msgstr "Sayfayı Kaldır"
|
||||
|
||||
@ -1199,7 +1257,7 @@ msgstr "E-posta onay bağlantısını yeniden gönder"
|
||||
msgid "Reset"
|
||||
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"
|
||||
msgstr "Düzeni Sıfırla"
|
||||
|
||||
@ -1213,8 +1271,8 @@ msgid "Reset Zoom"
|
||||
msgstr "Yakınlaştırmayı Sıfırla"
|
||||
|
||||
#: 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:37
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||
msgid "Resumes"
|
||||
msgstr "Özgeçmişler"
|
||||
|
||||
@ -1237,11 +1295,11 @@ msgstr "Yuvarlak"
|
||||
msgid "Save Changes"
|
||||
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"
|
||||
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"
|
||||
msgstr "Kaydedildi"
|
||||
|
||||
@ -1262,15 +1320,15 @@ msgstr "Kaydırmak için kaydırın"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "Yakınlaştırmak için Kaydır"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "Bir yazı tipi ailesi arayın"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Yazı tipi alt kümesini arayın"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Yazı tipi varyantı arama"
|
||||
|
||||
@ -1282,7 +1340,7 @@ msgstr "Dili arayın"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "İki faktörlü kimlik doğrulama ile güvende"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Güvenlik"
|
||||
|
||||
@ -1294,7 +1352,7 @@ msgstr "Docker ile kendi kendine barındırma"
|
||||
msgid "Send Email"
|
||||
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"
|
||||
msgstr "Mesaj gönder"
|
||||
|
||||
@ -1314,6 +1372,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Hesabınızda iki faktörlü kimlik doğrulamayı ayarlayın"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Paylaşım"
|
||||
@ -1330,7 +1389,7 @@ msgstr "Ara Çizgiyi Göster"
|
||||
msgid "Show Page Numbers"
|
||||
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"
|
||||
msgstr "Kenar Çubuğu"
|
||||
|
||||
@ -1408,6 +1467,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Bir ad vererek özgeçmişinizi oluşturmaya başlayın."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "İstatistikler"
|
||||
@ -1422,17 +1482,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/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/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/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "Summary"
|
||||
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!"
|
||||
msgstr "Elinizden geldiğince bağışta bulunarak uygulamayı destekleyin!"
|
||||
|
||||
@ -1444,11 +1504,20 @@ msgstr "Reaktif Özgeçmişi Destekleme"
|
||||
msgid "Supports A4/Letter page formats"
|
||||
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
|
||||
msgid "System"
|
||||
msgstr "Sistem"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Şablon"
|
||||
@ -1465,15 +1534,20 @@ msgstr "Görüşler"
|
||||
msgid "Text Color"
|
||||
msgstr "Metin Rengi"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "Girdiğiniz şifreler eşleşmiyor."
|
||||
#: apps/client/src/pages/public/error.tsx:17
|
||||
msgid "The page you're looking for doesn't exist."
|
||||
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
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "Güncellemek istediğiniz özgeçmiş kilitli, herhangi bir değişiklik yapmak istiyorsanız lütfen kilidini açın."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1604,7 @@ msgstr "Görüntülemeleri ve indirmeleri takip edin"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "İki Faktörlü Kimlik Doğrulama"
|
||||
|
||||
@ -1552,11 +1626,12 @@ msgid "Type of Study"
|
||||
msgstr "Çalışma Türü"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Tipografi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Altı Çizili Bağlantılar"
|
||||
|
||||
@ -1599,6 +1674,14 @@ msgstr "URL"
|
||||
msgid "URL must start with https://"
|
||||
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:57
|
||||
msgid "Use your backup code"
|
||||
@ -1651,7 +1734,7 @@ msgstr "Sürüm 4"
|
||||
msgid "Views"
|
||||
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"
|
||||
msgstr "Görünür"
|
||||
|
||||
@ -1665,15 +1748,15 @@ 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/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/experience.tsx:100
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:96
|
||||
msgid "Website"
|
||||
msgstr "İnternet sitesi"
|
||||
|
||||
@ -1681,10 +1764,14 @@ msgstr "İnternet sitesi"
|
||||
msgid "What's new in the latest version"
|
||||
msgstr "En son sürümdeki yenilikler"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
||||
#: apps/client/src/pages/public/error.tsx:26
|
||||
msgid "You are not authorized to access this page."
|
||||
msgstr "Bu sayfaya erişme yetkiniz yok."
|
||||
|
||||
#: 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."
|
||||
msgstr "Birden fazla anahtar kelimeyi virgülle ayırarak veya enter tuşuna basarak ekleyebilirsiniz."
|
||||
|
||||
@ -1692,19 +1779,27 @@ msgstr "Birden fazla anahtar kelimeyi virgülle ayırarak veya enter tuşuna bas
|
||||
msgid "You can also enter your username."
|
||||
msgstr "Kullanıcı adınızı da girebilirsiniz."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||
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."
|
||||
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."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||
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 "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
|
||||
msgid "You can make use of the OpenAI API 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'sinden yararlanabilir veya özgeçmişinizi oluştururken yazınızı geliştirebilirsiniz."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||
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 "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
|
||||
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."
|
||||
|
||||
#: 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."
|
||||
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 +1816,7 @@ msgstr "E-postanız var!"
|
||||
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!"
|
||||
|
||||
#: 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."
|
||||
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 +1828,7 @@ msgstr "E-posta adresiniz başarıyla doğrulandı."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "OpenAI API Anahtarınız henüz ayarlanmadı. OpenAI Entegrasyonunu etkinleştirmek için lütfen hesap ayarlarınıza gidin."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Parolanız başarıyla güncellendi."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: uz\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-11-04 14:22\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Uzbek\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}}"
|
||||
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>"
|
||||
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>"
|
||||
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."
|
||||
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>"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr ""
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Hisob"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Maxsus maydon qo'shish"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:203
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Yangi narsa qo'shish"
|
||||
@ -112,12 +112,12 @@ msgstr "Yangi narsa qo'shish"
|
||||
msgid "Add a new item"
|
||||
msgstr "Yangi narsa qo'shish"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:267
|
||||
msgid "Add a new section"
|
||||
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"
|
||||
msgstr "Yangi sahifa qo'shish"
|
||||
|
||||
@ -133,6 +133,14 @@ msgstr "Hisobingiz bormi?"
|
||||
msgid "An error occurred while validating the file."
|
||||
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
|
||||
msgid "and many more..."
|
||||
msgstr "va yana ko'pgina..."
|
||||
@ -191,6 +199,18 @@ msgstr "{languagesCount} ta tilda mavjud"
|
||||
msgid "Awarder"
|
||||
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/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
@ -209,16 +229,16 @@ msgstr "Zaxira kodi"
|
||||
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."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||
msgid "Base URL"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:58
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr "Asoslar"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
msgid "Basics"
|
||||
msgstr "Asoslar"
|
||||
|
||||
@ -246,8 +266,8 @@ msgstr "Jamiyat tomonidan, jamiyat uchun."
|
||||
msgid "Cancel"
|
||||
msgstr "Bekor qilish"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
#: apps/client/src/components/ai-actions.tsx:107
|
||||
#: apps/client/src/components/ai-actions.tsx:110
|
||||
msgid "Casual"
|
||||
msgstr ""
|
||||
|
||||
@ -255,12 +275,16 @@ msgstr ""
|
||||
msgid "Center Artboard"
|
||||
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/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
#: apps/client/src/components/ai-actions.tsx:101
|
||||
msgid "Change Tone"
|
||||
msgstr ""
|
||||
|
||||
@ -288,6 +312,16 @@ msgstr "Kod"
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr "Kod aniq 6 ta raqamdan iborat bo'lishi kerak."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:272
|
||||
msgid "Collapse All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Collapse section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136
|
||||
msgid "Columns"
|
||||
msgstr "Ustunlar"
|
||||
@ -296,21 +330,17 @@ msgstr "Ustunlar"
|
||||
msgid "Company"
|
||||
msgstr "Tashkilot"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
#: apps/client/src/components/ai-actions.tsx:119
|
||||
#: apps/client/src/components/ai-actions.tsx:122
|
||||
msgid "Confident"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Yangi parolni tasdiqlang"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
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"
|
||||
msgstr "Nusxalash"
|
||||
|
||||
@ -351,7 +381,12 @@ msgstr ""
|
||||
msgid "Create Sample Resume"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
@ -360,7 +395,7 @@ msgstr ""
|
||||
msgid "Custom resume sections"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/stores/resume.ts:47
|
||||
#: apps/client/src/stores/resume.ts:53
|
||||
msgid "Custom Section"
|
||||
msgstr ""
|
||||
|
||||
@ -386,10 +421,10 @@ msgstr "To‘q"
|
||||
msgid "Date"
|
||||
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/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
|
||||
msgid "Date or Date Range"
|
||||
msgstr "Sana yoki sana oralig'i"
|
||||
@ -407,11 +442,15 @@ msgstr "O'chirish"
|
||||
msgid "Delete Account"
|
||||
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/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/skills.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||
msgid "Description"
|
||||
msgstr "Ta'rif"
|
||||
|
||||
@ -423,18 +462,18 @@ msgstr "Yagona/Ko‘p sahifali tarjimai hollarni andozaga solish"
|
||||
msgid "Disable"
|
||||
msgstr "Oʻchirish"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "2BShT (2FA)ni o`chirish"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Bekor qilish"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr "Hujjatlar"
|
||||
|
||||
@ -442,7 +481,7 @@ msgstr "Hujjatlar"
|
||||
msgid "Don't have an account?"
|
||||
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!"
|
||||
msgstr "Qayerdan boshlashni bilmayapsizmi? Hujjatlarni bosing!"
|
||||
|
||||
@ -450,7 +489,7 @@ msgstr "Qayerdan boshlashni bilmayapsizmi? Hujjatlarni bosing!"
|
||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -458,12 +497,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."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "PDF yuklab olish"
|
||||
|
||||
@ -487,7 +525,7 @@ msgstr "Mavjud buyumni nusxalash"
|
||||
msgid "Duplicate an existing resume"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -498,12 +536,12 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:90
|
||||
#: apps/client/src/pages/auth/register/page.tsx:141
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr ""
|
||||
|
||||
@ -531,6 +569,10 @@ msgstr ""
|
||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/public/error.tsx:46
|
||||
msgid "Error {statusCode}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||
msgid "Errors"
|
||||
msgstr ""
|
||||
@ -539,11 +581,22 @@ msgstr ""
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:271
|
||||
msgid "Expand All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Expand section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "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 ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Eksport"
|
||||
@ -564,19 +617,19 @@ msgstr ""
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr ""
|
||||
|
||||
@ -584,7 +637,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."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||
msgid "Forget"
|
||||
msgstr ""
|
||||
|
||||
@ -601,7 +654,7 @@ msgstr "Parolingizni unutdingizmi?"
|
||||
msgid "Format"
|
||||
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?"
|
||||
msgstr ""
|
||||
|
||||
@ -609,12 +662,12 @@ msgstr ""
|
||||
msgid "Free, forever"
|
||||
msgstr "Bepul, har doim"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:121
|
||||
#: apps/client/src/components/ai-actions.tsx:124
|
||||
#: apps/client/src/components/ai-actions.tsx:125
|
||||
#: apps/client/src/components/ai-actions.tsx:128
|
||||
msgid "Friendly"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:56
|
||||
msgid "Full Name"
|
||||
msgstr ""
|
||||
|
||||
@ -643,6 +696,10 @@ msgstr ""
|
||||
msgid "Go to Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/public/error.tsx:55
|
||||
msgid "Go to home"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/_components/social-auth.tsx:31
|
||||
msgid "Google"
|
||||
msgstr "Google"
|
||||
@ -651,11 +708,11 @@ msgstr "Google"
|
||||
msgid "Grayscale"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||
msgid "Grid"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:70
|
||||
msgid "Headline"
|
||||
msgstr ""
|
||||
|
||||
@ -668,7 +725,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
msgid "Hidden"
|
||||
msgstr "Yashirilgan"
|
||||
@ -677,7 +734,7 @@ msgstr "Yashirilgan"
|
||||
msgid "Hide"
|
||||
msgstr "Yashirish"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr ""
|
||||
|
||||
@ -734,7 +791,7 @@ msgstr ""
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr ""
|
||||
|
||||
@ -743,7 +800,8 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx: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"
|
||||
msgstr "Ma'lumot"
|
||||
|
||||
@ -802,10 +860,10 @@ msgstr "aziz.azizov@pochta.uz"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||
msgid "Keywords"
|
||||
msgstr "Kalit so’zlar"
|
||||
|
||||
@ -824,7 +882,8 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx: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"
|
||||
msgstr ""
|
||||
|
||||
@ -837,7 +896,7 @@ msgid "Letter"
|
||||
msgstr ""
|
||||
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -853,7 +912,7 @@ msgstr ""
|
||||
msgid "Light or dark theme"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr ""
|
||||
|
||||
@ -862,14 +921,14 @@ msgstr ""
|
||||
msgid "LinkedIn, JSON Resume, etc."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||
msgid "List"
|
||||
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/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:120
|
||||
msgid "Location"
|
||||
msgstr ""
|
||||
|
||||
@ -897,7 +956,7 @@ msgstr ""
|
||||
msgid "Lost your device?"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -914,7 +973,7 @@ msgstr ""
|
||||
|
||||
#: 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/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
|
||||
msgid "March 2023 - Present"
|
||||
msgstr ""
|
||||
@ -923,7 +982,7 @@ msgstr ""
|
||||
msgid "Margin"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||
msgid "Max Tokens"
|
||||
msgstr ""
|
||||
|
||||
@ -931,18 +990,18 @@ msgstr ""
|
||||
msgid "MIT License"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#: 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/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: 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/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/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/dashboard/settings/_sections/account.tsx:153
|
||||
msgid "Name"
|
||||
@ -957,7 +1016,7 @@ msgstr ""
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Yangi parol"
|
||||
|
||||
@ -974,6 +1033,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Eslatma: Bu sizning hisobingiz xavfsizligini kamaytiradi."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Eslatmalar"
|
||||
@ -1009,16 +1069,16 @@ msgstr ""
|
||||
msgid "OpenAI Integration"
|
||||
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"
|
||||
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/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Variantlar"
|
||||
|
||||
@ -1032,22 +1092,23 @@ msgid "Organization"
|
||||
msgstr "Tashkilot"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Sahifa"
|
||||
|
||||
#: 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}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "Parol"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||
msgid "PDF"
|
||||
msgstr "PDF"
|
||||
|
||||
@ -1055,7 +1116,7 @@ msgstr "PDF"
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr "Har bir tarjimai hol uchun shaxsiy eslatmalar"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:108
|
||||
msgid "Phone"
|
||||
msgstr "Telefon"
|
||||
|
||||
@ -1109,14 +1170,12 @@ msgstr ""
|
||||
msgid "Primary Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||
msgid "Privacy Policy"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
#: apps/client/src/components/ai-actions.tsx:113
|
||||
#: apps/client/src/components/ai-actions.tsx:116
|
||||
msgid "Professional"
|
||||
msgstr ""
|
||||
|
||||
@ -1132,7 +1191,7 @@ msgstr ""
|
||||
msgid "Publisher"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1144,11 +1203,10 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1175,12 +1233,12 @@ msgstr ""
|
||||
msgid "Redo"
|
||||
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
|
||||
msgid "Remove"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1199,7 +1257,7 @@ msgstr ""
|
||||
msgid "Reset"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1213,8 +1271,8 @@ msgid "Reset Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: 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:37
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||
msgid "Resumes"
|
||||
msgstr "Rezyumelar"
|
||||
|
||||
@ -1237,11 +1295,11 @@ msgstr ""
|
||||
msgid "Save Changes"
|
||||
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"
|
||||
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"
|
||||
msgstr "Saqlandi"
|
||||
|
||||
@ -1262,15 +1320,15 @@ msgstr ""
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
@ -1282,7 +1340,7 @@ msgstr ""
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
@ -1294,7 +1352,7 @@ msgstr ""
|
||||
msgid "Send Email"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1314,6 +1372,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr ""
|
||||
@ -1330,7 +1389,7 @@ msgstr ""
|
||||
msgid "Show Page Numbers"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1408,6 +1467,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr ""
|
||||
@ -1422,17 +1482,17 @@ msgstr ""
|
||||
|
||||
#: 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/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/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/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "Summary"
|
||||
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!"
|
||||
msgstr ""
|
||||
|
||||
@ -1444,11 +1504,20 @@ msgstr ""
|
||||
msgid "Supports A4/Letter page formats"
|
||||
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
|
||||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
@ -1465,8 +1534,12 @@ msgstr ""
|
||||
msgid "Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
#: apps/client/src/pages/public/error.tsx:17
|
||||
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 ""
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:49
|
||||
@ -1474,6 +1547,7 @@ msgid "The resume you want to update is locked, please unlock if you wish to mak
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1604,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr ""
|
||||
|
||||
@ -1552,11 +1626,12 @@ msgid "Type of Study"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr ""
|
||||
|
||||
@ -1599,6 +1674,14 @@ msgstr ""
|
||||
msgid "URL must start with https://"
|
||||
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:57
|
||||
msgid "Use your backup code"
|
||||
@ -1651,7 +1734,7 @@ msgstr ""
|
||||
msgid "Views"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1665,15 +1748,15 @@ msgstr ""
|
||||
|
||||
#: 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/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/experience.tsx:100
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:96
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
@ -1681,10 +1764,14 @@ msgstr ""
|
||||
msgid "What's new in the latest version"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
||||
#: apps/client/src/pages/public/error.tsx:26
|
||||
msgid "You are not authorized to access this page."
|
||||
msgstr ""
|
||||
|
||||
#: 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."
|
||||
msgstr ""
|
||||
|
||||
@ -1692,19 +1779,27 @@ msgstr ""
|
||||
msgid "You can also enter your username."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||
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."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||
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 ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:81
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||
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 ""
|
||||
|
||||
#: 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."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
@ -1721,7 +1816,7 @@ msgstr ""
|
||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
@ -1733,7 +1828,7 @@ msgstr ""
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: vi\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-11-04 14:22\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Vietnamese\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}}"
|
||||
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>"
|
||||
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>"
|
||||
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."
|
||||
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>"
|
||||
msgstr "<0>Cộng đồng đã dành rất nhiều thời gian để viết tài liệu về Reactive Resume, tôi chắc chắn tài liệu này sẽ giúp bạn mới bắt đầu sử dụng ứng dụng.</0> <1>Ngoài ra cũng còn có rất nhiều ví dụ khác giúp bạn sử dụng các tính năng mà bạn có thể chưa biết để có thể giúp bạn xây dựng sơ yếu lý lịch hoàn hảo của mình.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>Xác thực hai yếu tố hiện bị tắt.</0> Bạn có thể kích hoạt nó bằng cách thêm ứng dụng xác thực vào tài khoản của mình."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>Chứng thực hai yếu tố được kích hoạt.</0> Bạn sẽ được yêu cầu nhập mã mỗi khi đăng nhập."
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "Tài khoản"
|
||||
msgid "Add a custom field"
|
||||
msgstr "Thêm một trường tùy chỉnh"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:203
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "Thêm mục mới"
|
||||
@ -112,12 +112,12 @@ msgstr "Thêm mục mới"
|
||||
msgid "Add a new item"
|
||||
msgstr "Thêm mục mới"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:267
|
||||
msgid "Add a new section"
|
||||
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"
|
||||
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."
|
||||
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
|
||||
msgid "and many more..."
|
||||
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
|
||||
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
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
@ -191,6 +199,18 @@ msgstr "Hỗ trợ {languagesCount} ngôn ngữ"
|
||||
msgid "Awarder"
|
||||
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/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
@ -209,16 +229,16 @@ msgstr "Mã Backup"
|
||||
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ự."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
||||
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:58
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr "Cơ bản"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
msgid "Basics"
|
||||
msgstr "Cơ bản"
|
||||
|
||||
@ -246,8 +266,8 @@ msgstr "Bởi cộng đồng, vì cộng đồng."
|
||||
msgid "Cancel"
|
||||
msgstr "Hủy"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
#: apps/client/src/components/ai-actions.tsx:107
|
||||
#: apps/client/src/components/ai-actions.tsx:110
|
||||
msgid "Casual"
|
||||
msgstr "Thông thường"
|
||||
|
||||
@ -255,12 +275,16 @@ msgstr "Thông thường"
|
||||
msgid "Center Artboard"
|
||||
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/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "Thay đổi mật khẩu"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
#: apps/client/src/components/ai-actions.tsx:101
|
||||
msgid "Change Tone"
|
||||
msgstr "Thay Đổi Tông"
|
||||
|
||||
@ -288,6 +312,16 @@ msgstr "Mã"
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr "Mã phải có đúng 6 chữ số."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:272
|
||||
msgid "Collapse All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Collapse section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136
|
||||
msgid "Columns"
|
||||
msgstr "Cột"
|
||||
@ -296,21 +330,17 @@ msgstr "Cột"
|
||||
msgid "Company"
|
||||
msgstr "Công ty"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
#: apps/client/src/components/ai-actions.tsx:119
|
||||
#: apps/client/src/components/ai-actions.tsx:122
|
||||
msgid "Confident"
|
||||
msgstr "Tự tin"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "Xác nhận mật khẩu mới"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
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"
|
||||
msgstr "Sao chép"
|
||||
|
||||
@ -351,16 +381,21 @@ msgstr "Tạo ngay"
|
||||
msgid "Create Sample Resume"
|
||||
msgstr "Tạo sơ yếu lý lịch mẫu"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:82
|
||||
msgid "Current Password"
|
||||
msgstr "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/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
msgstr "CSS tùy chỉnh"
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:62
|
||||
msgid "Custom resume sections"
|
||||
msgstr "Phần sơ yếu lý lịch tùy chỉnh"
|
||||
|
||||
#: apps/client/src/stores/resume.ts:47
|
||||
#: apps/client/src/stores/resume.ts:53
|
||||
msgid "Custom Section"
|
||||
msgstr "Mục tùy chỉnh"
|
||||
|
||||
@ -386,10 +421,10 @@ msgstr "Tối"
|
||||
msgid "Date"
|
||||
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/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
|
||||
msgid "Date or Date Range"
|
||||
msgstr "Ngày hoặc Khoảng ngày"
|
||||
@ -407,11 +442,15 @@ msgstr "Xóa"
|
||||
msgid "Delete Account"
|
||||
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/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/skills.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||
msgid "Description"
|
||||
msgstr "Mô tả"
|
||||
|
||||
@ -423,18 +462,18 @@ msgstr "Thiết kế sơ yếu lý lịch một/nhiều trang"
|
||||
msgid "Disable"
|
||||
msgstr "Tắt"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "Tắt xác thực 2FA"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "Hủy"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr "Tài liệu"
|
||||
|
||||
@ -442,7 +481,7 @@ msgstr "Tài liệu"
|
||||
msgid "Don't have an account?"
|
||||
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!"
|
||||
msgstr "Không biết bắt đầu từ đâu? Hãy truy cập tài liệu!"
|
||||
|
||||
@ -450,7 +489,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>"
|
||||
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"
|
||||
msgstr "Đóng góp cho Reactive Resume"
|
||||
|
||||
@ -458,12 +497,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."
|
||||
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."
|
||||
msgstr "Tải xuống bản PDF sơ yếu lý lịch của bạn. Tệp này có thể được sử dụng để in sơ yếu lý lịch của bạn, gửi cho nhà tuyển dụng hoặc tải lên các cổng thông tin việc làm."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "Tải xuống PDF"
|
||||
|
||||
@ -487,7 +525,7 @@ msgstr "Sao chép một mục hiện có"
|
||||
msgid "Duplicate an existing resume"
|
||||
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"
|
||||
msgstr "Chỉnh sửa"
|
||||
|
||||
@ -498,12 +536,12 @@ msgstr "Hiệu ứng"
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:90
|
||||
#: apps/client/src/pages/auth/register/page.tsx:141
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181
|
||||
msgid "Email"
|
||||
msgstr "Email"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "Bật xác thực 2FA"
|
||||
|
||||
@ -531,6 +569,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."
|
||||
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
|
||||
msgid "Errors"
|
||||
msgstr "Lỗi"
|
||||
@ -539,11 +581,22 @@ msgstr "Lỗi"
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr "Ngay cả khi bạn không có khả năng đóng góp tài chính, bạn vẫn có thể tạo ra sự khác biệt bằng cách gắn sao cho kho lưu trữ GitHub, truyền bá cho bạn bè hoặc gửi một tin nhắn nhanh để cho tôi biết Reactive Resume đã giúp bạn như thế nào. Phản hồi và hỗ trợ của bạn luôn được chào đón và đánh giá cao!"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:271
|
||||
msgid "Expand All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Expand section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "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 "Khám phá các mẫu có sẵn trong Reactive Resume và xem các sơ yếu lý lịch được tạo bằng chúng. Các mẫu này là ý tưởng tuyệt vời giúp tạo sơ yếu lý lịch của bạn."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "Xuất"
|
||||
@ -564,19 +617,19 @@ msgstr "Cuối cùng,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "Sửa chữa Chính tả và ngữ pháp"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "Kiểu Font"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "Kích thước Font"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "Phụ bộ Font"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "Biến thể Font"
|
||||
|
||||
@ -584,7 +637,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."
|
||||
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"
|
||||
msgstr "Quên"
|
||||
|
||||
@ -601,7 +654,7 @@ msgstr "Bạn quên mật khẩu?"
|
||||
msgid "Format"
|
||||
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?"
|
||||
msgstr "Tìm thấy lỗi hoặc có ý tưởng tính năng mới?"
|
||||
|
||||
@ -609,12 +662,12 @@ msgstr "Tìm thấy lỗi hoặc có ý tưởng tính năng mới?"
|
||||
msgid "Free, forever"
|
||||
msgstr "Miễn phí mãi mãi"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:121
|
||||
#: apps/client/src/components/ai-actions.tsx:124
|
||||
#: apps/client/src/components/ai-actions.tsx:125
|
||||
#: apps/client/src/components/ai-actions.tsx:128
|
||||
msgid "Friendly"
|
||||
msgstr "Thân thiện"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:56
|
||||
msgid "Full Name"
|
||||
msgstr "Họ và tên"
|
||||
|
||||
@ -643,6 +696,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"
|
||||
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
|
||||
msgid "Google"
|
||||
msgstr "Google"
|
||||
@ -651,11 +708,11 @@ msgstr "Google"
|
||||
msgid "Grayscale"
|
||||
msgstr "Thang độ xám"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||
msgid "Grid"
|
||||
msgstr "Lưới"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:70
|
||||
msgid "Headline"
|
||||
msgstr "Tiêu đề"
|
||||
|
||||
@ -668,7 +725,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."
|
||||
|
||||
#: 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
|
||||
msgid "Hidden"
|
||||
msgstr "Ẩn"
|
||||
@ -677,7 +734,7 @@ msgstr "Ẩn"
|
||||
msgid "Hide"
|
||||
msgstr "Ẩn đi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "Ẩn biểu tượng"
|
||||
|
||||
@ -734,7 +791,7 @@ msgstr "Cải thiện khả năng viết"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "Trong trường hợp bạn không thể quét Mã QR này, bạn cũng có thể sao chép-dán liên kết này vào ứng dụng xác thực của mình."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "Trong phần này, bạn có thể thay đổi mật khẩu và bật/tắt xác thực hai yếu tố."
|
||||
|
||||
@ -743,7 +800,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>."
|
||||
|
||||
#: 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"
|
||||
msgstr "Thông tin"
|
||||
|
||||
@ -802,10 +860,10 @@ msgstr "john.doe@example.com"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||
msgid "Keywords"
|
||||
msgstr "Từ khóa"
|
||||
|
||||
@ -824,7 +882,8 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "Cập nhật lần cuối {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx: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"
|
||||
msgstr "Bố cục"
|
||||
|
||||
@ -837,7 +896,7 @@ msgid "Letter"
|
||||
msgstr "Chữ cái"
|
||||
|
||||
#: 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"
|
||||
msgstr "Cấp độ"
|
||||
|
||||
@ -853,7 +912,7 @@ msgstr "Sáng"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "Chủ đề sáng hoặc tối"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "Chiều cao giữa các dòng"
|
||||
|
||||
@ -862,14 +921,14 @@ msgstr "Chiều cao giữa các dòng"
|
||||
msgid "LinkedIn, JSON Resume, etc."
|
||||
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"
|
||||
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/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:120
|
||||
msgid "Location"
|
||||
msgstr "Vị trí"
|
||||
|
||||
@ -897,7 +956,7 @@ msgstr "Đăng xuất"
|
||||
msgid "Lost your device?"
|
||||
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"
|
||||
msgstr "Chính"
|
||||
|
||||
@ -914,7 +973,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/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
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "03/2023 - Hiện tại"
|
||||
@ -923,26 +982,26 @@ msgstr "03/2023 - Hiện tại"
|
||||
msgid "Margin"
|
||||
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"
|
||||
msgstr ""
|
||||
msgstr "Số lượng token tối đa"
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:48
|
||||
msgid "MIT License"
|
||||
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"
|
||||
msgstr ""
|
||||
msgstr "Mô hình"
|
||||
|
||||
#: 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/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: 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/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/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/dashboard/settings/_sections/account.tsx:153
|
||||
msgid "Name"
|
||||
@ -957,7 +1016,7 @@ msgstr "Tên"
|
||||
msgid "Network"
|
||||
msgstr "Mạng"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "Mật khẩu mới"
|
||||
|
||||
@ -974,6 +1033,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "Lưu ý: Điều này sẽ làm cho tài khoản của bạn ít an toàn hơn."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "Ghi chú"
|
||||
@ -1009,16 +1069,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"
|
||||
msgstr "Tích hợp OpenAI"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
||||
msgid "OpenAI/Ollama API Key"
|
||||
msgstr ""
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:120
|
||||
msgid "OpenAI/Azure OpenAI/Ollama Integration"
|
||||
msgstr "Tích hợp OpenAI/Azure OpenAI/Ollama"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:79
|
||||
msgid "OpenAI/Ollama Integration"
|
||||
msgstr ""
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:169
|
||||
msgid "OpenAI/Ollama API Key"
|
||||
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/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "Tùy chọn"
|
||||
|
||||
@ -1032,22 +1092,23 @@ msgid "Organization"
|
||||
msgstr "Tổ chức"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "Trang"
|
||||
|
||||
#: 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}"
|
||||
msgstr ""
|
||||
msgstr "Trang {pageNumber}"
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "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"
|
||||
msgstr "PDF"
|
||||
|
||||
@ -1055,7 +1116,7 @@ msgstr "PDF"
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr "Ghi chú cá nhân cho mỗi sơ yếu lý lịch"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:108
|
||||
msgid "Phone"
|
||||
msgstr "Điện thoại"
|
||||
|
||||
@ -1109,14 +1170,12 @@ msgstr "Được hỗ trợ bởi <0>Simple Icons</0>"
|
||||
msgid "Primary Color"
|
||||
msgstr "Màu chủ đạo"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||
msgid "Privacy Policy"
|
||||
msgstr "Chính sách Bảo mật"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
#: apps/client/src/components/ai-actions.tsx:113
|
||||
#: apps/client/src/components/ai-actions.tsx:116
|
||||
msgid "Professional"
|
||||
msgstr "Chuyên nghiệp"
|
||||
|
||||
@ -1132,7 +1191,7 @@ msgstr "Công khai"
|
||||
msgid "Publisher"
|
||||
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"
|
||||
msgstr "Đưa ra một vấn đề"
|
||||
|
||||
@ -1144,11 +1203,10 @@ msgstr "Đưa ra một vấn đề"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1175,12 +1233,12 @@ msgstr "Reactive Resume phát triển mạnh nhờ cộng đồng sôi động.
|
||||
msgid "Redo"
|
||||
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
|
||||
msgid "Remove"
|
||||
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"
|
||||
msgstr "Xóa trang"
|
||||
|
||||
@ -1199,7 +1257,7 @@ msgstr "Gửi lại email xác minh"
|
||||
msgid "Reset"
|
||||
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"
|
||||
msgstr "Đặt lại bố cục"
|
||||
|
||||
@ -1213,8 +1271,8 @@ msgid "Reset Zoom"
|
||||
msgstr "Đặt lại thu phóng"
|
||||
|
||||
#: 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:37
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||
msgid "Resumes"
|
||||
msgstr "Sơ yếu lý lịch"
|
||||
|
||||
@ -1237,13 +1295,13 @@ msgstr "Làm tròn"
|
||||
msgid "Save Changes"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
msgstr "Đã lưu"
|
||||
|
||||
#: 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."
|
||||
@ -1256,21 +1314,21 @@ msgstr "Điểm"
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:104
|
||||
msgid "Scroll to Pan"
|
||||
msgstr ""
|
||||
msgstr "Cuộn để di chuyển"
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:104
|
||||
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"
|
||||
msgstr "Tìm kiếm font chữ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "Tìm kiếm phụ bộ font"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Tìm kiếm biến thể font"
|
||||
|
||||
@ -1282,7 +1340,7 @@ msgstr "Tìm kiếm ngôn ngữ"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "Bảo mật với xác thực hai yếu tố"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "Bảo mật"
|
||||
|
||||
@ -1294,7 +1352,7 @@ msgstr "Tự dựng với Docker"
|
||||
msgid "Send 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"
|
||||
msgstr "Gửi tin nhắn cho tôi"
|
||||
|
||||
@ -1314,6 +1372,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "Thiết lập xác thực hai yếu tố trên tài khoản của bạn"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "Chia sẻ"
|
||||
@ -1330,7 +1389,7 @@ msgstr "Hiển thị đường ngắt"
|
||||
msgid "Show Page Numbers"
|
||||
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"
|
||||
msgstr "Thanh bên"
|
||||
|
||||
@ -1408,6 +1467,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "Bắt đầu xây dựng hồ sơ của bạn bằng cách đặt tên cho nó."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "Thống kê"
|
||||
@ -1422,17 +1482,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/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/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/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "Summary"
|
||||
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!"
|
||||
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 +1504,20 @@ msgstr "Ủng hộ Reactive Resume"
|
||||
msgid "Supports A4/Letter page formats"
|
||||
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
|
||||
msgid "System"
|
||||
msgstr "Hệ thống"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "Mẫu"
|
||||
@ -1465,15 +1534,20 @@ msgstr "Lời nhận xét"
|
||||
msgid "Text Color"
|
||||
msgstr "Màu chữ"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "Mật khẩu bạn đã nhập không khớp."
|
||||
#: apps/client/src/pages/public/error.tsx:17
|
||||
msgid "The page you're looking for doesn't exist."
|
||||
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
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "Sơ yếu lý lịch bạn muốn cập nhật đã bị khóa, vui lòng mở khóa nếu bạn muốn thực hiện bất kỳ thay đổi nào đối với nó."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1604,7 @@ msgstr "Theo dõi lượt xem và lượt tải xuống"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "Xác thực hai yếu tố"
|
||||
|
||||
@ -1552,11 +1626,12 @@ msgid "Type of Study"
|
||||
msgstr "Bằng cấp"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "Kiểu chữ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "Gạch chân Liên kết"
|
||||
|
||||
@ -1599,6 +1674,14 @@ msgstr "URL"
|
||||
msgid "URL must start with 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:57
|
||||
msgid "Use your backup code"
|
||||
@ -1651,13 +1734,13 @@ msgstr "Phiên bản 4"
|
||||
msgid "Views"
|
||||
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"
|
||||
msgstr "Hiện"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:70
|
||||
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
|
||||
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,15 +1748,15 @@ 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/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/experience.tsx:100
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:96
|
||||
msgid "Website"
|
||||
msgstr "Trang web"
|
||||
|
||||
@ -1681,10 +1764,14 @@ msgstr "Trang web"
|
||||
msgid "What's new in the latest version"
|
||||
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/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
||||
#: apps/client/src/pages/public/error.tsx:26
|
||||
msgid "You are not authorized to access this page."
|
||||
msgstr "Bạn không được phép truy cập trang này."
|
||||
|
||||
#: 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."
|
||||
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 +1779,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."
|
||||
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
|
||||
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."
|
||||
msgstr ""
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||
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 "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
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
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."
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||
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ũ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
|
||||
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."
|
||||
|
||||
#: 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."
|
||||
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 +1816,7 @@ msgstr "Bạn vừa nhận thư!"
|
||||
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!"
|
||||
|
||||
#: 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."
|
||||
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 +1828,7 @@ msgstr "Địa chỉ email của bạn đã được xác minh thành công."
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "Key API OpenAI của bạn chưa được đặt. Vui lòng đi tới cài đặt tài khoản của bạn để bật Tích hợp OpenAI."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "Mật khẩu của bạn đã được cập nhật thành công."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: zh\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-01-17 21:32\n"
|
||||
"PO-Revision-Date: 2025-11-04 14:22\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Chinese Traditional\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
@ -30,27 +30,27 @@ msgstr "{templatesCount} 個履歷範本可以選擇"
|
||||
msgid "{value, plural, one {Column} other {Columns}}"
|
||||
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>"
|
||||
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>"
|
||||
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."
|
||||
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>"
|
||||
msgstr "<0>社群花了大量時間編寫 Reactive Resume 的文檔,我相信它將幫助您開始使用該應用程式。</0> <1>還有很多範例可以幫助您入門,以及您可能不知道的功能可以幫助您建立完美的履歷。</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:140
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>目前已停用雙因子驗證。</0> 您可以透過驗證器應用程式的新增來啟用它。"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:133
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr "<0>已啟用雙因子驗證。</0>每次登入時,系統都會要求您輸入驗證碼。"
|
||||
|
||||
@ -102,8 +102,8 @@ msgstr "帳號"
|
||||
msgid "Add a custom field"
|
||||
msgstr "新增自訂欄位"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:120
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:171
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:203
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr "新增項目"
|
||||
@ -112,12 +112,12 @@ msgstr "新增項目"
|
||||
msgid "Add a new item"
|
||||
msgstr "新增項目"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:263
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:267
|
||||
msgid "Add a new section"
|
||||
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"
|
||||
msgstr "新增頁面"
|
||||
|
||||
@ -133,6 +133,14 @@ msgstr "已經有一個帳戶?"
|
||||
msgid "An error occurred while validating the file."
|
||||
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
|
||||
msgid "and many more..."
|
||||
msgstr "還有很多..."
|
||||
@ -191,6 +199,18 @@ msgstr "{languagesCount} 種語言可用"
|
||||
msgid "Awarder"
|
||||
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/forgot-password/page.tsx:100
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:243
|
||||
@ -209,16 +229,16 @@ msgstr "備份代碼"
|
||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||
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"
|
||||
msgstr "網站網址:"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:58
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
msgid "Basics"
|
||||
msgstr "基本資料"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
msgid "Basics"
|
||||
msgstr "基本資料"
|
||||
|
||||
@ -246,8 +266,8 @@ msgstr "來自社區,服務社區。"
|
||||
msgid "Cancel"
|
||||
msgstr "取消"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
#: apps/client/src/components/ai-actions.tsx:107
|
||||
#: apps/client/src/components/ai-actions.tsx:110
|
||||
msgid "Casual"
|
||||
msgstr "休閒"
|
||||
|
||||
@ -255,12 +275,16 @@ msgstr "休閒"
|
||||
msgid "Center Artboard"
|
||||
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/dashboard/settings/_sections/security.tsx:121
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:115
|
||||
msgid "Change Password"
|
||||
msgstr "更改密碼"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
#: apps/client/src/components/ai-actions.tsx:101
|
||||
msgid "Change Tone"
|
||||
msgstr "改變音調"
|
||||
|
||||
@ -288,6 +312,16 @@ msgstr "驗證碼"
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr "驗證碼必須是 6 位數字。"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:272
|
||||
msgid "Collapse All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Collapse section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:136
|
||||
msgid "Columns"
|
||||
msgstr "欄"
|
||||
@ -296,21 +330,17 @@ msgstr "欄"
|
||||
msgid "Company"
|
||||
msgstr "公司"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
#: apps/client/src/components/ai-actions.tsx:119
|
||||
#: apps/client/src/components/ai-actions.tsx:122
|
||||
msgid "Confident"
|
||||
msgstr "自信"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr "確認新密碼"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:234
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:246
|
||||
msgid "Continue"
|
||||
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"
|
||||
msgstr "複製"
|
||||
|
||||
@ -351,7 +381,12 @@ msgstr "立即建立"
|
||||
msgid "Create Sample Resume"
|
||||
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/sections/css.tsx:27
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/css.tsx:28
|
||||
msgid "Custom CSS"
|
||||
msgstr "自訂 CSS"
|
||||
@ -360,7 +395,7 @@ msgstr "自訂 CSS"
|
||||
msgid "Custom resume sections"
|
||||
msgstr "自訂簡歷部分"
|
||||
|
||||
#: apps/client/src/stores/resume.ts:47
|
||||
#: apps/client/src/stores/resume.ts:53
|
||||
msgid "Custom Section"
|
||||
msgstr "客製化部分"
|
||||
|
||||
@ -386,10 +421,10 @@ msgstr "暗色"
|
||||
msgid "Date"
|
||||
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/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
|
||||
msgid "Date or Date Range"
|
||||
msgstr "日期或日期範圍"
|
||||
@ -407,11 +442,15 @@ msgstr "刪除"
|
||||
msgid "Delete Account"
|
||||
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/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/skills.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:84
|
||||
msgid "Description"
|
||||
msgstr "詳細資訊"
|
||||
|
||||
@ -423,18 +462,18 @@ msgstr "設計單頁/多頁履歷表"
|
||||
msgid "Disable"
|
||||
msgstr "停用"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:160
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:154
|
||||
msgid "Disable 2FA"
|
||||
msgstr "停用雙因子驗證(2FA)"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:220
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:134
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:118
|
||||
msgid "Discard"
|
||||
msgstr "放棄"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:105
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr "文件"
|
||||
|
||||
@ -442,7 +481,7 @@ msgstr "文件"
|
||||
msgid "Don't have an account?"
|
||||
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!"
|
||||
msgstr "不知道從何著手?點擊文件!"
|
||||
|
||||
@ -450,7 +489,7 @@ msgstr "不知道從何著手?點擊文件!"
|
||||
msgid "Don't see your language? <0>Help translate the app.</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"
|
||||
msgstr "捐助 Reactive Resume"
|
||||
|
||||
@ -458,12 +497,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."
|
||||
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."
|
||||
msgstr "下載 PDF 簡歷。此檔案可用於列印您的履歷、傳送給招募人員或上傳至就業入口網站。"
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:176
|
||||
#: apps/client/src/pages/public/page.tsx:105
|
||||
msgid "Download PDF"
|
||||
msgstr "下載 PDF"
|
||||
|
||||
@ -487,7 +525,7 @@ msgstr "複製現有項目"
|
||||
msgid "Duplicate an existing resume"
|
||||
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"
|
||||
msgstr "編輯"
|
||||
|
||||
@ -498,12 +536,12 @@ msgstr "效果"
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:90
|
||||
#: apps/client/src/pages/auth/register/page.tsx:141
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:181
|
||||
msgid "Email"
|
||||
msgstr "電子郵件"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:169
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:163
|
||||
msgid "Enable 2FA"
|
||||
msgstr "啟用雙因子驗證"
|
||||
|
||||
@ -531,6 +569,10 @@ msgstr "在下面輸入您的身份驗證器應用程式提供的一次性密碼
|
||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||
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
|
||||
msgid "Errors"
|
||||
msgstr "錯誤"
|
||||
@ -539,11 +581,22 @@ msgstr "錯誤"
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr "即使您無法做出財務貢獻,您仍然可以透過為 GitHub 儲存庫加一顆星、向您的朋友傳播訊息或快速留言讓我知道 Reactive Resume 如何幫助您來發揮作用。我們始終歡迎並非常感謝您的回饋和支持!"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:271
|
||||
msgid "Expand All"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:30
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/summary.tsx:33
|
||||
msgid "Expand section"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "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 "探索反應式履歷中提供的範本並查看用它們製作的履歷。它們還可以作為範例來幫助指導您下一份簡歷的創建。"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40
|
||||
msgid "Export"
|
||||
msgstr "導出"
|
||||
@ -564,19 +617,19 @@ msgstr "最後,"
|
||||
msgid "Fix Spelling & Grammar"
|
||||
msgstr "修正拼字和語法"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:107
|
||||
msgid "Font Family"
|
||||
msgstr "字體"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:148
|
||||
msgid "Font Size"
|
||||
msgstr "字體大小"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:122
|
||||
msgid "Font Subset"
|
||||
msgstr "字體子集"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:134
|
||||
msgid "Font Variants"
|
||||
msgstr "字型變體"
|
||||
|
||||
@ -584,7 +637,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."
|
||||
msgstr "例如,您將這份履歷寄給哪些公司的相關資訊,或是工作說明的連結,都可以在這裡記下來。"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:280
|
||||
msgid "Forget"
|
||||
msgstr "略過"
|
||||
|
||||
@ -601,7 +654,7 @@ msgstr "忘記密碼?"
|
||||
msgid "Format"
|
||||
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?"
|
||||
msgstr "發現錯誤或有新功能的想法?"
|
||||
|
||||
@ -609,12 +662,12 @@ msgstr "發現錯誤或有新功能的想法?"
|
||||
msgid "Free, forever"
|
||||
msgstr "永久免費"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:121
|
||||
#: apps/client/src/components/ai-actions.tsx:124
|
||||
#: apps/client/src/components/ai-actions.tsx:125
|
||||
#: apps/client/src/components/ai-actions.tsx:128
|
||||
msgid "Friendly"
|
||||
msgstr "友善"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:56
|
||||
msgid "Full Name"
|
||||
msgstr "全名"
|
||||
|
||||
@ -643,6 +696,10 @@ msgstr "為您的舊履歷起個新名字。"
|
||||
msgid "Go to Dashboard"
|
||||
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
|
||||
msgid "Google"
|
||||
msgstr "Google"
|
||||
@ -651,11 +708,11 @@ msgstr "Google"
|
||||
msgid "Grayscale"
|
||||
msgstr "灰階"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:43
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||
msgid "Grid"
|
||||
msgstr "網格"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:43
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:70
|
||||
msgid "Headline"
|
||||
msgstr "標題"
|
||||
|
||||
@ -668,7 +725,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr "在這裡,您可以更新個人資料,根據個人喜好定制和個人化使用體驗。"
|
||||
|
||||
#: 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
|
||||
msgid "Hidden"
|
||||
msgstr "隱藏"
|
||||
@ -677,7 +734,7 @@ msgstr "隱藏"
|
||||
msgid "Hide"
|
||||
msgstr "隱藏"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:192
|
||||
msgid "Hide Icons"
|
||||
msgstr "隱藏圖示"
|
||||
|
||||
@ -734,7 +791,7 @@ msgstr "改善寫作"
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr "如果您無法掃描此 QR 代碼,也可以將此連結複製貼到您的驗證器應用程式中。"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:67
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr "在這部份,您可以變更密碼和啟用/停用雙因子驗證。"
|
||||
|
||||
@ -743,7 +800,8 @@ msgid "In this section, you can delete your account and all the data associated
|
||||
msgstr "在這部分,您可以刪除您的帳戶以及與您的使用者相關的所有資料,但請記住 <0>此動作是不可逆的</0>。"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx: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"
|
||||
msgstr "詳細資訊"
|
||||
|
||||
@ -802,10 +860,10 @@ msgstr "john.doe@example.com"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:181
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:84
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:130
|
||||
msgid "Keywords"
|
||||
msgstr "關鍵詞"
|
||||
|
||||
@ -824,7 +882,8 @@ msgid "Last updated {lastUpdated}"
|
||||
msgstr "最後更新 {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx: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"
|
||||
msgstr "版面配置"
|
||||
|
||||
@ -837,7 +896,7 @@ msgid "Letter"
|
||||
msgstr "信件"
|
||||
|
||||
#: 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"
|
||||
msgstr "等級"
|
||||
|
||||
@ -853,7 +912,7 @@ msgstr "亮色"
|
||||
msgid "Light or dark theme"
|
||||
msgstr "亮色或暗色主題"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:165
|
||||
msgid "Line Height"
|
||||
msgstr "線條高度"
|
||||
|
||||
@ -862,14 +921,14 @@ msgstr "線條高度"
|
||||
msgid "LinkedIn, JSON Resume, etc."
|
||||
msgstr "LinkedIn、JSON Resume 等。"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:47
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:49
|
||||
msgid "List"
|
||||
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/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:93
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:120
|
||||
msgid "Location"
|
||||
msgstr "地點"
|
||||
|
||||
@ -897,7 +956,7 @@ msgstr "登出"
|
||||
msgid "Lost your device?"
|
||||
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"
|
||||
msgstr "主要"
|
||||
|
||||
@ -914,7 +973,7 @@ msgstr "2023 年 3 月"
|
||||
|
||||
#: 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/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
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "2023 年 3 月至今"
|
||||
@ -923,7 +982,7 @@ msgstr "2023 年 3 月至今"
|
||||
msgid "Margin"
|
||||
msgstr "邊界"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:218
|
||||
msgid "Max Tokens"
|
||||
msgstr "最大 Token"
|
||||
|
||||
@ -931,18 +990,18 @@ msgstr "最大 Token"
|
||||
msgid "MIT License"
|
||||
msgstr "MIT 授權"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:205
|
||||
msgid "Model"
|
||||
msgstr "模型"
|
||||
|
||||
#: 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/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: 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/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/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/dashboard/settings/_sections/account.tsx:153
|
||||
msgid "Name"
|
||||
@ -957,7 +1016,7 @@ msgstr "名稱"
|
||||
msgid "Network"
|
||||
msgstr "網路"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:96
|
||||
msgid "New Password"
|
||||
msgstr "新密碼"
|
||||
|
||||
@ -974,6 +1033,7 @@ msgid "Note: This will make your account less secure."
|
||||
msgstr "注意:這會降低您帳戶的安全性。"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:128
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:16
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17
|
||||
msgid "Notes"
|
||||
msgstr "注意事項"
|
||||
@ -1009,16 +1069,16 @@ msgstr "OpenAI 沒有為您的文字傳回任何選項。"
|
||||
msgid "OpenAI Integration"
|
||||
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"
|
||||
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/typography.tsx:169
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:182
|
||||
msgid "Options"
|
||||
msgstr "選項"
|
||||
|
||||
@ -1032,22 +1092,23 @@ msgid "Organization"
|
||||
msgstr "組織"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:25
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26
|
||||
msgid "Page"
|
||||
msgstr "頁"
|
||||
|
||||
#: 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}"
|
||||
msgstr "頁面 {pageNumber}"
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:110
|
||||
#: apps/client/src/pages/auth/register/page.tsx:163
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:83
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:73
|
||||
msgid "Password"
|
||||
msgstr "密碼"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:76
|
||||
msgid "PDF"
|
||||
msgstr "PDF"
|
||||
|
||||
@ -1055,7 +1116,7 @@ msgstr "PDF"
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr "每份履歷的個人備註"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:108
|
||||
msgid "Phone"
|
||||
msgstr "電話"
|
||||
|
||||
@ -1109,14 +1170,12 @@ msgstr "由 <0> 圖標</0> 提供"
|
||||
msgid "Primary Color"
|
||||
msgstr "主要顏色"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:50
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:23
|
||||
#: apps/client/src/pages/home/components/footer.tsx:47
|
||||
msgid "Privacy Policy"
|
||||
msgstr "隱私政策"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
#: apps/client/src/components/ai-actions.tsx:113
|
||||
#: apps/client/src/components/ai-actions.tsx:116
|
||||
msgid "Professional"
|
||||
msgstr "專業"
|
||||
|
||||
@ -1132,7 +1191,7 @@ msgstr "公開"
|
||||
msgid "Publisher"
|
||||
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"
|
||||
msgstr "提出問題"
|
||||
|
||||
@ -1144,11 +1203,10 @@ msgstr "提出問題"
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:60
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/builder/page.tsx:44
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:20
|
||||
#: apps/client/src/pages/builder/page.tsx:60
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/settings/page.tsx:16
|
||||
#: apps/client/src/pages/home/components/footer.tsx:18
|
||||
#: apps/client/src/pages/home/meta/privacy-policy/page.tsx:10
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/public/page.tsx:74
|
||||
#: apps/client/src/pages/public/page.tsx:95
|
||||
@ -1175,12 +1233,12 @@ msgstr "Reactive Resume 的茁壯成長有賴於其充滿活力的社群。這
|
||||
msgid "Redo"
|
||||
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
|
||||
msgid "Remove"
|
||||
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"
|
||||
msgstr "刪除頁面"
|
||||
|
||||
@ -1199,7 +1257,7 @@ msgstr "重新傳送電子郵件確認連結"
|
||||
msgid "Reset"
|
||||
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"
|
||||
msgstr "重設版面配置"
|
||||
|
||||
@ -1213,8 +1271,8 @@ msgid "Reset Zoom"
|
||||
msgstr "重設縮放"
|
||||
|
||||
#: 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:37
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:22
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:39
|
||||
msgid "Resumes"
|
||||
msgstr "履歷表"
|
||||
|
||||
@ -1237,11 +1295,11 @@ msgstr "圓角"
|
||||
msgid "Save Changes"
|
||||
msgstr "儲存變更"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||
msgid "Save Locally"
|
||||
msgstr "儲存至本機"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:274
|
||||
msgid "Saved"
|
||||
msgstr "已儲存"
|
||||
|
||||
@ -1262,15 +1320,15 @@ msgstr "捲動到平移"
|
||||
msgid "Scroll to Zoom"
|
||||
msgstr "捲動縮放"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:111
|
||||
msgid "Search for a font family"
|
||||
msgstr "搜尋字型系列"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
msgid "Search for a font subset"
|
||||
msgstr "搜尋字型的部分字元集合"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:139
|
||||
msgid "Search for a font variant"
|
||||
msgstr "搜尋字型變體"
|
||||
|
||||
@ -1282,7 +1340,7 @@ msgstr "搜尋語言"
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr "透過雙因子驗證確保安全"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:65
|
||||
msgid "Security"
|
||||
msgstr "安全性"
|
||||
|
||||
@ -1294,7 +1352,7 @@ msgstr "使用 Docker 自行託管"
|
||||
msgid "Send Email"
|
||||
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"
|
||||
msgstr "傳送訊息給我"
|
||||
|
||||
@ -1314,6 +1372,7 @@ msgid "Setup two-factor authentication on your account"
|
||||
msgstr "在您的帳戶上設定雙因子驗證"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:107
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:38
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39
|
||||
msgid "Sharing"
|
||||
msgstr "分享"
|
||||
@ -1330,7 +1389,7 @@ msgstr "顯示分隔線"
|
||||
msgid "Show Page Numbers"
|
||||
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"
|
||||
msgstr "側邊欄"
|
||||
|
||||
@ -1408,6 +1467,7 @@ msgid "Start building your resume by giving it a name."
|
||||
msgstr "為您的履歷命名,開始建立您的履歷。"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:22
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
msgid "Statistics"
|
||||
msgstr "統計資料"
|
||||
@ -1422,17 +1482,17 @@ msgstr "安全儲存您的備份代碼"
|
||||
|
||||
#: 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/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/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/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "Summary"
|
||||
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!"
|
||||
msgstr "請盡您所能捐款支持此應用程式!"
|
||||
|
||||
@ -1444,11 +1504,20 @@ msgstr "支持 Reactive Resume"
|
||||
msgid "Supports A4/Letter page formats"
|
||||
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
|
||||
msgid "System"
|
||||
msgstr "系統"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:18
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19
|
||||
msgid "Template"
|
||||
msgstr "範本"
|
||||
@ -1465,15 +1534,20 @@ msgstr "用戶評價"
|
||||
msgid "Text Color"
|
||||
msgstr "字型色彩"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr "您輸入的密碼不符。"
|
||||
#: apps/client/src/pages/public/error.tsx:17
|
||||
msgid "The page you're looking for doesn't exist."
|
||||
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
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr "您要更新的履歷已鎖定,若要對其進行任何變更,請解除鎖定。"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:19
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:79
|
||||
msgid "Theme"
|
||||
@ -1530,7 +1604,7 @@ msgstr "追蹤檢視與下載"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:129
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr "雙因子驗證"
|
||||
|
||||
@ -1552,11 +1626,12 @@ msgid "Type of Study"
|
||||
msgstr "研究類型"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:77
|
||||
msgid "Typography"
|
||||
msgstr "字體樣式"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:203
|
||||
msgid "Underline Links"
|
||||
msgstr "底線超連結"
|
||||
|
||||
@ -1599,6 +1674,14 @@ msgstr "URL"
|
||||
msgid "URL must start with 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:57
|
||||
msgid "Use your backup code"
|
||||
@ -1651,7 +1734,7 @@ msgstr "版本 4"
|
||||
msgid "Views"
|
||||
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"
|
||||
msgstr "可見的"
|
||||
|
||||
@ -1665,15 +1748,15 @@ msgstr "我們驗證您的電子郵件地址,只是為了確保您忘記密碼
|
||||
|
||||
#: 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/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/experience.tsx:100
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:96
|
||||
msgid "Website"
|
||||
msgstr "個人網站"
|
||||
|
||||
@ -1681,10 +1764,14 @@ msgstr "個人網站"
|
||||
msgid "What's new in the latest version"
|
||||
msgstr "最新版本的新功能"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:164
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:143
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:114
|
||||
#: apps/client/src/pages/public/error.tsx:26
|
||||
msgid "You are not authorized to access this page."
|
||||
msgstr "No estás autorizado para acceder a esta página。"
|
||||
|
||||
#: 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."
|
||||
msgstr "你可以使用逗號或Enter鍵隔開,新增多個關鍵詞。"
|
||||
|
||||
@ -1692,19 +1779,27 @@ msgstr "你可以使用逗號或Enter鍵隔開,新增多個關鍵詞。"
|
||||
msgid "You can also enter your username."
|
||||
msgstr "您也可以輸入您的使用者名稱。"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||
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."
|
||||
msgstr "您也可以與 Ollama 整合,只要將 API key 設定為「sk-1234567890abcdef」,並將 Base URL 設定為您的 Ollama URL,即「http://localhost:11434/v1」。您也可以依您的喜好挑選模型並設定最大的 tokens。"
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:144
|
||||
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 "您也可以與 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
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
msgstr "您可以利用 OpenAI API 協助您生成內容,或在撰寫履歷時改善您的文筆。"
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:153
|
||||
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 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
|
||||
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 "您可以追蹤履歷的檢視次數,或透過啟用公開分享功能追蹤有多少人下載了履歷。"
|
||||
|
||||
#: 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."
|
||||
msgstr "您可以選擇 <0>取得自己的 OpenAI API 金鑰</0> 。此金鑰可讓您隨心所欲地使用 API。或者,如果您想要完全停用 Reactive Resume 中的 AI 功能,您可以直接從設定中移除金鑰。"
|
||||
|
||||
@ -1721,7 +1816,7 @@ msgstr "你有新郵件"
|
||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||
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."
|
||||
msgstr "您的 API 密鑰會安全地儲存在瀏覽器的本機儲存空間中,並且僅會在透過官方 SDK 向 OpenAI 提出請求時使用。請放心,除了與 OpenAI 的服務互動時,您的金鑰不會傳送到任何外部伺服器。"
|
||||
|
||||
@ -1733,7 +1828,7 @@ msgstr "您的電子郵件地址已成功驗證。"
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr "您的 OpenAI API 密鑰尚未設定。請前往您的帳戶設定啟用 OpenAI 整合。"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:56
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr "您的密碼已成功更新。"
|
||||
|
||||
|
||||