mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-10 12:32:28 +10:00
fix: handle edge case to display LinkedIn logo when used in Profiles
This commit is contained in:
6
.github/workflows/publish-docker-image.yml
vendored
6
.github/workflows/publish-docker-image.yml
vendored
@ -152,7 +152,11 @@ jobs:
|
|||||||
username: ${{ secrets.DOCKER_USERNAME }}
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
password: ${{ secrets.DOCKER_TOKEN }}
|
password: ${{ secrets.DOCKER_TOKEN }}
|
||||||
|
|
||||||
- uses: sarisia/actions-status-discord@v1.14.3
|
- name: Deploy the latest image on rxresu.me
|
||||||
|
run: curl -X POST ${{ secrets.SERVICE_WEBHOOK }}
|
||||||
|
|
||||||
|
- name: Inform about the release on Discord
|
||||||
|
uses: sarisia/actions-status-discord@v1.14.3
|
||||||
if: always()
|
if: always()
|
||||||
with:
|
with:
|
||||||
username: ReleaseBot
|
username: ReleaseBot
|
||||||
|
|||||||
@ -40,5 +40,12 @@
|
|||||||
|
|
||||||
<!-- Phosphor Icons -->
|
<!-- Phosphor Icons -->
|
||||||
<script src="https://unpkg.com/@phosphor-icons/web"></script>
|
<script src="https://unpkg.com/@phosphor-icons/web"></script>
|
||||||
|
|
||||||
|
<!-- Simple Icons -->
|
||||||
|
<link
|
||||||
|
type="text/css"
|
||||||
|
rel="stylesheet"
|
||||||
|
href="https://unpkg.com/simple-icons-font@v14/font/simple-icons.min.css"
|
||||||
|
/>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
19
apps/artboard/src/components/brand-icon.tsx
Normal file
19
apps/artboard/src/components/brand-icon.tsx
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
import { cn } from "@reactive-resume/utils";
|
||||||
|
|
||||||
|
type BrandIconProps = {
|
||||||
|
slug: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const BrandIcon = ({ slug }: BrandIconProps) => {
|
||||||
|
if (slug === "linkedin") {
|
||||||
|
return (
|
||||||
|
<img
|
||||||
|
alt="LinkedIn"
|
||||||
|
className="size-4"
|
||||||
|
src={`${window.location.origin}/support-logos/linkedin.svg`}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return <i className={cn("si si--color text-[1rem]", `si-${slug}`)} />;
|
||||||
|
};
|
||||||
@ -21,6 +21,7 @@ import { cn, isEmptyString, isUrl, linearTransform } from "@reactive-resume/util
|
|||||||
import get from "lodash.get";
|
import get from "lodash.get";
|
||||||
import React, { Fragment } from "react";
|
import React, { Fragment } from "react";
|
||||||
|
|
||||||
|
import { BrandIcon } from "../components/brand-icon";
|
||||||
import { Picture } from "../components/picture";
|
import { Picture } from "../components/picture";
|
||||||
import { useArtboardStore } from "../store/artboard";
|
import { useArtboardStore } from "../store/artboard";
|
||||||
import { TemplateProps } from "../types/template";
|
import { TemplateProps } from "../types/template";
|
||||||
@ -247,26 +248,13 @@ const Section = <T,>({
|
|||||||
|
|
||||||
const Profiles = () => {
|
const Profiles = () => {
|
||||||
const section = useArtboardStore((state) => state.resume.sections.profiles);
|
const section = useArtboardStore((state) => state.resume.sections.profiles);
|
||||||
const fontSize = useArtboardStore((state) => state.resume.metadata.typography.font.size);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Section<Profile> section={section}>
|
<Section<Profile> section={section}>
|
||||||
{(item) => (
|
{(item) => (
|
||||||
<div>
|
<div>
|
||||||
{isUrl(item.url.href) ? (
|
{isUrl(item.url.href) ? (
|
||||||
<Link
|
<Link url={item.url} label={item.username} icon={<BrandIcon slug={item.icon} />} />
|
||||||
url={item.url}
|
|
||||||
label={item.username}
|
|
||||||
icon={
|
|
||||||
<img
|
|
||||||
className="ph"
|
|
||||||
width={fontSize}
|
|
||||||
height={fontSize}
|
|
||||||
alt={item.network}
|
|
||||||
src={`https://cdn.simpleicons.org/${item.icon}`}
|
|
||||||
/>
|
|
||||||
}
|
|
||||||
/>
|
|
||||||
) : (
|
) : (
|
||||||
<p>{item.username}</p>
|
<p>{item.username}</p>
|
||||||
)}
|
)}
|
||||||
|
|||||||
@ -21,6 +21,7 @@ import { cn, isEmptyString, isUrl } from "@reactive-resume/utils";
|
|||||||
import get from "lodash.get";
|
import get from "lodash.get";
|
||||||
import { Fragment } from "react";
|
import { Fragment } from "react";
|
||||||
|
|
||||||
|
import { BrandIcon } from "../components/brand-icon";
|
||||||
import { Picture } from "../components/picture";
|
import { Picture } from "../components/picture";
|
||||||
import { useArtboardStore } from "../store/artboard";
|
import { useArtboardStore } from "../store/artboard";
|
||||||
import { TemplateProps } from "../types/template";
|
import { TemplateProps } from "../types/template";
|
||||||
@ -224,26 +225,13 @@ const Section = <T,>({
|
|||||||
|
|
||||||
const Profiles = () => {
|
const Profiles = () => {
|
||||||
const section = useArtboardStore((state) => state.resume.sections.profiles);
|
const section = useArtboardStore((state) => state.resume.sections.profiles);
|
||||||
const fontSize = useArtboardStore((state) => state.resume.metadata.typography.font.size);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Section<Profile> section={section}>
|
<Section<Profile> section={section}>
|
||||||
{(item) => (
|
{(item) => (
|
||||||
<div>
|
<div>
|
||||||
{isUrl(item.url.href) ? (
|
{isUrl(item.url.href) ? (
|
||||||
<Link
|
<Link url={item.url} label={item.username} icon={<BrandIcon slug={item.icon} />} />
|
||||||
url={item.url}
|
|
||||||
label={item.username}
|
|
||||||
icon={
|
|
||||||
<img
|
|
||||||
className="ph"
|
|
||||||
width={fontSize}
|
|
||||||
height={fontSize}
|
|
||||||
alt={item.network}
|
|
||||||
src={`https://cdn.simpleicons.org/${item.icon}`}
|
|
||||||
/>
|
|
||||||
}
|
|
||||||
/>
|
|
||||||
) : (
|
) : (
|
||||||
<p>{item.username}</p>
|
<p>{item.username}</p>
|
||||||
)}
|
)}
|
||||||
|
|||||||
@ -21,6 +21,7 @@ import { cn, isEmptyString, isUrl } from "@reactive-resume/utils";
|
|||||||
import get from "lodash.get";
|
import get from "lodash.get";
|
||||||
import { Fragment } from "react";
|
import { Fragment } from "react";
|
||||||
|
|
||||||
|
import { BrandIcon } from "../components/brand-icon";
|
||||||
import { Picture } from "../components/picture";
|
import { Picture } from "../components/picture";
|
||||||
import { useArtboardStore } from "../store/artboard";
|
import { useArtboardStore } from "../store/artboard";
|
||||||
import { TemplateProps } from "../types/template";
|
import { TemplateProps } from "../types/template";
|
||||||
@ -280,26 +281,13 @@ const Education = () => {
|
|||||||
|
|
||||||
const Profiles = () => {
|
const Profiles = () => {
|
||||||
const section = useArtboardStore((state) => state.resume.sections.profiles);
|
const section = useArtboardStore((state) => state.resume.sections.profiles);
|
||||||
const fontSize = useArtboardStore((state) => state.resume.metadata.typography.font.size);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Section<Profile> section={section}>
|
<Section<Profile> section={section}>
|
||||||
{(item) => (
|
{(item) => (
|
||||||
<div>
|
<div>
|
||||||
{isUrl(item.url.href) ? (
|
{isUrl(item.url.href) ? (
|
||||||
<Link
|
<Link url={item.url} label={item.username} icon={<BrandIcon slug={item.icon} />} />
|
||||||
url={item.url}
|
|
||||||
label={item.username}
|
|
||||||
icon={
|
|
||||||
<img
|
|
||||||
className="ph"
|
|
||||||
width={fontSize}
|
|
||||||
height={fontSize}
|
|
||||||
alt={item.network}
|
|
||||||
src={`https://cdn.simpleicons.org/${item.icon}`}
|
|
||||||
/>
|
|
||||||
}
|
|
||||||
/>
|
|
||||||
) : (
|
) : (
|
||||||
<p>{item.username}</p>
|
<p>{item.username}</p>
|
||||||
)}
|
)}
|
||||||
|
|||||||
@ -21,6 +21,7 @@ import { cn, isEmptyString, isUrl } from "@reactive-resume/utils";
|
|||||||
import get from "lodash.get";
|
import get from "lodash.get";
|
||||||
import { Fragment } from "react";
|
import { Fragment } from "react";
|
||||||
|
|
||||||
|
import { BrandIcon } from "../components/brand-icon";
|
||||||
import { Picture } from "../components/picture";
|
import { Picture } from "../components/picture";
|
||||||
import { useArtboardStore } from "../store/artboard";
|
import { useArtboardStore } from "../store/artboard";
|
||||||
import { TemplateProps } from "../types/template";
|
import { TemplateProps } from "../types/template";
|
||||||
@ -251,26 +252,13 @@ const Section = <T,>({
|
|||||||
|
|
||||||
const Profiles = () => {
|
const Profiles = () => {
|
||||||
const section = useArtboardStore((state) => state.resume.sections.profiles);
|
const section = useArtboardStore((state) => state.resume.sections.profiles);
|
||||||
const fontSize = useArtboardStore((state) => state.resume.metadata.typography.font.size);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Section<Profile> section={section}>
|
<Section<Profile> section={section}>
|
||||||
{(item) => (
|
{(item) => (
|
||||||
<div>
|
<div>
|
||||||
{isUrl(item.url.href) ? (
|
{isUrl(item.url.href) ? (
|
||||||
<Link
|
<Link url={item.url} label={item.username} icon={<BrandIcon slug={item.icon} />} />
|
||||||
url={item.url}
|
|
||||||
label={item.username}
|
|
||||||
icon={
|
|
||||||
<img
|
|
||||||
className="ph"
|
|
||||||
width={fontSize}
|
|
||||||
height={fontSize}
|
|
||||||
alt={item.network}
|
|
||||||
src={`https://cdn.simpleicons.org/${item.icon}`}
|
|
||||||
/>
|
|
||||||
}
|
|
||||||
/>
|
|
||||||
) : (
|
) : (
|
||||||
<p>{item.username}</p>
|
<p>{item.username}</p>
|
||||||
)}
|
)}
|
||||||
|
|||||||
@ -21,6 +21,7 @@ import { cn, hexToRgb, isEmptyString, isUrl } from "@reactive-resume/utils";
|
|||||||
import get from "lodash.get";
|
import get from "lodash.get";
|
||||||
import { Fragment } from "react";
|
import { Fragment } from "react";
|
||||||
|
|
||||||
|
import { BrandIcon } from "../components/brand-icon";
|
||||||
import { Picture } from "../components/picture";
|
import { Picture } from "../components/picture";
|
||||||
import { useArtboardStore } from "../store/artboard";
|
import { useArtboardStore } from "../store/artboard";
|
||||||
import { TemplateProps } from "../types/template";
|
import { TemplateProps } from "../types/template";
|
||||||
@ -226,26 +227,13 @@ const Section = <T,>({
|
|||||||
|
|
||||||
const Profiles = () => {
|
const Profiles = () => {
|
||||||
const section = useArtboardStore((state) => state.resume.sections.profiles);
|
const section = useArtboardStore((state) => state.resume.sections.profiles);
|
||||||
const fontSize = useArtboardStore((state) => state.resume.metadata.typography.font.size);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Section<Profile> section={section}>
|
<Section<Profile> section={section}>
|
||||||
{(item) => (
|
{(item) => (
|
||||||
<div>
|
<div>
|
||||||
{isUrl(item.url.href) ? (
|
{isUrl(item.url.href) ? (
|
||||||
<Link
|
<Link url={item.url} label={item.username} icon={<BrandIcon slug={item.icon} />} />
|
||||||
url={item.url}
|
|
||||||
label={item.username}
|
|
||||||
icon={
|
|
||||||
<img
|
|
||||||
className="ph"
|
|
||||||
width={fontSize}
|
|
||||||
height={fontSize}
|
|
||||||
alt={item.network}
|
|
||||||
src={`https://cdn.simpleicons.org/${item.icon}`}
|
|
||||||
/>
|
|
||||||
}
|
|
||||||
/>
|
|
||||||
) : (
|
) : (
|
||||||
<p>{item.username}</p>
|
<p>{item.username}</p>
|
||||||
)}
|
)}
|
||||||
|
|||||||
@ -21,6 +21,7 @@ import { cn, hexToRgb, isEmptyString, isUrl, linearTransform } from "@reactive-r
|
|||||||
import get from "lodash.get";
|
import get from "lodash.get";
|
||||||
import { Fragment } from "react";
|
import { Fragment } from "react";
|
||||||
|
|
||||||
|
import { BrandIcon } from "../components/brand-icon";
|
||||||
import { Picture } from "../components/picture";
|
import { Picture } from "../components/picture";
|
||||||
import { useArtboardStore } from "../store/artboard";
|
import { useArtboardStore } from "../store/artboard";
|
||||||
import { TemplateProps } from "../types/template";
|
import { TemplateProps } from "../types/template";
|
||||||
@ -287,26 +288,13 @@ const Education = () => {
|
|||||||
|
|
||||||
const Profiles = () => {
|
const Profiles = () => {
|
||||||
const section = useArtboardStore((state) => state.resume.sections.profiles);
|
const section = useArtboardStore((state) => state.resume.sections.profiles);
|
||||||
const fontSize = useArtboardStore((state) => state.resume.metadata.typography.font.size);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Section<Profile> section={section}>
|
<Section<Profile> section={section}>
|
||||||
{(item) => (
|
{(item) => (
|
||||||
<div>
|
<div>
|
||||||
{isUrl(item.url.href) ? (
|
{isUrl(item.url.href) ? (
|
||||||
<Link
|
<Link url={item.url} label={item.username} icon={<BrandIcon slug={item.icon} />} />
|
||||||
url={item.url}
|
|
||||||
label={item.username}
|
|
||||||
icon={
|
|
||||||
<img
|
|
||||||
className="ph"
|
|
||||||
width={fontSize}
|
|
||||||
height={fontSize}
|
|
||||||
alt={item.network}
|
|
||||||
src={`https://cdn.simpleicons.org/${item.icon}`}
|
|
||||||
/>
|
|
||||||
}
|
|
||||||
/>
|
|
||||||
) : (
|
) : (
|
||||||
<p>{item.username}</p>
|
<p>{item.username}</p>
|
||||||
)}
|
)}
|
||||||
|
|||||||
@ -20,6 +20,7 @@ import { cn, isEmptyString, isUrl } from "@reactive-resume/utils";
|
|||||||
import get from "lodash.get";
|
import get from "lodash.get";
|
||||||
import React, { Fragment } from "react";
|
import React, { Fragment } from "react";
|
||||||
|
|
||||||
|
import { BrandIcon } from "../components/brand-icon";
|
||||||
import { Picture } from "../components/picture";
|
import { Picture } from "../components/picture";
|
||||||
import { useArtboardStore } from "../store/artboard";
|
import { useArtboardStore } from "../store/artboard";
|
||||||
import { TemplateProps } from "../types/template";
|
import { TemplateProps } from "../types/template";
|
||||||
@ -27,7 +28,6 @@ import { TemplateProps } from "../types/template";
|
|||||||
const Header = () => {
|
const Header = () => {
|
||||||
const basics = useArtboardStore((state) => state.resume.basics);
|
const basics = useArtboardStore((state) => state.resume.basics);
|
||||||
const profiles = useArtboardStore((state) => state.resume.sections.profiles);
|
const profiles = useArtboardStore((state) => state.resume.sections.profiles);
|
||||||
const fontSize = useArtboardStore((state) => state.resume.metadata.typography.font.size);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="flex flex-col items-center justify-center space-y-2 pb-2 text-center">
|
<div className="flex flex-col items-center justify-center space-y-2 pb-2 text-center">
|
||||||
@ -61,7 +61,9 @@ const Header = () => {
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
<Link url={basics.url} />
|
<Link url={basics.url} />
|
||||||
|
|
||||||
{basics.customFields.map((item) => (
|
{basics.customFields.map((item) => (
|
||||||
<div key={item.id} className="flex items-center gap-x-1.5">
|
<div key={item.id} className="flex items-center gap-x-1.5">
|
||||||
<i className={cn(`ph ph-bold ph-${item.icon}`, "text-primary")} />
|
<i className={cn(`ph ph-bold ph-${item.icon}`, "text-primary")} />
|
||||||
@ -86,15 +88,7 @@ const Header = () => {
|
|||||||
url={item.url}
|
url={item.url}
|
||||||
label={item.username}
|
label={item.username}
|
||||||
className="text-sm"
|
className="text-sm"
|
||||||
icon={
|
icon={<BrandIcon slug={item.icon} />}
|
||||||
<img
|
|
||||||
className="ph"
|
|
||||||
width={fontSize}
|
|
||||||
height={fontSize}
|
|
||||||
alt={item.network}
|
|
||||||
src={`https://cdn.simpleicons.org/${item.icon}`}
|
|
||||||
/>
|
|
||||||
}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
))}
|
))}
|
||||||
|
|||||||
@ -20,6 +20,7 @@ import { cn, hexToRgb, isEmptyString, isUrl } from "@reactive-resume/utils";
|
|||||||
import get from "lodash.get";
|
import get from "lodash.get";
|
||||||
import React, { Fragment } from "react";
|
import React, { Fragment } from "react";
|
||||||
|
|
||||||
|
import { BrandIcon } from "../components/brand-icon";
|
||||||
import { Picture } from "../components/picture";
|
import { Picture } from "../components/picture";
|
||||||
import { useArtboardStore } from "../store/artboard";
|
import { useArtboardStore } from "../store/artboard";
|
||||||
import { TemplateProps } from "../types/template";
|
import { TemplateProps } from "../types/template";
|
||||||
@ -29,7 +30,6 @@ const Header = () => {
|
|||||||
const section = useArtboardStore((state) => state.resume.sections.summary);
|
const section = useArtboardStore((state) => state.resume.sections.summary);
|
||||||
const profiles = useArtboardStore((state) => state.resume.sections.profiles);
|
const profiles = useArtboardStore((state) => state.resume.sections.profiles);
|
||||||
const primaryColor = useArtboardStore((state) => state.resume.metadata.theme.primary);
|
const primaryColor = useArtboardStore((state) => state.resume.metadata.theme.primary);
|
||||||
const fontSize = useArtboardStore((state) => state.resume.metadata.typography.font.size);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
@ -102,15 +102,7 @@ const Header = () => {
|
|||||||
url={item.url}
|
url={item.url}
|
||||||
label={item.username}
|
label={item.username}
|
||||||
className="text-sm"
|
className="text-sm"
|
||||||
icon={
|
icon={<BrandIcon slug={item.icon} />}
|
||||||
<img
|
|
||||||
className="ph"
|
|
||||||
width={fontSize}
|
|
||||||
height={fontSize}
|
|
||||||
alt={item.network}
|
|
||||||
src={`https://cdn.simpleicons.org/${item.icon}`}
|
|
||||||
/>
|
|
||||||
}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
))}
|
))}
|
||||||
|
|||||||
@ -21,6 +21,7 @@ import { cn, isEmptyString, isUrl } from "@reactive-resume/utils";
|
|||||||
import get from "lodash.get";
|
import get from "lodash.get";
|
||||||
import { Fragment } from "react";
|
import { Fragment } from "react";
|
||||||
|
|
||||||
|
import { BrandIcon } from "../components/brand-icon";
|
||||||
import { Picture } from "../components/picture";
|
import { Picture } from "../components/picture";
|
||||||
import { useArtboardStore } from "../store/artboard";
|
import { useArtboardStore } from "../store/artboard";
|
||||||
import { TemplateProps } from "../types/template";
|
import { TemplateProps } from "../types/template";
|
||||||
@ -271,26 +272,13 @@ const Section = <T,>({
|
|||||||
|
|
||||||
const Profiles = () => {
|
const Profiles = () => {
|
||||||
const section = useArtboardStore((state) => state.resume.sections.profiles);
|
const section = useArtboardStore((state) => state.resume.sections.profiles);
|
||||||
const fontSize = useArtboardStore((state) => state.resume.metadata.typography.font.size);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Section<Profile> section={section}>
|
<Section<Profile> section={section}>
|
||||||
{(item) => (
|
{(item) => (
|
||||||
<div>
|
<div>
|
||||||
{isUrl(item.url.href) ? (
|
{isUrl(item.url.href) ? (
|
||||||
<Link
|
<Link url={item.url} label={item.username} icon={<BrandIcon slug={item.icon} />} />
|
||||||
url={item.url}
|
|
||||||
label={item.username}
|
|
||||||
icon={
|
|
||||||
<img
|
|
||||||
className="ph"
|
|
||||||
width={fontSize}
|
|
||||||
height={fontSize}
|
|
||||||
alt={item.network}
|
|
||||||
src={`https://cdn.simpleicons.org/${item.icon}`}
|
|
||||||
/>
|
|
||||||
}
|
|
||||||
/>
|
|
||||||
) : (
|
) : (
|
||||||
<p>{item.username}</p>
|
<p>{item.username}</p>
|
||||||
)}
|
)}
|
||||||
|
|||||||
@ -20,6 +20,7 @@ import { cn, isEmptyString, isUrl } from "@reactive-resume/utils";
|
|||||||
import get from "lodash.get";
|
import get from "lodash.get";
|
||||||
import React, { Fragment } from "react";
|
import React, { Fragment } from "react";
|
||||||
|
|
||||||
|
import { BrandIcon } from "../components/brand-icon";
|
||||||
import { Picture } from "../components/picture";
|
import { Picture } from "../components/picture";
|
||||||
import { useArtboardStore } from "../store/artboard";
|
import { useArtboardStore } from "../store/artboard";
|
||||||
import { TemplateProps } from "../types/template";
|
import { TemplateProps } from "../types/template";
|
||||||
@ -27,7 +28,6 @@ import { TemplateProps } from "../types/template";
|
|||||||
const Header = () => {
|
const Header = () => {
|
||||||
const basics = useArtboardStore((state) => state.resume.basics);
|
const basics = useArtboardStore((state) => state.resume.basics);
|
||||||
const profiles = useArtboardStore((state) => state.resume.sections.profiles);
|
const profiles = useArtboardStore((state) => state.resume.sections.profiles);
|
||||||
const fontSize = useArtboardStore((state) => state.resume.metadata.typography.font.size);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="flex items-center justify-between space-x-4 border-b border-primary pb-5">
|
<div className="flex items-center justify-between space-x-4 border-b border-primary pb-5">
|
||||||
@ -91,15 +91,7 @@ const Header = () => {
|
|||||||
url={item.url}
|
url={item.url}
|
||||||
label={item.username}
|
label={item.username}
|
||||||
className="text-sm"
|
className="text-sm"
|
||||||
icon={
|
icon={<BrandIcon slug={item.icon} />}
|
||||||
<img
|
|
||||||
className="ph"
|
|
||||||
width={fontSize}
|
|
||||||
height={fontSize}
|
|
||||||
alt={item.network}
|
|
||||||
src={`https://cdn.simpleicons.org/${item.icon}`}
|
|
||||||
/>
|
|
||||||
}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
))}
|
))}
|
||||||
|
|||||||
@ -21,6 +21,7 @@ import { cn, isEmptyString, isUrl } from "@reactive-resume/utils";
|
|||||||
import get from "lodash.get";
|
import get from "lodash.get";
|
||||||
import { Fragment } from "react";
|
import { Fragment } from "react";
|
||||||
|
|
||||||
|
import { BrandIcon } from "../components/brand-icon";
|
||||||
import { Picture } from "../components/picture";
|
import { Picture } from "../components/picture";
|
||||||
import { useArtboardStore } from "../store/artboard";
|
import { useArtboardStore } from "../store/artboard";
|
||||||
import { TemplateProps } from "../types/template";
|
import { TemplateProps } from "../types/template";
|
||||||
@ -257,26 +258,13 @@ const Section = <T,>({
|
|||||||
|
|
||||||
const Profiles = () => {
|
const Profiles = () => {
|
||||||
const section = useArtboardStore((state) => state.resume.sections.profiles);
|
const section = useArtboardStore((state) => state.resume.sections.profiles);
|
||||||
const fontSize = useArtboardStore((state) => state.resume.metadata.typography.font.size);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Section<Profile> section={section}>
|
<Section<Profile> section={section}>
|
||||||
{(item) => (
|
{(item) => (
|
||||||
<div>
|
<div>
|
||||||
{isUrl(item.url.href) ? (
|
{isUrl(item.url.href) ? (
|
||||||
<Link
|
<Link url={item.url} label={item.username} icon={<BrandIcon slug={item.icon} />} />
|
||||||
url={item.url}
|
|
||||||
label={item.username}
|
|
||||||
icon={
|
|
||||||
<img
|
|
||||||
className="ph"
|
|
||||||
width={fontSize}
|
|
||||||
height={fontSize}
|
|
||||||
alt={item.network}
|
|
||||||
src={`https://cdn.simpleicons.org/${item.icon}`}
|
|
||||||
/>
|
|
||||||
}
|
|
||||||
/>
|
|
||||||
) : (
|
) : (
|
||||||
<p>{item.username}</p>
|
<p>{item.username}</p>
|
||||||
)}
|
)}
|
||||||
|
|||||||
@ -21,6 +21,7 @@ import { cn, isEmptyString, isUrl } from "@reactive-resume/utils";
|
|||||||
import get from "lodash.get";
|
import get from "lodash.get";
|
||||||
import { Fragment } from "react";
|
import { Fragment } from "react";
|
||||||
|
|
||||||
|
import { BrandIcon } from "../components/brand-icon";
|
||||||
import { Picture } from "../components/picture";
|
import { Picture } from "../components/picture";
|
||||||
import { useArtboardStore } from "../store/artboard";
|
import { useArtboardStore } from "../store/artboard";
|
||||||
import { TemplateProps } from "../types/template";
|
import { TemplateProps } from "../types/template";
|
||||||
@ -223,26 +224,13 @@ const Section = <T,>({
|
|||||||
|
|
||||||
const Profiles = () => {
|
const Profiles = () => {
|
||||||
const section = useArtboardStore((state) => state.resume.sections.profiles);
|
const section = useArtboardStore((state) => state.resume.sections.profiles);
|
||||||
const fontSize = useArtboardStore((state) => state.resume.metadata.typography.font.size);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Section<Profile> section={section}>
|
<Section<Profile> section={section}>
|
||||||
{(item) => (
|
{(item) => (
|
||||||
<div>
|
<div>
|
||||||
{isUrl(item.url.href) ? (
|
{isUrl(item.url.href) ? (
|
||||||
<Link
|
<Link url={item.url} label={item.username} icon={<BrandIcon slug={item.icon} />} />
|
||||||
url={item.url}
|
|
||||||
label={item.username}
|
|
||||||
icon={
|
|
||||||
<img
|
|
||||||
className="ph"
|
|
||||||
width={fontSize}
|
|
||||||
height={fontSize}
|
|
||||||
alt={item.network}
|
|
||||||
src={`https://cdn.simpleicons.org/${item.icon}`}
|
|
||||||
/>
|
|
||||||
}
|
|
||||||
/>
|
|
||||||
) : (
|
) : (
|
||||||
<p>{item.username}</p>
|
<p>{item.username}</p>
|
||||||
)}
|
)}
|
||||||
|
|||||||
@ -12,7 +12,7 @@
|
|||||||
"tailwindcss": {
|
"tailwindcss": {
|
||||||
"callees": ["cn", "clsx", "cva"],
|
"callees": ["cn", "clsx", "cva"],
|
||||||
"config": "tailwind.config.js",
|
"config": "tailwind.config.js",
|
||||||
"whitelist": ["ph", "ph-"]
|
"whitelist": ["ph", "ph\\-.*", "si", "si\\-.*"]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"plugins": ["lingui"],
|
"plugins": ["lingui"],
|
||||||
|
|||||||
@ -43,5 +43,12 @@
|
|||||||
|
|
||||||
<!-- Phosphor Icons -->
|
<!-- Phosphor Icons -->
|
||||||
<script src="https://unpkg.com/@phosphor-icons/web"></script>
|
<script src="https://unpkg.com/@phosphor-icons/web"></script>
|
||||||
|
|
||||||
|
<!-- Simple Icons -->
|
||||||
|
<link
|
||||||
|
type="text/css"
|
||||||
|
rel="stylesheet"
|
||||||
|
href="https://unpkg.com/simple-icons-font@v14/font/simple-icons.min.css"
|
||||||
|
/>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
8
apps/client/public/support-logos/linkedin.svg
Normal file
8
apps/client/public/support-logos/linkedin.svg
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
<!-- Original Author: (Simple Icons)[https://github.com/simple-icons/simple-icons] -->
|
||||||
|
|
||||||
|
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<title>LinkedIn</title>
|
||||||
|
<path
|
||||||
|
fill="#0a66c2"
|
||||||
|
d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 730 B |
19
apps/client/src/components/brand-icon.tsx
Normal file
19
apps/client/src/components/brand-icon.tsx
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
import { cn } from "@reactive-resume/utils";
|
||||||
|
|
||||||
|
type BrandIconProps = {
|
||||||
|
slug: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const BrandIcon = ({ slug }: BrandIconProps) => {
|
||||||
|
if (slug === "linkedin") {
|
||||||
|
return (
|
||||||
|
<img
|
||||||
|
alt="LinkedIn"
|
||||||
|
className="size-5"
|
||||||
|
src={`${window.location.origin}/support-logos/linkedin.svg`}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return <i className={cn("si si--color text-[1.25rem]", `si-${slug}`)} />;
|
||||||
|
};
|
||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: af\n"
|
"Language: af\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:13\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Afrikaans\n"
|
"Language-Team: Afrikaans\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -38,7 +38,7 @@ msgstr ""
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr ""
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -146,7 +146,7 @@ msgstr ""
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr ""
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr ""
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr ""
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr ""
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -328,7 +328,7 @@ msgstr ""
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr ""
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr ""
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr ""
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr ""
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr ""
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -690,7 +690,7 @@ msgstr ""
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -793,9 +793,9 @@ msgstr ""
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -809,7 +809,7 @@ msgstr ""
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr ""
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr ""
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -984,7 +980,7 @@ msgstr ""
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr ""
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: 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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr ""
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr ""
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr ""
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr ""
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr ""
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1610,7 +1609,7 @@ msgstr ""
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr ""
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr ""
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1648,7 +1651,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr ""
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1672,11 +1675,11 @@ msgstr ""
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr ""
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr ""
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: am\n"
|
"Language: am\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:13\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Amharic\n"
|
"Language-Team: Amharic\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||||
@ -38,7 +38,7 @@ msgstr ""
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr ""
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -146,7 +146,7 @@ msgstr ""
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr ""
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr ""
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr ""
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr ""
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -328,7 +328,7 @@ msgstr ""
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr ""
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr ""
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr ""
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr ""
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr ""
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -690,7 +690,7 @@ msgstr ""
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -793,9 +793,9 @@ msgstr ""
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -809,7 +809,7 @@ msgstr ""
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr ""
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr ""
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -984,7 +980,7 @@ msgstr ""
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr ""
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: 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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr ""
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr ""
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr ""
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr ""
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr ""
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1610,7 +1609,7 @@ msgstr ""
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr ""
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr ""
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1648,7 +1651,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr ""
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1672,11 +1675,11 @@ msgstr ""
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr ""
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr ""
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: ar\n"
|
"Language: ar\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:13\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Arabic\n"
|
"Language-Team: Arabic\n"
|
||||||
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
@ -38,7 +38,7 @@ msgstr "<0>قمت ببناء مستأنف تفاعلي في الغالب بنف
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr "<0>أنا متأكد من أن التطبيق ليس مثالياً، لكنني أود أن يكون كذلك. /0><1>إذا واجهت أي مشاكل أثناء إنشاء مستأنفتك ، أو لديها فكرة من شأنها أن تساعدك والمستخدمين الآخرين في إنشاء استئنافك بسهولة أكبر، أسقط مشكلة على المستودع أو أرسل لي رسالة بريد إلكتروني عن ذلك. /1>"
|
msgstr "<0>أنا متأكد من أن التطبيق ليس مثالياً، لكنني أود أن يكون كذلك. /0><1>إذا واجهت أي مشاكل أثناء إنشاء مستأنفتك ، أو لديها فكرة من شأنها أن تساعدك والمستخدمين الآخرين في إنشاء استئنافك بسهولة أكبر، أسقط مشكلة على المستودع أو أرسل لي رسالة بريد إلكتروني عن ذلك. /1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr "<0>ملاحظة: </0>، باستخدام API OpenAI ، فإنك تقر وتقبل شروط الاستخدام <1></1> و<2>سياسة الخصوصية </2> التي أوجزها OpenAI. يرجى ملاحظة أن الاستئناف التفاعلي لا يتحمل أي مسؤولية عن أي استخدام غير سليم أو غير مأذون به للخدمة، ويقع أي انعكاسات أو التزامات ناجمة عن ذلك على عاتق المستعمل وحده."
|
msgstr "<0>ملاحظة: </0>، باستخدام API OpenAI ، فإنك تقر وتقبل شروط الاستخدام <1></1> و<2>سياسة الخصوصية </2> التي أوجزها OpenAI. يرجى ملاحظة أن الاستئناف التفاعلي لا يتحمل أي مسؤولية عن أي استخدام غير سليم أو غير مأذون به للخدمة، ويقع أي انعكاسات أو التزامات ناجمة عن ذلك على عاتق المستعمل وحده."
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr "يقبل الملفات {accept} فقط"
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr "حساب"
|
msgstr "حساب"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr "أضافه حقل مخصص"
|
msgstr "أضافه حقل مخصص"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "إضافة عنصر جديد"
|
msgstr "إضافة عنصر جديد"
|
||||||
@ -146,7 +146,7 @@ msgstr "يمكن لأي شخص لديه الرابط عرض السيرة الذ
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr "يمكن لأي شخص لديه هذا الرابط مشاهدة وتنزيل السيرة الذاتية. شاركها على ملفك الشخصي أو مع مسؤولي التوظيف."
|
msgstr "يمكن لأي شخص لديه هذا الرابط مشاهدة وتنزيل السيرة الذاتية. شاركها على ملفك الشخصي أو مع مسؤولي التوظيف."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr "هل أنت متأكد من أنك تريد حذف هذا العنصر؟"
|
msgstr "هل أنت متأكد من أنك تريد حذف هذا العنصر؟"
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr "رمز النسخ الاحتياطي"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "قد تحتوي رموز النسخ الاحتياطي على أحرف أو أرقام صغيرة فقط، ويجب أن تكون بالضبط 10 أحرف."
|
msgstr "قد تحتوي رموز النسخ الاحتياطي على أحرف أو أرقام صغيرة فقط، ويجب أن تكون بالضبط 10 أحرف."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "الرابط الأساسي"
|
msgstr "الرابط الأساسي"
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr "بنيت باستخدام"
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr "من قبل المجتمع، من أجل المجتمع."
|
msgstr "من قبل المجتمع، من أجل المجتمع."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr "تأكيد كلمة المرور الجديدة"
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "استمر"
|
msgstr "استمر"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "نسخ"
|
msgstr "نسخ"
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr "انسخ الرابط للسيرة الذاتية"
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr "نسخ إلى الحافظة"
|
msgstr "نسخ إلى الحافظة"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr "إنشاء"
|
msgstr "إنشاء"
|
||||||
@ -328,7 +328,7 @@ msgstr "إنشاء"
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr "إنشاء حساب جديد"
|
msgstr "إنشاء حساب جديد"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr "إنشاء عنصر جديد"
|
msgstr "إنشاء عنصر جديد"
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr "التاريخ"
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "التاريخ أو النطاق الزمني"
|
msgstr "التاريخ أو النطاق الزمني"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr "تنزيل PDF"
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr "التنزيلات"
|
msgstr "التنزيلات"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr "استنسخ"
|
msgstr "استنسخ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr "استنسخ عنصرًا موجودًا"
|
msgstr "استنسخ عنصرًا موجودًا"
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr "استنسخ عنصرًا موجودًا"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "استنسخ سيرة ذاتية موجودة"
|
msgstr "استنسخ سيرة ذاتية موجودة"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "عدّل"
|
msgstr "عدّل"
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr "متغير الخط"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "فعلى سبيل المثال، يمكن الإشارة هنا إلى المعلومات المتعلقة بالشركات التي أرسلتها لاستئناف العمل أو الروابط مع توصيفات الوظائف."
|
msgstr "فعلى سبيل المثال، يمكن الإشارة هنا إلى المعلومات المتعلقة بالشركات التي أرسلتها لاستئناف العمل أو الروابط مع توصيفات الوظائف."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "نسيان"
|
msgstr "نسيان"
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr "هنا، يمكنك تحديث معلومات حسابك مثل صورة
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr "هنا، يمكنك تحديث ملفك التعريفي لتخصيص تجربتك وإضافة طابعك الشخصي عليها."
|
msgstr "هنا، يمكنك تحديث ملفك التعريفي لتخصيص تجربتك وإضافة طابعك الشخصي عليها."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "مخفي"
|
msgstr "مخفي"
|
||||||
@ -690,7 +690,7 @@ msgstr "استضف سيرتك الذاتية علناً"
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr "أحب دائما أن أسمع من مستخدمي Reactive Resume بتعليقات أو دعم. إليك بعض الرسائل التي تلقيتها. إذا كان لديك أي ملاحظات، لا تتردد في أن ترسل لي رسالة بريد إلكتروني على <0>{email}</0>."
|
msgstr "أحب دائما أن أسمع من مستخدمي Reactive Resume بتعليقات أو دعم. إليك بعض الرسائل التي تلقيتها. إذا كان لديك أي ملاحظات، لا تتردد في أن ترسل لي رسالة بريد إلكتروني على <0>{email}</0>."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr "الأيقونة"
|
msgstr "الأيقونة"
|
||||||
@ -793,9 +793,9 @@ msgstr "john.doe@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "الكلمات المفتاحية"
|
msgstr "الكلمات المفتاحية"
|
||||||
@ -809,7 +809,7 @@ msgstr "وسم"
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "اللّغة"
|
msgstr "اللّغة"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr "آخر تحديث {lastUpdated}"
|
msgstr "آخر تحديث {lastUpdated}"
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr "الموقع"
|
msgstr "الموقع"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr "مارس 2023 - حتى الآن"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "هامش"
|
msgstr "هامش"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "الحد الأقصى للرموز"
|
msgstr "الحد الأقصى للرموز"
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr "الحد الأقصى للرموز"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "رخصة MIT"
|
msgstr "رخصة MIT"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "الموديل"
|
msgstr "الموديل"
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr "الموديل"
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "الاسم"
|
msgstr "الاسم"
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "الاسم"
|
msgstr "الاسم"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "الشبكة"
|
msgstr "الشبكة"
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr "ملاحظة: هذا سيجعل حسابك أقل أمانًا."
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "ملاحظات"
|
msgstr "ملاحظات"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr "التكامل مع أولاما"
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr "كلمة السر لمرة واحدة OTP"
|
msgstr "كلمة السر لمرة واحدة OTP"
|
||||||
@ -984,7 +980,7 @@ msgstr "كلمة السر لمرة واحدة OTP"
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr "عذرًا، أرجع الخادم خطأ."
|
msgstr "عذرًا، أرجع الخادم خطأ."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr "افتح"
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr "مفتوح المصدر"
|
msgstr "مفتوح المصدر"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr "OpenAI / Ollama مفتاح"
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr "لم يُرجع OpenAI أي اختيارات للنص الخاص بك."
|
msgstr "لم يُرجع OpenAI أي اختيارات للنص الخاص بك."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "تكامل مع OpenAI"
|
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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr "الموضع"
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr "مدعوم من قبل"
|
msgstr "مدعوم من قبل"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr "مدعوم من <0>أيس بسيط</0>"
|
msgstr "مدعوم من <0>أيس بسيط</0>"
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr "إعادة التفاعل تزدهر بفضل مجتمعها النشط.
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "إعادة"
|
msgstr "إعادة"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "إزالة"
|
msgstr "إزالة"
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr "إزالة الصفحة"
|
msgstr "إزالة الصفحة"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr "غني بالميزات وليس بالسعر."
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr "مدوّر"
|
msgstr "مدوّر"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "حفظ التّغييرات"
|
msgstr "حفظ التّغييرات"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "الحفظ في الجهاز (محلياً)"
|
msgstr "الحفظ في الجهاز (محلياً)"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "تم الحفظ"
|
msgstr "تم الحفظ"
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr "السمة"
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr "حدث خطأ أثناء الاتصال بالمتصفح. الرجاء التأكد من أن 'chrome' يعمل ويمكن الوصول إليه."
|
msgstr "حدث خطأ أثناء الاتصال بالمتصفح. الرجاء التأكد من أن 'chrome' يعمل ويمكن الوصول إليه."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr "يمكن عكس هذا الإجراء بالنقر على زر التراجع في شريط الأدوات العائم."
|
msgstr "يمكن عكس هذا الإجراء بالنقر على زر التراجع في شريط الأدوات العائم."
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr "التراجع"
|
msgstr "التراجع"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr "فتح استئناف سيسمح لك بإجراء تغييرات علي
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr "لم يتم التحقق"
|
msgstr "لم يتم التحقق"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr "تحديث عنصر موجود"
|
msgstr "تحديث عنصر موجود"
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr "المستخدم ليس لديه سجل 'أسرار' مرتبط به. الرجاء الإبلاغ عن هذه المشكلة في GitHub."
|
msgstr "المستخدم ليس لديه سجل 'أسرار' مرتبط به. الرجاء الإبلاغ عن هذه المشكلة في GitHub."
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr "اسم المستخدم"
|
msgstr "اسم المستخدم"
|
||||||
@ -1610,7 +1609,7 @@ msgstr "Validate"
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr "تم المصادقة"
|
msgstr "تم المصادقة"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "القيمة"
|
msgstr "القيمة"
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr "الإصدار 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "المشاهدات"
|
msgstr "المشاهدات"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "مرئي"
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr "نحن نقوم بالتحقق من عنوان البريد الإلكتروني الخاص بك فقط للتأكد من أننا يمكن أن نرسل لك رابط إعادة تعيين كلمة المرور في حالة نسيانك كلمة المرور."
|
msgstr "نحن نقوم بالتحقق من عنوان البريد الإلكتروني الخاص بك فقط للتأكد من أننا يمكن أن نرسل لك رابط إعادة تعيين كلمة المرور في حالة نسيانك كلمة المرور."
|
||||||
@ -1648,7 +1651,7 @@ msgstr "نحن نقوم بالتحقق من عنوان البريد الإلكت
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr "الموقع"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "ما هو الجديد في أحدث إصدار"
|
msgstr "ما هو الجديد في أحدث إصدار"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "يمكنك إضافة عدة كلمات مفتاحية عن طريق فصلها بفاصلة أو الضغط على إدخال."
|
msgstr "يمكنك إضافة عدة كلمات مفتاحية عن طريق فصلها بفاصلة أو الضغط على إدخال."
|
||||||
@ -1672,11 +1675,11 @@ msgstr "يمكنك إضافة عدة كلمات مفتاحية عن طريق ف
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "يمكنك أيضًا إدخال اسم المستخدم الخاص بك."
|
msgstr "يمكنك أيضًا إدخال اسم المستخدم الخاص بك."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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'. يمكنك أيضًا انتقاء واختيار النماذج وتعيين الحد الأقصى للرموز."
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||||
msgstr "يمكنك استخدام واجهة برمجة تطبيقات OpenAI لمساعدتك في إنشاء المحتوى، أو تحسين الكتابة الخاصة بك أثناء تشكيل استعادتك."
|
msgstr "يمكنك استخدام واجهة برمجة تطبيقات OpenAI لمساعدتك في إنشاء المحتوى، أو تحسين الكتابة الخاصة بك أثناء تشكيل استعادتك."
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr "يمكنك استخدام واجهة برمجة تطبيقات OpenAI ل
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "يمكنك تتبع عدد المشاهدات التي استلمتها في الاستئناف الخاص بك، أو كم عدد الأشخاص الذين قاموا بتنزيل الاستكمال عن طريق تمكين المشاركة العامة."
|
msgstr "يمكنك تتبع عدد المشاهدات التي استلمتها في الاستئناف الخاص بك، أو كم عدد الأشخاص الذين قاموا بتنزيل الاستكمال عن طريق تمكين المشاركة العامة."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "لديك خيار <0>الحصول على مفتاح API OpenAI الخاص بك </0>. هذا المفتاح يمكّنك من استخدام API كما تراه مناسباً. بدلاً من ذلك، إذا كنت ترغب في تعطيل ميزات الذكاء الاصطناعي في الاستئناف التفاعلي تماماً، يمكنك ببساطة إزالة المفتاح من الإعدادات الخاصة بك."
|
msgstr "لديك خيار <0>الحصول على مفتاح API OpenAI الخاص بك </0>. هذا المفتاح يمكّنك من استخدام API كما تراه مناسباً. بدلاً من ذلك، إذا كنت ترغب في تعطيل ميزات الذكاء الاصطناعي في الاستئناف التفاعلي تماماً، يمكنك ببساطة إزالة المفتاح من الإعدادات الخاصة بك."
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr "لديك بريد!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "تم حذف حسابك وجميع بياناتك بنجاح. جيد!"
|
msgstr "تم حذف حسابك وجميع بياناتك بنجاح. جيد!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "يتم تخزين مفتاح API الخاص بك بشكل آمن في التخزين المحلي للمتصفح ويتم استخدامه فقط عند تقديم طلبات إلى OpenAI عن طريق SDK الرسمية الخاصة بهم. تأكد من أن المفتاح الخاص بك لا يتم إرساله إلى أي خادم خارجي إلا عند التفاعل مع خدمات OpenAI."
|
msgstr "يتم تخزين مفتاح API الخاص بك بشكل آمن في التخزين المحلي للمتصفح ويتم استخدامه فقط عند تقديم طلبات إلى OpenAI عن طريق SDK الرسمية الخاصة بهم. تأكد من أن المفتاح الخاص بك لا يتم إرساله إلى أي خادم خارجي إلا عند التفاعل مع خدمات OpenAI."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: bg\n"
|
"Language: bg\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:13\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Bulgarian\n"
|
"Language-Team: Bulgarian\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -38,7 +38,7 @@ msgstr "<0>Създадох Reactive Resume предимно сам през с
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr "<0>Сигурен съм, че приложението не е съвършено, но бих искал да бъде.</0><1>Ако сте се сблъскали с някакви проблеми при създаването на автобиографията си или имате идея, която би помогнала на вас и на други потребители да създадете по-лесно автобиографията си, напишете въпрос в хранилището или ми изпратете имейл за това.</1>"
|
msgstr "<0>Сигурен съм, че приложението не е съвършено, но бих искал да бъде.</0><1>Ако сте се сблъскали с някакви проблеми при създаването на автобиографията си или имате идея, която би помогнала на вас и на други потребители да създадете по-лесно автобиографията си, напишете въпрос в хранилището или ми изпратете имейл за това.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr "<0>Забележка: </0>Използвайки API на OpenAI, вие потвърждавате и приемате <1>условията за използване</1> и <2>политиката за поверителност,</2> описани от OpenAI. Моля, обърнете внимание, че Reactive Resume не носи отговорност за неправилно или неразрешено използване на услугата и всички произтичащи от това последствия или отговорности са единствено за сметка на потребителя."
|
msgstr "<0>Забележка: </0>Използвайки API на OpenAI, вие потвърждавате и приемате <1>условията за използване</1> и <2>политиката за поверителност,</2> описани от OpenAI. Моля, обърнете внимание, че Reactive Resume не носи отговорност за неправилно или неразрешено използване на услугата и всички произтичащи от това последствия или отговорности са единствено за сметка на потребителя."
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr "Приема само файлове {accept}"
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr "Сметка"
|
msgstr "Сметка"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr "Добавяне на потребителско поле"
|
msgstr "Добавяне на потребителско поле"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Добавяне на нов елемент"
|
msgstr "Добавяне на нов елемент"
|
||||||
@ -146,7 +146,7 @@ msgstr "Всеки, който има връзка, може да преглед
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr "Всеки, който използва тази връзка, може да прегледа и изтегли автобиографията. Споделете я в профила си или с лица, набиращи персонал."
|
msgstr "Всеки, който използва тази връзка, може да прегледа и изтегли автобиографията. Споделете я в профила си или с лица, набиращи персонал."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr "Сигурни ли сте, че искате да изтриете този елемент?"
|
msgstr "Сигурни ли сте, че искате да изтриете този елемент?"
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr "Код за резервно копие"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Кодовете за архивиране могат да съдържат само малки букви или цифри и трябва да са точно 10 символа."
|
msgstr "Кодовете за архивиране могат да съдържат само малки букви или цифри и трябва да са точно 10 символа."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr "Изграден с"
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr "От общността, за общността."
|
msgstr "От общността, за общността."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr "Потвърждаване на новата парола"
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Продължи"
|
msgstr "Продължи"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Копие"
|
msgstr "Копие"
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr "Копиране на връзката към автобиография
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr "Копиране в клипборда"
|
msgstr "Копиране в клипборда"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr "Създаване на"
|
msgstr "Създаване на"
|
||||||
@ -328,7 +328,7 @@ msgstr "Създаване на"
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr "Създаване на нов акаунт"
|
msgstr "Създаване на нов акаунт"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr "Създаване на нов елемент"
|
msgstr "Създаване на нов елемент"
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr "Дата"
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Дата или диапазон от дати"
|
msgstr "Дата или диапазон от дати"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr "Изтегляне на PDF"
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr "Изтегляне"
|
msgstr "Изтегляне"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr "Дублиране на"
|
msgstr "Дублиране на"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr "Дублиране на съществуващ елемент"
|
msgstr "Дублиране на съществуващ елемент"
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr "Дублиране на съществуващ елемент"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Дублиране на съществуваща автобиография"
|
msgstr "Дублиране на съществуваща автобиография"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Редактиране на"
|
msgstr "Редактиране на"
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr "Варианти на шрифта"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "Например тук може да се запише информация за компаниите, на които сте изпратили автобиографията, или връзки към описанията на длъжностите."
|
msgstr "Например тук може да се запише информация за компаниите, на които сте изпратили автобиографията, или връзки към описанията на длъжностите."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Забравете"
|
msgstr "Забравете"
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr "Тук можете да актуализирате информация
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr "Тук можете да актуализирате профила си, за да персонализирате работата си."
|
msgstr "Тук можете да актуализирате профила си, за да персонализирате работата си."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Скрит"
|
msgstr "Скрит"
|
||||||
@ -690,7 +690,7 @@ msgstr "Публично хостване на автобиографията в
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr "Винаги се радвам да чуя от потребителите на Reactive Resume обратна връзка или подкрепа. Ето някои от съобщенията, които получих. Ако имате някаква обратна връзка, не се колебайте да ми изпратите имейл на адрес <0>{email}</0>."
|
msgstr "Винаги се радвам да чуя от потребителите на Reactive Resume обратна връзка или подкрепа. Ето някои от съобщенията, които получих. Ако имате някаква обратна връзка, не се колебайте да ми изпратите имейл на адрес <0>{email}</0>."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr "Икона"
|
msgstr "Икона"
|
||||||
@ -793,9 +793,9 @@ msgstr "john.doe@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Ключови думи"
|
msgstr "Ключови думи"
|
||||||
@ -809,7 +809,7 @@ msgstr "Етикет"
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Език"
|
msgstr "Език"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr "Последна актуализация {lastUpdated}"
|
msgstr "Последна актуализация {lastUpdated}"
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr "Местоположение"
|
msgstr "Местоположение"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr "март 2023 - Настояще"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Марж"
|
msgstr "Марж"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "Лиценз MIT"
|
msgstr "Лиценз MIT"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Име"
|
msgstr "Име"
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Име"
|
msgstr "Име"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Мрежа"
|
msgstr "Мрежа"
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr "Забележка: Това ще намали сигурността н
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Бележки"
|
msgstr "Бележки"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr "Еднократна парола"
|
msgstr "Еднократна парола"
|
||||||
@ -984,7 +980,7 @@ msgstr "Еднократна парола"
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr "Упс, сървърът върна грешка."
|
msgstr "Упс, сървърът върна грешка."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr "Отворете"
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr "Отворен код"
|
msgstr "Отворен код"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr "OpenAI не върна никакви варианти за вашия текст."
|
msgstr "OpenAI не върна никакви варианти за вашия текст."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "Интеграция на OpenAI"
|
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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr "Позиция"
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr "Задвижвано от"
|
msgstr "Задвижвано от"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr "Осъществено от <0>Simple Icons</0>"
|
msgstr "Осъществено от <0>Simple Icons</0>"
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr "Reactive Resume процъфтява благодарение на св
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Redo"
|
msgstr "Redo"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Премахване на"
|
msgstr "Премахване на"
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr "Премахване на страницата"
|
msgstr "Премахване на страницата"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr "Богат на функции, но не и на цени."
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr "Заоблени"
|
msgstr "Заоблени"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Запазване на промените"
|
msgstr "Запазване на промените"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr "Тема"
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr "Имаше грешка при свързването с браузъра. Моля, уверете се, че \"chrome\" е стартиран и достъпен."
|
msgstr "Имаше грешка при свързването с браузъра. Моля, уверете се, че \"chrome\" е стартиран и достъпен."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr "Това действие може да бъде върнато, като щракнете върху бутона Отмяна в плаващата лента с инструменти."
|
msgstr "Това действие може да бъде върнато, като щракнете върху бутона Отмяна в плаващата лента с инструменти."
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr "Отмяна на"
|
msgstr "Отмяна на"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr "Отключването на автобиографията ще ви
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr "Непроверен"
|
msgstr "Непроверен"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr "Актуализиране на съществуващ елемент"
|
msgstr "Актуализиране на съществуващ елемент"
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr "Потребителят няма свързан запис \"secrets\". Моля, докладвайте този проблем в GitHub."
|
msgstr "Потребителят няма свързан запис \"secrets\". Моля, докладвайте този проблем в GitHub."
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr "Потребителско име"
|
msgstr "Потребителско име"
|
||||||
@ -1610,7 +1609,7 @@ msgstr "Удостоверяване на"
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr "Утвърден"
|
msgstr "Утвърден"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Стойност"
|
msgstr "Стойност"
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr "Версия 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Прегледи"
|
msgstr "Прегледи"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Видим"
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr "Проверяваме имейл адреса ви само за да можем да ви изпратим връзка за възстановяване на паролата, в случай че сте я забравили."
|
msgstr "Проверяваме имейл адреса ви само за да можем да ви изпратим връзка за възстановяване на паролата, в случай че сте я забравили."
|
||||||
@ -1648,7 +1651,7 @@ msgstr "Проверяваме имейл адреса ви само за да
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr "Уебсайт"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Какво е новото в последната версия"
|
msgstr "Какво е новото в последната версия"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Можете да добавите няколко ключови думи, като ги разделите със запетая или натиснете Enter."
|
msgstr "Можете да добавите няколко ключови думи, като ги разделите със запетая или натиснете Enter."
|
||||||
@ -1672,11 +1675,11 @@ msgstr "Можете да добавите няколко ключови дум
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Можете да въведете и потребителското си име."
|
msgstr "Можете да въведете и потребителското си име."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||||
msgstr "Можете да използвате приложния програмен интерфейс на OpenAI, за да генерирате съдържание, или да подобрите писането, докато съставяте автобиографията си."
|
msgstr "Можете да използвате приложния програмен интерфейс на OpenAI, за да генерирате съдържание, или да подобрите писането, докато съставяте автобиографията си."
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr "Можете да използвате приложния програм
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Можете да проследите броя на прегледите на автобиографията си или колко души са я изтеглили, като разрешите публичното споделяне."
|
msgstr "Можете да проследите броя на прегледите на автобиографията си или колко души са я изтеглили, като разрешите публичното споделяне."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "Имате възможност да <0>получите собствен API ключ на OpenAI</0>. Този ключ ви дава възможност да използвате API по ваша преценка. Ако желаете да деактивирате функциите на изкуствения интелект в Reactive Resume, можете просто да премахнете ключа от настройките си."
|
msgstr "Имате възможност да <0>получите собствен API ключ на OpenAI</0>. Този ключ ви дава възможност да използвате API по ваша преценка. Ако желаете да деактивирате функциите на изкуствения интелект в Reactive Resume, можете просто да премахнете ключа от настройките си."
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr "Имате поща!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Вашият акаунт и всички ваши данни са изтрити успешно. Сбогом!"
|
msgstr "Вашият акаунт и всички ваши данни са изтрити успешно. Сбогом!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "Вашият API ключ се съхранява по сигурен начин в локалното хранилище на браузъра и се използва само при извършване на заявки към OpenAI чрез официалния им SDK. Бъдете сигурни, че вашият ключ не се предава на външен сървър, освен при взаимодействие с услугите на OpenAI."
|
msgstr "Вашият API ключ се съхранява по сигурен начин в локалното хранилище на браузъра и се използва само при извършване на заявки към OpenAI чрез официалния им SDK. Бъдете сигурни, че вашият ключ не се предава на външен сървър, освен при взаимодействие с услугите на OpenAI."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: bn\n"
|
"Language: bn\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:13\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Bengali\n"
|
"Language-Team: Bengali\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -38,7 +38,7 @@ msgstr "</0>অন্যান্য মহান ওপেন-সোর্স
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr "<0>আমি নিশ্চিত যে অ্যাপটি নিখুঁত নয়, তবে আমি চাই এটি নিখুঁত হোক।</0><1>আপনার জীবনবৃত্তান্ত তৈরি করার সময় আপনি যদি কোনো সমস্যার সম্মুখীন হন, অথবা এমন কোনো ধারণা থাকে যা আপনাকে এবং অন্যান্য ব্যবহারকারীদেরকে আপনার জীবনবৃত্তান্ত তৈরি করতে আরও সহজে সাহায্য করবে, রিপোজিটরিতে একটি সমস্যা ড্রপ করুন বা এটি সম্পর্কে আমাকে একটি ইমেল পাঠান।</1>"
|
msgstr "<0>আমি নিশ্চিত যে অ্যাপটি নিখুঁত নয়, তবে আমি চাই এটি নিখুঁত হোক।</0><1>আপনার জীবনবৃত্তান্ত তৈরি করার সময় আপনি যদি কোনো সমস্যার সম্মুখীন হন, অথবা এমন কোনো ধারণা থাকে যা আপনাকে এবং অন্যান্য ব্যবহারকারীদেরকে আপনার জীবনবৃত্তান্ত তৈরি করতে আরও সহজে সাহায্য করবে, রিপোজিটরিতে একটি সমস্যা ড্রপ করুন বা এটি সম্পর্কে আমাকে একটি ইমেল পাঠান।</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr "<0>দ্রষ্টব্য: </0>OpenAI API ব্যবহার করে, আপনি স্বীকার করেন এবং স্বীকার করেন<1>ব্যবহারের শর্তাবলী</1>এবং<2>গোপনীয়তা নীতি</2>OpenAI দ্বারা রূপরেখা। অনুগ্রহ করে মনে রাখবেন যে প্রতিক্রিয়াশীল জীবনবৃত্তান্ত পরিষেবাটির কোনও অনুপযুক্ত বা অননুমোদিত ব্যবহারের জন্য কোনও দায়বদ্ধতা বহন করে না এবং এর ফলে যে কোনও প্রতিক্রিয়া বা দায় সম্পূর্ণরূপে ব্যবহারকারীর উপর নির্ভর করে।"
|
msgstr "<0>দ্রষ্টব্য: </0>OpenAI API ব্যবহার করে, আপনি স্বীকার করেন এবং স্বীকার করেন<1>ব্যবহারের শর্তাবলী</1>এবং<2>গোপনীয়তা নীতি</2>OpenAI দ্বারা রূপরেখা। অনুগ্রহ করে মনে রাখবেন যে প্রতিক্রিয়াশীল জীবনবৃত্তান্ত পরিষেবাটির কোনও অনুপযুক্ত বা অননুমোদিত ব্যবহারের জন্য কোনও দায়বদ্ধতা বহন করে না এবং এর ফলে যে কোনও প্রতিক্রিয়া বা দায় সম্পূর্ণরূপে ব্যবহারকারীর উপর নির্ভর করে।"
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr "শুধুমাত্র {accept} ফাইলগুলি গ্র
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr "খাতা "
|
msgstr "খাতা "
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr "একটি কাস্টম ক্ষেত্র যোগ করুন"
|
msgstr "একটি কাস্টম ক্ষেত্র যোগ করুন"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "একটি নতুন জিনিস যোগ করুন"
|
msgstr "একটি নতুন জিনিস যোগ করুন"
|
||||||
@ -146,7 +146,7 @@ msgstr "লিঙ্ক সহ যে কেউ জীবনবৃত্তা
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr "এই লিঙ্ক সহ যে কেউ জীবনবৃত্তান্ত দেখতে এবং ডাউনলোড করতে পারেন। আপনার প্রোফাইলে বা নিয়োগকারীদের সাথে শেয়ার করুন।"
|
msgstr "এই লিঙ্ক সহ যে কেউ জীবনবৃত্তান্ত দেখতে এবং ডাউনলোড করতে পারেন। আপনার প্রোফাইলে বা নিয়োগকারীদের সাথে শেয়ার করুন।"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr "আপনি কি এই আইটেমটি মুছে ফেলার বিষয়ে নিশ্চিত?"
|
msgstr "আপনি কি এই আইটেমটি মুছে ফেলার বিষয়ে নিশ্চিত?"
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr "ব্যাকআপ কোড"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "ব্যাকআপ কোডে শুধুমাত্র ছোট হাতের অক্ষর বা সংখ্যা থাকতে পারে এবং অবশ্যই 10টি অক্ষর হতে হবে।"
|
msgstr "ব্যাকআপ কোডে শুধুমাত্র ছোট হাতের অক্ষর বা সংখ্যা থাকতে পারে এবং অবশ্যই 10টি অক্ষর হতে হবে।"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr "দিয়ে নির্মিত"
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr "সম্প্রদায়ের দ্বারা, সম্প্রদায়ের জন্য।"
|
msgstr "সম্প্রদায়ের দ্বারা, সম্প্রদায়ের জন্য।"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr ""
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr ""
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -328,7 +328,7 @@ msgstr ""
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr ""
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr ""
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr ""
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "সম্পাদন"
|
msgstr "সম্পাদন"
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr "বিকল্প ফন্ট"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "উদাহরণস্বরূপ, আপনি কোন কোম্পানিতে এই জীবনবৃত্তান্ত পাঠিয়েছেন বা কাজের বিবরণের লিঙ্কগুলি এখানে উল্লেখ করা যেতে পারে"
|
msgstr "উদাহরণস্বরূপ, আপনি কোন কোম্পানিতে এই জীবনবৃত্তান্ত পাঠিয়েছেন বা কাজের বিবরণের লিঙ্কগুলি এখানে উল্লেখ করা যেতে পারে"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "ভুলে যান"
|
msgstr "ভুলে যান"
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr ""
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "গোপন করা"
|
msgstr "গোপন করা"
|
||||||
@ -690,7 +690,7 @@ msgstr ""
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr "আইকন"
|
msgstr "আইকন"
|
||||||
@ -793,9 +793,9 @@ msgstr ""
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -809,7 +809,7 @@ msgstr ""
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr "মার্চ ২০২৩ - বর্তমান"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "মার্জিন"
|
msgstr "মার্জিন"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "এমআইটি লাইসেন্স"
|
msgstr "এমআইটি লাইসেন্স"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "নাম"
|
msgstr "নাম"
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "নাম"
|
msgstr "নাম"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "নেটওয়ার্ক"
|
msgstr "নেটওয়ার্ক"
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr "দ্রষ্টব্য: এটি আপনার অ্যাক
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "দ্রষ্টব্য:"
|
msgstr "দ্রষ্টব্য:"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr "ওয়ান-টাইম পাসওয়ার্ড"
|
msgstr "ওয়ান-টাইম পাসওয়ার্ড"
|
||||||
@ -984,7 +980,7 @@ msgstr "ওয়ান-টাইম পাসওয়ার্ড"
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr "সার্ভারে একটি ত্রুটি দেখাচ্ছে ৷"
|
msgstr "সার্ভারে একটি ত্রুটি দেখাচ্ছে ৷"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr "খুলুন"
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr "মুক্ত উৎস"
|
msgstr "মুক্ত উৎস"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "OpenAI ইন্টিগ্রেশন"
|
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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr "অবস্থান"
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr "দ্বারা চালিত"
|
msgstr "দ্বারা চালিত"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr "<0>সাধারণ আইকন</0> দ্বারা চালিত"
|
msgstr "<0>সাধারণ আইকন</0> দ্বারা চালিত"
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr ""
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr ""
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr ""
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr ""
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1610,7 +1609,7 @@ msgstr ""
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr ""
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr ""
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1648,7 +1651,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr ""
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1672,11 +1675,11 @@ msgstr ""
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr ""
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr ""
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: ca\n"
|
"Language: ca\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:13\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Catalan\n"
|
"Language-Team: Catalan\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -38,7 +38,7 @@ msgstr ""
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr ""
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr "Compte"
|
msgstr "Compte"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr "Afegir un camp personalitzat"
|
msgstr "Afegir un camp personalitzat"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Afegiu un nou element"
|
msgstr "Afegiu un nou element"
|
||||||
@ -146,7 +146,7 @@ msgstr ""
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr ""
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr ""
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr ""
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr ""
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr "Crear"
|
msgstr "Crear"
|
||||||
@ -328,7 +328,7 @@ msgstr "Crear"
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr "Crea un nou compte"
|
msgstr "Crea un nou compte"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr "Crea un element nou"
|
msgstr "Crea un element nou"
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr "Data"
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr ""
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr ""
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr ""
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr ""
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -690,7 +690,7 @@ msgstr ""
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -793,9 +793,9 @@ msgstr ""
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -809,7 +809,7 @@ msgstr ""
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr ""
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "Llicència MIT"
|
msgstr "Llicència MIT"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nom"
|
msgstr "Nom"
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nom"
|
msgstr "Nom"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr ""
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -984,7 +980,7 @@ msgstr ""
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr ""
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: 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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr ""
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr ""
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr ""
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr ""
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr ""
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1610,7 +1609,7 @@ msgstr "Validar"
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr "Validat"
|
msgstr "Validat"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr "Versió 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr ""
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1648,7 +1651,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr ""
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1672,11 +1675,11 @@ msgstr ""
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr ""
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr ""
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: cs\n"
|
"Language: cs\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:13\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Czech\n"
|
"Language-Team: Czech\n"
|
||||||
"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n"
|
"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n"
|
||||||
@ -38,7 +38,7 @@ msgstr "<0>Reactive Resume jsem vytvořil převážně sám ve svém volném ča
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr "<0>Jsem si jistý, že aplikace není dokonalá, ale rád bych, aby byla.</0><1>Pokud jste se při tvorbě životopisu setkali s nějakými problémy nebo máte nápad, který by vám i ostatním uživatelům pomohl při snadnější tvorbě životopisu, napište o tom do úložiště nebo mi pošlete e-mail.</1>"
|
msgstr "<0>Jsem si jistý, že aplikace není dokonalá, ale rád bych, aby byla.</0><1>Pokud jste se při tvorbě životopisu setkali s nějakými problémy nebo máte nápad, který by vám i ostatním uživatelům pomohl při snadnější tvorbě životopisu, napište o tom do úložiště nebo mi pošlete e-mail.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr "<0>Poznámka </0>: Používáním rozhraní API OpenAI berete na vědomí a souhlasíte s podmínkami <1>používání</1> a <2>zásadami ochrany osobních údajů</2> uvedenými společností OpenAI. Vezměte prosím na vědomí, že Reactive Resume nenese žádnou odpovědnost za nesprávné nebo neoprávněné použití služby a veškeré následky nebo závazky z toho plynoucí nese výhradně uživatel."
|
msgstr "<0>Poznámka </0>: Používáním rozhraní API OpenAI berete na vědomí a souhlasíte s podmínkami <1>používání</1> a <2>zásadami ochrany osobních údajů</2> uvedenými společností OpenAI. Vezměte prosím na vědomí, že Reactive Resume nenese žádnou odpovědnost za nesprávné nebo neoprávněné použití služby a veškeré následky nebo závazky z toho plynoucí nese výhradně uživatel."
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr "Přijímá pouze soubory {accept}"
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr "Účet"
|
msgstr "Účet"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr "Přidání vlastního pole"
|
msgstr "Přidání vlastního pole"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Přidat novou položku"
|
msgstr "Přidat novou položku"
|
||||||
@ -146,7 +146,7 @@ msgstr "Každý, kdo má k dispozici odkaz, si může životopis prohlédnout a
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr "Každý, kdo má k dispozici tento odkaz, si může životopis prohlédnout a stáhnout. Sdílejte jej na svém profilu nebo s náborovými pracovníky."
|
msgstr "Každý, kdo má k dispozici tento odkaz, si může životopis prohlédnout a stáhnout. Sdílejte jej na svém profilu nebo s náborovými pracovníky."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr "Opravdu chcete tuto položku odstranit?"
|
msgstr "Opravdu chcete tuto položku odstranit?"
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr "Záložní kód"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Záložní kódy mohou obsahovat pouze malá písmena nebo číslice a musí mít přesně 10 znaků."
|
msgstr "Záložní kódy mohou obsahovat pouze malá písmena nebo číslice a musí mít přesně 10 znaků."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr "Vytvořeno s"
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr "Vytvořeno komunitou pro komunitu."
|
msgstr "Vytvořeno komunitou pro komunitu."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr "Potvrďte nové heslo"
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Pokračovat"
|
msgstr "Pokračovat"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Kopírovat"
|
msgstr "Kopírovat"
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr "Kopírovat odkaz na životopis"
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr "Zkopírovat do schránky"
|
msgstr "Zkopírovat do schránky"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr "Vytořit"
|
msgstr "Vytořit"
|
||||||
@ -328,7 +328,7 @@ msgstr "Vytořit"
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr "Vytvořit nový účet"
|
msgstr "Vytvořit nový účet"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr "Vytvořit novou položku"
|
msgstr "Vytvořit novou položku"
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr "Datum:"
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Časový rozsah"
|
msgstr "Časový rozsah"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr "Stáhnout PDF"
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr "Stažení"
|
msgstr "Stažení"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr "Duplikovat"
|
msgstr "Duplikovat"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr "Duplikovat existující položku"
|
msgstr "Duplikovat existující položku"
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr "Duplikovat existující položku"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Duplikujte existující životopis"
|
msgstr "Duplikujte existující životopis"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Upravit"
|
msgstr "Upravit"
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr "Font Variants"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "Například informace o tom, které společnosti, které jste zaslali tento životopis, nebo odkazy na popisy práce, lze zaznamenat zde."
|
msgstr "Například informace o tom, které společnosti, které jste zaslali tento životopis, nebo odkazy na popisy práce, lze zaznamenat zde."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Zapomenout"
|
msgstr "Zapomenout"
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr "Zde můžete aktualizovat informace o Vašem účtu, jako je profilový
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr "Zde můžete aktualizovat svůj profil, abyste si mohli přizpůsobit a přizpůsobit svůj zážitek."
|
msgstr "Zde můžete aktualizovat svůj profil, abyste si mohli přizpůsobit a přizpůsobit svůj zážitek."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Hidden"
|
msgstr "Hidden"
|
||||||
@ -690,7 +690,7 @@ msgstr "Hostujte váš obnovený účet veřejně"
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr "Vždy rád slyším od uživatelů Reactive Resume se zpětnou vazbou nebo podporou. Zde jsou některé zprávy, které jsem obdržel. Pokud máte nějakou zpětnou vazbu, neváhejte mi napsat e-mail na <0>{email}</0>."
|
msgstr "Vždy rád slyším od uživatelů Reactive Resume se zpětnou vazbou nebo podporou. Zde jsou některé zprávy, které jsem obdržel. Pokud máte nějakou zpětnou vazbu, neváhejte mi napsat e-mail na <0>{email}</0>."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr "Ikona"
|
msgstr "Ikona"
|
||||||
@ -793,9 +793,9 @@ msgstr "john.doe@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Klíčová slova"
|
msgstr "Klíčová slova"
|
||||||
@ -809,7 +809,7 @@ msgstr "Popisek"
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Jazyk"
|
msgstr "Jazyk"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr "Naposledy aktualizováno {lastUpdated}"
|
msgstr "Naposledy aktualizováno {lastUpdated}"
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr "Poloha"
|
msgstr "Poloha"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr "březen 2023 - Současný"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Okraj"
|
msgstr "Okraj"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "MIT licence"
|
msgstr "MIT licence"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Název"
|
msgstr "Název"
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Název"
|
msgstr "Název"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Síť"
|
msgstr "Síť"
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr "Poznámka: Váš účet bude méně bezpečný."
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Poznámky"
|
msgstr "Poznámky"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr "Jednorázové heslo"
|
msgstr "Jednorázové heslo"
|
||||||
@ -984,7 +980,7 @@ msgstr "Jednorázové heslo"
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr "Jejda, server vrátil chybu."
|
msgstr "Jejda, server vrátil chybu."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr "Otevřít"
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr "Open Source"
|
msgstr "Open Source"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr "OpenAI nevrátil žádné volby pro tvůj text."
|
msgstr "OpenAI nevrátil žádné volby pro tvůj text."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "OpenAI integrace"
|
msgstr "OpenAI integrace"
|
||||||
|
|
||||||
|
#: 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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr "Pozice"
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr "Běží na"
|
msgstr "Běží na"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr "Běží o <0>Jednoduchý Icons</0>"
|
msgstr "Běží o <0>Jednoduchý Icons</0>"
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr "Reactive Resume vzkvétá díky jeho živé komunitě. Tento projekt vd
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Znovu"
|
msgstr "Znovu"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Odebrat"
|
msgstr "Odebrat"
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr "Odstranit stránku"
|
msgstr "Odstranit stránku"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr "Bohaté funkce, ne v cenách."
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr "Zaobleno"
|
msgstr "Zaobleno"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Uložit změny"
|
msgstr "Uložit změny"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr "Téma"
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr "Došlo k chybě při připojování k prohlížeči. Ujistěte se, že 'chrome' je spuštěn a dosažitelný."
|
msgstr "Došlo k chybě při připojování k prohlížeči. Ujistěte se, že 'chrome' je spuštěn a dosažitelný."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr "Tuto akci lze vrátit kliknutím na tlačítko zpět v plovoucím panelu nástrojů."
|
msgstr "Tuto akci lze vrátit kliknutím na tlačítko zpět v plovoucím panelu nástrojů."
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr "Zpět"
|
msgstr "Zpět"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr "Odemknutí obnovení vám umožní znovu provést změny."
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr "Neověřeno"
|
msgstr "Neověřeno"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr "Aktualizovat existující položku"
|
msgstr "Aktualizovat existující položku"
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr "Uživatel nemá přidružený \"tajný záznam\". Prosím nahlaste tento problém na GitHubu."
|
msgstr "Uživatel nemá přidružený \"tajný záznam\". Prosím nahlaste tento problém na GitHubu."
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr "Uživatelské jméno"
|
msgstr "Uživatelské jméno"
|
||||||
@ -1610,7 +1609,7 @@ msgstr "Validate"
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr "Potvrzeno"
|
msgstr "Potvrzeno"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Hodnota"
|
msgstr "Hodnota"
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr "Verze 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Zobrazení"
|
msgstr "Zobrazení"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Viditelné"
|
msgstr "Viditelné"
|
||||||
|
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr "Ověřujeme vaši e-mailovou adresu pouze proto, abychom se ujistili, že vám můžeme zaslat odkaz pro obnovení hesla, pokud zapomenete své heslo."
|
msgstr "Ověřujeme vaši e-mailovou adresu pouze proto, abychom se ujistili, že vám můžeme zaslat odkaz pro obnovení hesla, pokud zapomenete své heslo."
|
||||||
@ -1648,7 +1651,7 @@ msgstr "Ověřujeme vaši e-mailovou adresu pouze proto, abychom se ujistili, ž
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr "Webová stránka"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Co je nového v nejnovější verzi"
|
msgstr "Co je nového v nejnovější verzi"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Můžete přidat více klíčových slov oddělením čárkou nebo stisknutím klávesy enter."
|
msgstr "Můžete přidat více klíčových slov oddělením čárkou nebo stisknutím klávesy enter."
|
||||||
@ -1672,11 +1675,11 @@ msgstr "Můžete přidat více klíčových slov oddělením čárkou nebo stisk
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Můžete také zadat své uživatelské jméno."
|
msgstr "Můžete také zadat své uživatelské jméno."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
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í."
|
msgstr "Můžete využít OpenAI API, abyste vám pomohli vygenerovat obsah nebo vylepšit psaní při psaní vašeho obnovení."
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr "Můžete využít OpenAI API, abyste vám pomohli vygenerovat obsah nebo
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Můžete sledovat počet zobrazení, která jste obnovili, nebo kolik lidí si stáhlo obnovení povolením veřejného sdílení."
|
msgstr "Můžete sledovat počet zobrazení, která jste obnovili, nebo kolik lidí si stáhlo obnovení povolením veřejného sdílení."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "Máte možnost <0>získat vlastní OpenAI API klíč</0>. Tento klíč vás zmocňuje k pákovému API tak, jak to považujete za vhodné. Alternativně pokud chcete úplně zakázat AI funkce v reaktivním obnovení, můžete jednoduše odstranit klíč z nastavení."
|
msgstr "Máte možnost <0>získat vlastní OpenAI API klíč</0>. Tento klíč vás zmocňuje k pákovému API tak, jak to považujete za vhodné. Alternativně pokud chcete úplně zakázat AI funkce v reaktivním obnovení, můžete jednoduše odstranit klíč z nastavení."
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr "Máš email!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Váš účet a všechna data byla úspěšně odstraněna. Sboheme!"
|
msgstr "Váš účet a všechna data byla úspěšně odstraněna. Sboheme!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "Váš API klíč je bezpečně uložen v místním úložišti prohlížeče a používá se pouze při podávání žádostí OpenAI prostřednictvím jejich oficiálního SDK. Buďte ujištěni, že váš klíč není přenášen na žádný externí server, kromě interakce se službami OpenAI."
|
msgstr "Váš API klíč je bezpečně uložen v místním úložišti prohlížeče a používá se pouze při podávání žádostí OpenAI prostřednictvím jejich oficiálního SDK. Buďte ujištěni, že váš klíč není přenášen na žádný externí server, kromě interakce se službami OpenAI."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: da\n"
|
"Language: da\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:13\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Danish\n"
|
"Language-Team: Danish\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -38,7 +38,7 @@ msgstr "<0>Jeg byggede Reactive Resume for det meste af mig selv i min fritid, m
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr "<0>Jeg er sikker på, at appen ikke er perfekt, men det er mit mål.</0> <1>Hvis du stødte på problemer, mens du oprettede dit CV, eller har en idé, der ville hjælpe dig og andre brugere med at oprette dit CV lettere, så skriv et problem på github-repo eller send mig en e-mail om det.</1>"
|
msgstr "<0>Jeg er sikker på, at appen ikke er perfekt, men det er mit mål.</0> <1>Hvis du stødte på problemer, mens du oprettede dit CV, eller har en idé, der ville hjælpe dig og andre brugere med at oprette dit CV lettere, så skriv et problem på github-repo eller send mig en e-mail om det.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr "<0>Bemærk:</0> Ved at bruge OpenAI API'en anerkender og accepterer du <1>brugsbetingelserne</1> og <2>privatlivspolitik</2> skitseret af OpenAI. Bemærk venligst at Reactive Resume ikke bærer noget ansvar for ukorrekt eller uautoriseret brug af tjenesten, og eventuelle følgevirkninger eller ansvar påhviler udelukkende brugeren."
|
msgstr "<0>Bemærk:</0> Ved at bruge OpenAI API'en anerkender og accepterer du <1>brugsbetingelserne</1> og <2>privatlivspolitik</2> skitseret af OpenAI. Bemærk venligst at Reactive Resume ikke bærer noget ansvar for ukorrekt eller uautoriseret brug af tjenesten, og eventuelle følgevirkninger eller ansvar påhviler udelukkende brugeren."
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr "Accepterer kun {accept} filer"
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr "Konto"
|
msgstr "Konto"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr "Tilføj et brugerdefineret felt"
|
msgstr "Tilføj et brugerdefineret felt"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Tilføj et nyt element"
|
msgstr "Tilføj et nyt element"
|
||||||
@ -146,7 +146,7 @@ msgstr "Alle med linket kan se og downloade CV'et."
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr "Alle med dette link kan se og downloade CV'et. Del det på din profil eller med rekrutterere."
|
msgstr "Alle med dette link kan se og downloade CV'et. Del det på din profil eller med rekrutterere."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr "Er du sikker på, at du vil slette dette element?"
|
msgstr "Er du sikker på, at du vil slette dette element?"
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr "Backup kode"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Backup-koder må kun indeholde små bogstaver eller tal og skal bestå af nøjagtigt 10 tegn."
|
msgstr "Backup-koder må kun indeholde små bogstaver eller tal og skal bestå af nøjagtigt 10 tegn."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr "Lavet med"
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr "Af fællesskabet, for fællesskabet."
|
msgstr "Af fællesskabet, for fællesskabet."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr "Bekræft ny adgangskode"
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Forsæt"
|
msgstr "Forsæt"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Kopiér"
|
msgstr "Kopiér"
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr "Kopiér link til CV"
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr "Kopiér til Udklipsholder"
|
msgstr "Kopiér til Udklipsholder"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr "Opret"
|
msgstr "Opret"
|
||||||
@ -328,7 +328,7 @@ msgstr "Opret"
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr "Opret en ny konto"
|
msgstr "Opret en ny konto"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr "Opret et nyt emne"
|
msgstr "Opret et nyt emne"
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr "Dato"
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Dato eller datointerval"
|
msgstr "Dato eller datointerval"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr "Download PDF"
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr "Downloads"
|
msgstr "Downloads"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr "Duplikér"
|
msgstr "Duplikér"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr "Duplikér et eksisterende element"
|
msgstr "Duplikér et eksisterende element"
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr "Duplikér et eksisterende element"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Duplikér et eksisterende CV"
|
msgstr "Duplikér et eksisterende CV"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Rediger"
|
msgstr "Rediger"
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr "Skrifttype-varianter"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "For eksempel kan oplysninger om hvilke virksomheder du har sendt dette CV til eller links til jobbeskrivelserne noteres her."
|
msgstr "For eksempel kan oplysninger om hvilke virksomheder du har sendt dette CV til eller links til jobbeskrivelserne noteres her."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Glem"
|
msgstr "Glem"
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr "Her kan du opdatere dine kontooplysninger såsom dit profilbillede, navn
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr "Her kan du opdatere din profil for at tilpasse og personliggøre din oplevelse."
|
msgstr "Her kan du opdatere din profil for at tilpasse og personliggøre din oplevelse."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Skjult"
|
msgstr "Skjult"
|
||||||
@ -690,7 +690,7 @@ msgstr "Gør dit CV offentligt tilgængeligt"
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr "Jeg elsker altid at høre fra brugerne af Reactive Resume med feedback eller support. Her er nogle af de beskeder, jeg har modtaget. Hvis du har noget feedback, er du velkommen til at sende mig en e-mail på <0>{email}</0>."
|
msgstr "Jeg elsker altid at høre fra brugerne af Reactive Resume med feedback eller support. Her er nogle af de beskeder, jeg har modtaget. Hvis du har noget feedback, er du velkommen til at sende mig en e-mail på <0>{email}</0>."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr "Ikon"
|
msgstr "Ikon"
|
||||||
@ -793,9 +793,9 @@ msgstr "anders.andersen@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Nøgleord"
|
msgstr "Nøgleord"
|
||||||
@ -809,7 +809,7 @@ msgstr "Label"
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Sprog"
|
msgstr "Sprog"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr "Sidst opdateret {lastUpdated}"
|
msgstr "Sidst opdateret {lastUpdated}"
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr "Beliggenhed"
|
msgstr "Beliggenhed"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr "Marts 2023 - nutid"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Margen"
|
msgstr "Margen"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "MIT-licens"
|
msgstr "MIT-licens"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Navn"
|
msgstr "Navn"
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Navn"
|
msgstr "Navn"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Netværk"
|
msgstr "Netværk"
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr "Bemærk: Dette vil gøre din konto mindre sikker."
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Noter"
|
msgstr "Noter"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr "Engangskodeord"
|
msgstr "Engangskodeord"
|
||||||
@ -984,7 +980,7 @@ msgstr "Engangskodeord"
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr "Ups, serveren returnerede en fejl."
|
msgstr "Ups, serveren returnerede en fejl."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr "Åben"
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr "Åben kilde"
|
msgstr "Åben kilde"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr "OpenAI returnerede ikke nogen valgmuligheder for din tekst."
|
msgstr "OpenAI returnerede ikke nogen valgmuligheder for din tekst."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "OpenAI-integration"
|
msgstr "OpenAI-integration"
|
||||||
|
|
||||||
|
#: 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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr "Stilling"
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr "Drevet af"
|
msgstr "Drevet af"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr "Drevet af <0>Simple Icons</0>"
|
msgstr "Drevet af <0>Simple Icons</0>"
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr "Reactive Resume trives takket være sit livlige fællesskab. Dette proje
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Gentag"
|
msgstr "Gentag"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Fjern"
|
msgstr "Fjern"
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr "Fjern side"
|
msgstr "Fjern side"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr "Rig på funktioner, ikke på priser."
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr "Afrundet"
|
msgstr "Afrundet"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Gem ændringer"
|
msgstr "Gem ændringer"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr "Tema"
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr "Der opstod en fejl ved forbindelsen til browseren. Sørg for, at 'chrome' kører og er tilgængelig."
|
msgstr "Der opstod en fejl ved forbindelsen til browseren. Sørg for, at 'chrome' kører og er tilgængelig."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr "Denne handling kan annulleres ved at klikke på fortryd-knappen i den flydende værktøjslinje."
|
msgstr "Denne handling kan annulleres ved at klikke på fortryd-knappen i den flydende værktøjslinje."
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr "Fortryd"
|
msgstr "Fortryd"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr "Hvis du låser et CV op, kan du ændre det igen."
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr "Ikke verificeret"
|
msgstr "Ikke verificeret"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr "Opdater et eksisterende element"
|
msgstr "Opdater et eksisterende element"
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr "Brugeren har ikke en tilknyttet 'secrets'-post. Rapporter venligst dette problem på GitHub."
|
msgstr "Brugeren har ikke en tilknyttet 'secrets'-post. Rapporter venligst dette problem på GitHub."
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr "Brugernavn"
|
msgstr "Brugernavn"
|
||||||
@ -1610,7 +1609,7 @@ msgstr "Valider"
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr "Valideret"
|
msgstr "Valideret"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Værdi"
|
msgstr "Værdi"
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr "Version 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Visninger"
|
msgstr "Visninger"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Synlig"
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr "Vi bekræfter kun din e-mailadresse for at sikre, at vi kan sende dig et link til nulstilling af adgangskoden, hvis du glemmer din adgangskode."
|
msgstr "Vi bekræfter kun din e-mailadresse for at sikre, at vi kan sende dig et link til nulstilling af adgangskoden, hvis du glemmer din adgangskode."
|
||||||
@ -1648,7 +1651,7 @@ 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/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr "Hjemmeside"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Hvad er nyt i den seneste version"
|
msgstr "Hvad er nyt i den seneste version"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Du kan tilføje flere søgeord ved at adskille dem med et komma eller trykke på enter."
|
msgstr "Du kan tilføje flere søgeord ved at adskille dem med et komma eller trykke på enter."
|
||||||
@ -1672,11 +1675,11 @@ msgstr "Du kan tilføje flere søgeord ved at adskille dem med et komma eller tr
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Du kan også indtaste dit brugernavn."
|
msgstr "Du kan også indtaste dit brugernavn."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
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."
|
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."
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr "Du kan gøre brug af OpenAI API til at hjælpe dig med at generere indho
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Du kan spore antallet af visninger, dit CV har fået, eller hvor mange der har downloadet CV'et ved at aktivere offentlig deling."
|
msgstr "Du kan spore antallet af visninger, dit CV har fået, eller hvor mange der har downloadet CV'et ved at aktivere offentlig deling."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "Du har mulighed for at <0>få din egen OpenAI API-nøgle</0>. Denne nøgle giver dig mulighed for at udnytte API'en, som det passer dig. Alternativt, hvis du ønsker at deaktivere AI-funktionerne i Reactive Resume helt, kan du blot fjerne nøglen fra dine indstillinger."
|
msgstr "Du har mulighed for at <0>få din egen OpenAI API-nøgle</0>. Denne nøgle giver dig mulighed for at udnytte API'en, som det passer dig. Alternativt, hvis du ønsker at deaktivere AI-funktionerne i Reactive Resume helt, kan du blot fjerne nøglen fra dine indstillinger."
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr "Du har post!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Din konto og alle dine data er blevet slettet. Vi siger farvel!"
|
msgstr "Din konto og alle dine data er blevet slettet. Vi siger farvel!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "Din API-nøgle gemmes sikkert i browserens lokale lager og bruges kun, når du sender anmodninger til OpenAI via deres officielle SDK. Du kan være sikker på, at din nøgle ikke overføres til nogen ekstern server, undtagen når du interagerer med OpenAI's tjenester."
|
msgstr "Din API-nøgle gemmes sikkert i browserens lokale lager og bruges kun, når du sender anmodninger til OpenAI via deres officielle SDK. Du kan være sikker på, at din nøgle ikke overføres til nogen ekstern server, undtagen når du interagerer med OpenAI's tjenester."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: de\n"
|
"Language: de\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:13\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: German\n"
|
"Language-Team: German\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -38,7 +38,7 @@ msgstr "<0>Ich habe Reactive Resume größtenteils in meiner Freizeit fast allei
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr "<0>Ich bin mir sicher, dass die App nicht perfekt ist, aber ich wünsche mir, dass sie es wird.</0><1>Du hast beim Erstellen Deines Lebenslaufs ein Problem gefunden oder eine Idee, die Dir und anderen Nutzern dabei helfen würde? Dann erstelle ein Ticket auf GitHub oder schicke mir eine E-Mail.</1>"
|
msgstr "<0>Ich bin mir sicher, dass die App nicht perfekt ist, aber ich wünsche mir, dass sie es wird.</0><1>Du hast beim Erstellen Deines Lebenslaufs ein Problem gefunden oder eine Idee, die Dir und anderen Nutzern dabei helfen würde? Dann erstelle ein Ticket auf GitHub oder schicke mir eine E-Mail.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr "<0>Hinweis:</0> Wenn du die OpenAI API nutzt, erkennst du die <1>Nutzungsbedingungen</1> und die <2>Datenschutzrichtlinie</2> von OpenAI an und akzeptierst diese. Bitte beachte, dass Reactive Resume keine Verantwortung für eine unsachgemäße oder unbefugte Nutzung des Dienstes übernimmt und eventuelle Folgen oder Haftungsansprüche ausschließlich beim Nutzer liegen."
|
msgstr "<0>Hinweis:</0> Wenn du die OpenAI API nutzt, erkennst du die <1>Nutzungsbedingungen</1> und die <2>Datenschutzrichtlinie</2> von OpenAI an und akzeptierst diese. Bitte beachte, dass Reactive Resume keine Verantwortung für eine unsachgemäße oder unbefugte Nutzung des Dienstes übernimmt und eventuelle Folgen oder Haftungsansprüche ausschließlich beim Nutzer liegen."
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr "Akzeptiert nur {accept}-Dateien"
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr "Konto"
|
msgstr "Konto"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr "Benutzerdefiniertes Feld hinzufügen"
|
msgstr "Benutzerdefiniertes Feld hinzufügen"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Eintrag hinzufügen"
|
msgstr "Eintrag hinzufügen"
|
||||||
@ -146,7 +146,7 @@ msgstr "Jeder, der den Link hat, kann den Lebenslauf ansehen und herunterladen."
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr "Jeder, der den Link hat, kann den Lebenslauf ansehen und herunterladen. Teile ihn auf deinem Profil oder sende ihn an Recruiter."
|
msgstr "Jeder, der den Link hat, kann den Lebenslauf ansehen und herunterladen. Teile ihn auf deinem Profil oder sende ihn an Recruiter."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr "Sicher, dass Du diesen Eintrag löschen möchtest?"
|
msgstr "Sicher, dass Du diesen Eintrag löschen möchtest?"
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr "Backup-Code"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Backup-Codes dürfen nur Kleinbuchstaben oder Zahlen enthalten und müssen aus genau 10 Zeichen bestehen."
|
msgstr "Backup-Codes dürfen nur Kleinbuchstaben oder Zahlen enthalten und müssen aus genau 10 Zeichen bestehen."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "Basis URL"
|
msgstr "Basis URL"
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr "Gebaut mit"
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr "Von der Gemeinschaft, für die Gemeinschaft."
|
msgstr "Von der Gemeinschaft, für die Gemeinschaft."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr "Neues Passwort bestätigen"
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Weiter"
|
msgstr "Weiter"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Kopieren"
|
msgstr "Kopieren"
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr "Link zum Lebenslauf kopieren"
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr "In die Zwischenablage kopieren"
|
msgstr "In die Zwischenablage kopieren"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr "Erstellen"
|
msgstr "Erstellen"
|
||||||
@ -328,7 +328,7 @@ msgstr "Erstellen"
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr "Neues Konto erstellen"
|
msgstr "Neues Konto erstellen"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr "Neuen Eintrag erstellen"
|
msgstr "Neuen Eintrag erstellen"
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr "Zeitraum"
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Datum oder Zeitraum"
|
msgstr "Datum oder Zeitraum"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr "PDF herunterladen"
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr "Downloads"
|
msgstr "Downloads"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr "Duplizieren"
|
msgstr "Duplizieren"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr "Vorhandenen Eintrag duplizieren"
|
msgstr "Vorhandenen Eintrag duplizieren"
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr "Vorhandenen Eintrag duplizieren"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Vorhandenen Lebenslauf duplizieren"
|
msgstr "Vorhandenen Lebenslauf duplizieren"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Bearbeiten"
|
msgstr "Bearbeiten"
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr "Schriftvariante"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "Zum Beispiel kannst Du hier notieren, an welche Unternehmen Du diesen Lebenslauf geschickt hast. Oder die Links zu den Stellenbeschreibungen."
|
msgstr "Zum Beispiel kannst Du hier notieren, an welche Unternehmen Du diesen Lebenslauf geschickt hast. Oder die Links zu den Stellenbeschreibungen."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Löschen"
|
msgstr "Löschen"
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr "Hier kannst du deine Kontoinformationen aktualisieren, wie zum Beispiel
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr "Hier kannst du dein Profil aktualisieren, um deine Erfahrung individuell anzupassen und zu personalisieren."
|
msgstr "Hier kannst du dein Profil aktualisieren, um deine Erfahrung individuell anzupassen und zu personalisieren."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Ausgeblendet"
|
msgstr "Ausgeblendet"
|
||||||
@ -690,7 +690,7 @@ msgstr "Hoste Deinen Lebenslauf öffentlich"
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr "Ich freue mich über jedes Feedback oder Unterstützung der Benutzer von Reactive Resume. Hier sind einige der Nachrichten, die ich erhalten habe. Wenn Du mir Feedback geben möchtest, schick mir gerne eine E-Mail an <0>{email}</0>."
|
msgstr "Ich freue mich über jedes Feedback oder Unterstützung der Benutzer von Reactive Resume. Hier sind einige der Nachrichten, die ich erhalten habe. Wenn Du mir Feedback geben möchtest, schick mir gerne eine E-Mail an <0>{email}</0>."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr "Symbol"
|
msgstr "Symbol"
|
||||||
@ -793,9 +793,9 @@ msgstr "max.mustermann@beispiel.de"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Schlüsselwörter"
|
msgstr "Schlüsselwörter"
|
||||||
@ -809,7 +809,7 @@ msgstr "Beschriftung"
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Sprache"
|
msgstr "Sprache"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr "Letzte Aktualisierung: {lastUpdated}"
|
msgstr "Letzte Aktualisierung: {lastUpdated}"
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr "Ort"
|
msgstr "Ort"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr "März 2023 – Heute"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Außenabstand"
|
msgstr "Außenabstand"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "Max Tokens"
|
msgstr "Max Tokens"
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr "Max Tokens"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "MIT Lizenz"
|
msgstr "MIT Lizenz"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "Model"
|
msgstr "Model"
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr "Model"
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Name"
|
msgstr "Name"
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Name"
|
msgstr "Name"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Netzwerk"
|
msgstr "Netzwerk"
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr "Achtung: Dadurch wird dein Konto weniger sicher sein."
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Notizen"
|
msgstr "Notizen"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr "Ollama Integration"
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr "Einmalpasswort"
|
msgstr "Einmalpasswort"
|
||||||
@ -984,7 +980,7 @@ msgstr "Einmalpasswort"
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr "Hoppla, der Server hat einen Fehler zurückgegeben."
|
msgstr "Hoppla, der Server hat einen Fehler zurückgegeben."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr "Öffnen"
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr "Open Source"
|
msgstr "Open Source"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr "OpenAI / Ollama API Schlüssel"
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr "OpenAI hat keine Auswahl für deinen Text zurückgegeben."
|
msgstr "OpenAI hat keine Auswahl für deinen Text zurückgegeben."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "OpenAI Integration"
|
msgstr "OpenAI Integration"
|
||||||
|
|
||||||
|
#: 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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr "Position"
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr "Powered by"
|
msgstr "Powered by"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr "Powered by <0>Simple Icons</0>"
|
msgstr "Powered by <0>Simple Icons</0>"
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr "Reactive Resume blüht dank seiner lebendigen Gemeinschaft auf. Dieses P
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Wiederherstellen"
|
msgstr "Wiederherstellen"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Entfernen"
|
msgstr "Entfernen"
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr "Seite entfernen"
|
msgstr "Seite entfernen"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr "Nur die Anzahl der Funktionen ist hoch, nicht der Preis."
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr "Abgerundet"
|
msgstr "Abgerundet"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Änderungen speichern"
|
msgstr "Änderungen speichern"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "Lokal speichern"
|
msgstr "Lokal speichern"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Gespeichert"
|
msgstr "Gespeichert"
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr "Design"
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr "Beim Herstellen der Verbindung zum Browser ist ein Fehler aufgetreten. Bitte stelle sicher, dass 'chrome' läuft wird und erreichbar ist."
|
msgstr "Beim Herstellen der Verbindung zum Browser ist ein Fehler aufgetreten. Bitte stelle sicher, dass 'chrome' läuft wird und erreichbar ist."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr "Du kannst diese Aktion rückgängig machen, indem Du auf Knopf \"Rückgängig\" in der Symbolleiste unten klickst."
|
msgstr "Du kannst diese Aktion rückgängig machen, indem Du auf Knopf \"Rückgängig\" in der Symbolleiste unten klickst."
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr "Rückgängig machen"
|
msgstr "Rückgängig machen"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr "Wenn Du Deinen Lebenslauf entsperrst, kannst Du wieder Änderungen daran
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr "Noch nicht verifiziert"
|
msgstr "Noch nicht verifiziert"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr "Vorhandenen Eintrag verändern"
|
msgstr "Vorhandenen Eintrag verändern"
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr "Das Benutzerkonto hat keinen Eintrag für 'secrets'. Bitte melde dieses Problem auf GitHub."
|
msgstr "Das Benutzerkonto hat keinen Eintrag für 'secrets'. Bitte melde dieses Problem auf GitHub."
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr "Benutzername"
|
msgstr "Benutzername"
|
||||||
@ -1610,7 +1609,7 @@ msgstr "Überprüfen"
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr "Überprüft"
|
msgstr "Überprüft"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Wert"
|
msgstr "Wert"
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr "Version 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Aufrufe"
|
msgstr "Aufrufe"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Sichtbar"
|
msgstr "Sichtbar"
|
||||||
|
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr "Wir verifizieren deine E-Mail-Adresse nur, um sicherzustellen, dass wir dir einen Link zum Zurücksetzen deines Passworts senden können, falls du es vergisst."
|
msgstr "Wir verifizieren deine E-Mail-Adresse nur, um sicherzustellen, dass wir dir einen Link zum Zurücksetzen deines Passworts senden können, falls du es vergisst."
|
||||||
@ -1648,7 +1651,7 @@ msgstr "Wir verifizieren deine E-Mail-Adresse nur, um sicherzustellen, dass wir
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr "Webseite"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Was ist neu in der aktuellsten Version"
|
msgstr "Was ist neu in der aktuellsten Version"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Du kannst mehrere Schlüsselwörter (Keywords) hinzufügen, indem du sie mit einem Komma trennst oder die Eingabetaste drückst."
|
msgstr "Du kannst mehrere Schlüsselwörter (Keywords) hinzufügen, indem du sie mit einem Komma trennst oder die Eingabetaste drückst."
|
||||||
@ -1672,11 +1675,11 @@ msgstr "Du kannst mehrere Schlüsselwörter (Keywords) hinzufügen, indem du sie
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Du kannst alternativ auch deinen Benutzernamen eingeben."
|
msgstr "Du kannst alternativ auch deinen Benutzernamen eingeben."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 die Integration mit Ollama ganz einfach vornehmen, indem Sie den API-Schlüssel auf `sk-1234567890abcdef` und die Basis-URL auf Ihre Ollama-URL setzen, z.B. `http://localhost:11434/v1`. Sie können auch Modelle auswählen und die maximalen Token festlegen."
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
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."
|
msgstr "Du kannst die OpenAI API nutzen, um Inhalte zu generieren oder deine Schreibfähigkeiten beim Verfassen deines Lebenslaufs zu verbessern."
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr "Du kannst die OpenAI API nutzen, um Inhalte zu generieren oder deine Sch
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Hier siehst Du die Aufrufe und Downloads dieses Lebenslaufs, wenn Du ihn öffentlich teilst."
|
msgstr "Hier siehst Du die Aufrufe und Downloads dieses Lebenslaufs, wenn Du ihn öffentlich teilst."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "Du hast die Möglichkeit, <0>deinen eigenen OpenAI API-Schlüssel zu bekommen</0>. Mit diesem Schlüssel kannst du die API nach Belieben nutzen. Wenn du die KI-Funktionen in Reactive Resume komplett deaktivieren möchtest, entferne einfach den Schlüssel in deinen Einstellungen."
|
msgstr "Du hast die Möglichkeit, <0>deinen eigenen OpenAI API-Schlüssel zu bekommen</0>. Mit diesem Schlüssel kannst du die API nach Belieben nutzen. Wenn du die KI-Funktionen in Reactive Resume komplett deaktivieren möchtest, entferne einfach den Schlüssel in deinen Einstellungen."
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr "Du hast Post!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Dein Konto und alle deine Daten wurden erfolgreich gelöscht. Bis bald!"
|
msgstr "Dein Konto und alle deine Daten wurden erfolgreich gelöscht. Bis bald!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "Dein API-Schlüssel wird sicher im lokalen Speicher deines Browsers gespeichert und kommt nur zum Einsatz, wenn du mit OpenAI's Diensten über deren offizielles SDK Kontakt aufnimmst. Keine Sorge, dein Schlüssel wird nur an OpenAI gesendet und sonst an keinen anderen Server."
|
msgstr "Dein API-Schlüssel wird sicher im lokalen Speicher deines Browsers gespeichert und kommt nur zum Einsatz, wenn du mit OpenAI's Diensten über deren offizielles SDK Kontakt aufnimmst. Keine Sorge, dein Schlüssel wird nur an OpenAI gesendet und sonst an keinen anderen Server."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: el\n"
|
"Language: el\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:13\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Greek\n"
|
"Language-Team: Greek\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -38,7 +38,7 @@ msgstr "<0>Κατασκεύασα το Reactive Resume κυρίως μόνος
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr "<0>Είμαι βέβαιος ότι η εφαρμογή δεν είναι τέλεια, αλλά θα ήθελα να είναι. </0><1>Αν αντιμετωπίσατε προβλήματα κατά τη δημιουργία του βιογραφικού σας, ή έχετε κάποια ιδέα που μπορεί να βοηθήσει εσάς ή άλλους για να δημιουργήσετε το βιογραφικό πιο εύκολα, στείλτε μου ένα email σχετικά με αυτό. </1>"
|
msgstr "<0>Είμαι βέβαιος ότι η εφαρμογή δεν είναι τέλεια, αλλά θα ήθελα να είναι. </0><1>Αν αντιμετωπίσατε προβλήματα κατά τη δημιουργία του βιογραφικού σας, ή έχετε κάποια ιδέα που μπορεί να βοηθήσει εσάς ή άλλους για να δημιουργήσετε το βιογραφικό πιο εύκολα, στείλτε μου ένα email σχετικά με αυτό. </1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr "<0>Σημείωση: </0>Χρησιμοποιώντας το API του OpenAI, αναγνωρίζετε και αποδέχεστε τους <1>όρους χρήσης</1> και την <2>πολιτική απορρήτου</2> που περιγράφονται από το OpenAI. Σημειώστε ότι η Reactive Resume δεν φέρει καμία ευθύνη για οποιαδήποτε ακατάλληλη ή μη εξουσιοδοτημένη χρήση της υπηρεσίας, και οποιεσδήποτε επακόλουθες επιπτώσεις ή ευθύνες βαρύνουν αποκλειστικά τον χρήστη."
|
msgstr "<0>Σημείωση: </0>Χρησιμοποιώντας το API του OpenAI, αναγνωρίζετε και αποδέχεστε τους <1>όρους χρήσης</1> και την <2>πολιτική απορρήτου</2> που περιγράφονται από το OpenAI. Σημειώστε ότι η Reactive Resume δεν φέρει καμία ευθύνη για οποιαδήποτε ακατάλληλη ή μη εξουσιοδοτημένη χρήση της υπηρεσίας, και οποιεσδήποτε επακόλουθες επιπτώσεις ή ευθύνες βαρύνουν αποκλειστικά τον χρήστη."
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr "Δέχεται μόνο αρχεία {accept}"
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr "Λογαριασμός χρήστη"
|
msgstr "Λογαριασμός χρήστη"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr "Προσθέστε ένα προσαρμοσμένο πεδίο"
|
msgstr "Προσθέστε ένα προσαρμοσμένο πεδίο"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Προσθήκη νέου αντικείμενου"
|
msgstr "Προσθήκη νέου αντικείμενου"
|
||||||
@ -146,7 +146,7 @@ msgstr "Οποιοσδήποτε διαθέτει τον σύνδεσμο μπο
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr "Οποιοσδήποτε με αυτόν τον σύνδεσμο μπορεί να δει και να κατεβάσει το βιογραφικό σημείωμα. Μοιραστείτε το στο προφίλ σας ή με τους υπεύθυνους προσλήψεων."
|
msgstr "Οποιοσδήποτε με αυτόν τον σύνδεσμο μπορεί να δει και να κατεβάσει το βιογραφικό σημείωμα. Μοιραστείτε το στο προφίλ σας ή με τους υπεύθυνους προσλήψεων."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το στοιχείο;"
|
msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το στοιχείο;"
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr "Εφεδρικός κωδικός"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Οι κωδικοί αντιγράφων ασφαλείας μπορούν να περιέχουν μόνο πεζά γράμματα ή αριθμούς και πρέπει να είναι ακριβώς 10 χαρακτήρες."
|
msgstr "Οι κωδικοί αντιγράφων ασφαλείας μπορούν να περιέχουν μόνο πεζά γράμματα ή αριθμούς και πρέπει να είναι ακριβώς 10 χαρακτήρες."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "https://rxresu.me/builder/cm23wdob830tdmtv5iyuvprzz"
|
msgstr "https://rxresu.me/builder/cm23wdob830tdmtv5iyuvprzz"
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr "Δημιουργημένο με:"
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr "Από την κοινότητα, για την κοινότητα."
|
msgstr "Από την κοινότητα, για την κοινότητα."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr "Επιβεβαιώστε τον νέο κωδικό πρόσβασης"
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Συνέχεια"
|
msgstr "Συνέχεια"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Αντιγραφή"
|
msgstr "Αντιγραφή"
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr "Αντιγραφή συνδέσμου στο βιογραφικό σημ
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr "Αντιγραφή στο Πρόχειρο"
|
msgstr "Αντιγραφή στο Πρόχειρο"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr "Δημιουργία"
|
msgstr "Δημιουργία"
|
||||||
@ -328,7 +328,7 @@ msgstr "Δημιουργία"
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr "Δημιουργία νέου λογαριασμού"
|
msgstr "Δημιουργία νέου λογαριασμού"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr "Δημιουργία νέου στοιχείου"
|
msgstr "Δημιουργία νέου στοιχείου"
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr "Ημερομηνία"
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Ημερομηνία ή εύρος ημερομηνιών"
|
msgstr "Ημερομηνία ή εύρος ημερομηνιών"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr "Λήψη PDF"
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr "Λήψεις"
|
msgstr "Λήψεις"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr "Αντίγραφο"
|
msgstr "Αντίγραφο"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr "Αντιγραφή ενός υπάρχοντος στοιχείου"
|
msgstr "Αντιγραφή ενός υπάρχοντος στοιχείου"
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr "Αντιγραφή ενός υπάρχοντος στοιχείου"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Αντιγραφή ενός υπάρχοντος βιογραφικού σημειώματος"
|
msgstr "Αντιγραφή ενός υπάρχοντος βιογραφικού σημειώματος"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Τροποποίηση"
|
msgstr "Τροποποίηση"
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr "Παραλλαγές γραμματοσειράς"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "Για παράδειγμα, πληροφορίες σχετικά με τις εταιρείες στις οποίες στείλατε το βιογραφικό σας ή τους συνδέσμους προς τις περιγραφές θέσεων εργασίας μπορούν να σημειωθούν εδώ."
|
msgstr "Για παράδειγμα, πληροφορίες σχετικά με τις εταιρείες στις οποίες στείλατε το βιογραφικό σας ή τους συνδέσμους προς τις περιγραφές θέσεων εργασίας μπορούν να σημειωθούν εδώ."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Ξεχάστε το"
|
msgstr "Ξεχάστε το"
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr "Εδώ, μπορείτε να ενημερώσετε τις πληροφ
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr "Εδώ, μπορείτε να ενημερώσετε το προφίλ σας για να προσαρμόσετε και να εξατομικεύσετε την εμπειρία σας."
|
msgstr "Εδώ, μπορείτε να ενημερώσετε το προφίλ σας για να προσαρμόσετε και να εξατομικεύσετε την εμπειρία σας."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Hidden"
|
msgstr "Hidden"
|
||||||
@ -690,7 +690,7 @@ msgstr "Φιλοξενήστε το βιογραφικό σας δημόσια"
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr "Πάντα μου αρέσει να ακούω από τους χρήστες του Reactive Βιογραφικού με ανατροφοδότηση ή υποστήριξη. Εδώ είναι μερικά από τα μηνύματα που έχω λάβει. Αν έχετε κάποια σχόλια, μη διστάσετε να μου στείλετε ένα email στο <0>{email}</0>."
|
msgstr "Πάντα μου αρέσει να ακούω από τους χρήστες του Reactive Βιογραφικού με ανατροφοδότηση ή υποστήριξη. Εδώ είναι μερικά από τα μηνύματα που έχω λάβει. Αν έχετε κάποια σχόλια, μη διστάσετε να μου στείλετε ένα email στο <0>{email}</0>."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr "Εικονίδιο"
|
msgstr "Εικονίδιο"
|
||||||
@ -793,9 +793,9 @@ msgstr "john.doe@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Λέξεις-κλειδιά"
|
msgstr "Λέξεις-κλειδιά"
|
||||||
@ -809,7 +809,7 @@ msgstr "Ετικέτα"
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Γλώσσα"
|
msgstr "Γλώσσα"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr "Τελευταία ενημέρωση {lastUpdated}"
|
msgstr "Τελευταία ενημέρωση {lastUpdated}"
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr "Τοποθεσία"
|
msgstr "Τοποθεσία"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr "Μάρτιος 2023 - Παρόν"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Περιθώρια"
|
msgstr "Περιθώρια"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "MIT License"
|
msgstr "MIT License"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Ονομα"
|
msgstr "Ονομα"
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Ονομα"
|
msgstr "Ονομα"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Τύπος δικτύου"
|
msgstr "Τύπος δικτύου"
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr "Σημείωση: Αυτό θα καταστήσει το λογαρια
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Σημειώσεις"
|
msgstr "Σημειώσεις"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr "Κωδικός πρόσβασης μίας χρήσης"
|
msgstr "Κωδικός πρόσβασης μίας χρήσης"
|
||||||
@ -984,7 +980,7 @@ msgstr "Κωδικός πρόσβασης μίας χρήσης"
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr "Ουπς, ο διακομιστής επέστρεψε σφάλμα."
|
msgstr "Ουπς, ο διακομιστής επέστρεψε σφάλμα."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr "Άνοιγμα"
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr "Ανοικτού Κώδικα"
|
msgstr "Ανοικτού Κώδικα"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr "Το OpenAI δεν επέστρεψε καμία επιλογή για το κείμενό σας."
|
msgstr "Το OpenAI δεν επέστρεψε καμία επιλογή για το κείμενό σας."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "Ενσωμάτωση OpenAI"
|
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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr "Θέση"
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr "Υποστηρίζεται από"
|
msgstr "Υποστηρίζεται από"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr "Powered by <0>Simple Icons</0>"
|
msgstr "Powered by <0>Simple Icons</0>"
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr "Το Reactive Resume ευδοκιμεί χάρη στη ζωντανή
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Επανάληψη"
|
msgstr "Επανάληψη"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Αφαιρεση"
|
msgstr "Αφαιρεση"
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr "Αφαίρεση σελίδας"
|
msgstr "Αφαίρεση σελίδας"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr "Πλούσιο σε χαρακτηριστικά, όχι σε τιμές
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr "Στρογγυλεμένο"
|
msgstr "Στρογγυλεμένο"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Αποθήκευση Αλλαγών;"
|
msgstr "Αποθήκευση Αλλαγών;"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr "Θέμα"
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr "Υπήρξε σφάλμα σύνδεσης με το πρόγραμμα περιήγησης. Παρακαλούμε βεβαιωθείτε ότι το 'chrome' λειτουργεί και είναι προσβάσιμο."
|
msgstr "Υπήρξε σφάλμα σύνδεσης με το πρόγραμμα περιήγησης. Παρακαλούμε βεβαιωθείτε ότι το 'chrome' λειτουργεί και είναι προσβάσιμο."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr "Αυτή η ενέργεια μπορεί να ανακληθεί κάνοντας κλικ στο κουμπί αναίρεσης στην κυμαινόμενη γραμμή εργαλείων."
|
msgstr "Αυτή η ενέργεια μπορεί να ανακληθεί κάνοντας κλικ στο κουμπί αναίρεσης στην κυμαινόμενη γραμμή εργαλείων."
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr "Αναίρεση"
|
msgstr "Αναίρεση"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr "Το ξεκλείδωμα ενός βιογραφικού σημειώμ
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr "Μη επαληθευμένο"
|
msgstr "Μη επαληθευμένο"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr "Ενημέρωση ενός υπάρχοντος στοιχείου"
|
msgstr "Ενημέρωση ενός υπάρχοντος στοιχείου"
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr "Ο χρήστης δεν έχει συσχετισμένη εγγραφή \"secrets\". Αναφέρετε αυτό το ζήτημα στο GitHub."
|
msgstr "Ο χρήστης δεν έχει συσχετισμένη εγγραφή \"secrets\". Αναφέρετε αυτό το ζήτημα στο GitHub."
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr "Όνομα Χρήστη"
|
msgstr "Όνομα Χρήστη"
|
||||||
@ -1610,7 +1609,7 @@ msgstr "Επικύρωση"
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr "Επιβεβαιωμένο"
|
msgstr "Επιβεβαιωμένο"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Αξία"
|
msgstr "Αξία"
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr "Έκδοση 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Προβολές"
|
msgstr "Προβολές"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Ορατό"
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr "Επαληθεύουμε τη διεύθυνση email σας μόνο για να διασφαλίσουμε ότι μπορούμε να σας στείλουμε έναν σύνδεσμο επαναφοράς κωδικού πρόσβασης σε περίπτωση που ξεχάσετε τον κωδικό πρόσβασής σας."
|
msgstr "Επαληθεύουμε τη διεύθυνση email σας μόνο για να διασφαλίσουμε ότι μπορούμε να σας στείλουμε έναν σύνδεσμο επαναφοράς κωδικού πρόσβασης σε περίπτωση που ξεχάσετε τον κωδικό πρόσβασής σας."
|
||||||
@ -1648,7 +1651,7 @@ msgstr "Επαληθεύουμε τη διεύθυνση email σας μόνο
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr "Ιστοσελίδα"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Τι νέο υπάρχει στην τελευταία έκδοση"
|
msgstr "Τι νέο υπάρχει στην τελευταία έκδοση"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Μπορείτε να προσθέσετε πολλαπλές λέξεις-κλειδιά διαχωρίζοντάς τες με κόμμα ή πατώντας enter."
|
msgstr "Μπορείτε να προσθέσετε πολλαπλές λέξεις-κλειδιά διαχωρίζοντάς τες με κόμμα ή πατώντας enter."
|
||||||
@ -1672,11 +1675,11 @@ msgstr "Μπορείτε να προσθέσετε πολλαπλές λέξει
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Μπορείτε επίσης να εισάγετε το όνομα χρήστη σας."
|
msgstr "Μπορείτε επίσης να εισάγετε το όνομα χρήστη σας."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
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 για να σας βοηθήσει να δημιουργήσετε περιεχόμενο, ή να βελτιώσετε το γράψιμό σας, ενώ συνθέτετε το βιογραφικό σας."
|
msgstr "Μπορείτε να χρησιμοποιήσετε το OpenAI API για να σας βοηθήσει να δημιουργήσετε περιεχόμενο, ή να βελτιώσετε το γράψιμό σας, ενώ συνθέτετε το βιογραφικό σας."
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr "Μπορείτε να χρησιμοποιήσετε το OpenAI API γ
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Μπορείτε να παρακολουθείτε τον αριθμό των προβολών που έχει λάβει το βιογραφικό σας, ή πόσοι άνθρωποι έχουν κατεβάσει το βιογραφικό ενεργοποιώντας την κοινή χρήση του κοινού."
|
msgstr "Μπορείτε να παρακολουθείτε τον αριθμό των προβολών που έχει λάβει το βιογραφικό σας, ή πόσοι άνθρωποι έχουν κατεβάσει το βιογραφικό ενεργοποιώντας την κοινή χρήση του κοινού."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "Έχετε την επιλογή <0>αποκτήστε το δικό σας κλειδί OpenAI API</0>. Αυτό το κλειδί σας δίνει τη δυνατότητα να αξιοποιήσετε το API όπως σας φαίνεται κατάλληλο. Εναλλακτικά, αν θέλετε να απενεργοποιήσετε τις λειτουργίες τεχνητής νοημοσύνης στο Reume ενεργό συνολικά, μπορείτε απλά να αφαιρέσετε το κλειδί από τις ρυθμίσεις σας."
|
msgstr "Έχετε την επιλογή <0>αποκτήστε το δικό σας κλειδί OpenAI API</0>. Αυτό το κλειδί σας δίνει τη δυνατότητα να αξιοποιήσετε το API όπως σας φαίνεται κατάλληλο. Εναλλακτικά, αν θέλετε να απενεργοποιήσετε τις λειτουργίες τεχνητής νοημοσύνης στο Reume ενεργό συνολικά, μπορείτε απλά να αφαιρέσετε το κλειδί από τις ρυθμίσεις σας."
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr "Έχετε email!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Ο λογαριασμός σας και όλα τα δεδομένα σας έχουν διαγραφεί επιτυχώς. Goodbye!"
|
msgstr "Ο λογαριασμός σας και όλα τα δεδομένα σας έχουν διαγραφεί επιτυχώς. Goodbye!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "Το κλειδί API σας αποθηκεύεται με ασφάλεια στον τοπικό αποθηκευτικό χώρο του προγράμματος περιήγησης και χρησιμοποιείται μόνο όταν κάνει αιτήσεις στο OpenAI μέσω του επίσημου SDK. Να είστε βέβαιοι ότι το κλειδί σας δεν μεταδίδεται σε κανέναν εξωτερικό διακομιστή εκτός όταν αλληλεπιδρά με τις υπηρεσίες του OpenAI."
|
msgstr "Το κλειδί API σας αποθηκεύεται με ασφάλεια στον τοπικό αποθηκευτικό χώρο του προγράμματος περιήγησης και χρησιμοποιείται μόνο όταν κάνει αιτήσεις στο OpenAI μέσω του επίσημου SDK. Να είστε βέβαιοι ότι το κλειδί σας δεν μεταδίδεται σε κανέναν εξωτερικό διακομιστή εκτός όταν αλληλεπιδρά με τις υπηρεσίες του OpenAI."
|
||||||
|
|
||||||
|
|||||||
@ -38,7 +38,7 @@ msgstr "<0>I built Reactive Resume mostly by myself during my spare time, with a
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgstr "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgstr "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr "Accepts only {accept} files"
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr "Account"
|
msgstr "Account"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr "Add a custom field"
|
msgstr "Add a custom field"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Add a new item"
|
msgstr "Add a new item"
|
||||||
@ -146,7 +146,7 @@ msgstr "Anyone with the link can view and download the resume."
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgstr "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr "Are you sure you want to delete this item?"
|
msgstr "Are you sure you want to delete this item?"
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr "Backup Code"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgstr "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "Base URL"
|
msgstr "Base URL"
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr "Built with"
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr "By the community, for the community."
|
msgstr "By the community, for the community."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr "Confirm New Password"
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Continue"
|
msgstr "Continue"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Copy"
|
msgstr "Copy"
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr "Copy Link to Resume"
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr "Copy to Clipboard"
|
msgstr "Copy to Clipboard"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr "Create"
|
msgstr "Create"
|
||||||
@ -328,7 +328,7 @@ msgstr "Create"
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr "Create a new account"
|
msgstr "Create a new account"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr "Create a new item"
|
msgstr "Create a new item"
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr "Date"
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Date or Date Range"
|
msgstr "Date or Date Range"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr "Download PDF"
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr "Downloads"
|
msgstr "Downloads"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr "Duplicate"
|
msgstr "Duplicate"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr "Duplicate an existing item"
|
msgstr "Duplicate an existing item"
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr "Duplicate an existing item"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Duplicate an existing resume"
|
msgstr "Duplicate an existing resume"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Edit"
|
msgstr "Edit"
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr "Font Variants"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgstr "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Forget"
|
msgstr "Forget"
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr "Here, you can update your account information such as your profile pictu
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr "Here, you can update your profile to customize and personalize your experience."
|
msgstr "Here, you can update your profile to customize and personalize your experience."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Hidden"
|
msgstr "Hidden"
|
||||||
@ -690,7 +690,7 @@ msgstr "Host your resume publicly"
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgstr "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr "Icon"
|
msgstr "Icon"
|
||||||
@ -793,9 +793,9 @@ msgstr "john.doe@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Keywords"
|
msgstr "Keywords"
|
||||||
@ -809,7 +809,7 @@ msgstr "Label"
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Language"
|
msgstr "Language"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr "Last updated {lastUpdated}"
|
msgstr "Last updated {lastUpdated}"
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr "Location"
|
msgstr "Location"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr "March 2023 - Present"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Margin"
|
msgstr "Margin"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "Max Tokens"
|
msgstr "Max Tokens"
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr "Max Tokens"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "MIT License"
|
msgstr "MIT License"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "Model"
|
msgstr "Model"
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr "Model"
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Name"
|
msgstr "Name"
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Name"
|
msgstr "Name"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Network"
|
msgstr "Network"
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr "Note: This will make your account less secure."
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Notes"
|
msgstr "Notes"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr "Ollama Integration"
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr "One-Time Password"
|
msgstr "One-Time Password"
|
||||||
@ -984,7 +980,7 @@ msgstr "One-Time Password"
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr "Oops, the server returned an error."
|
msgstr "Oops, the server returned an error."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr "Open"
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr "Open Source"
|
msgstr "Open Source"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr "OpenAI / Ollama API Key"
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr "OpenAI did not return any choices for your text."
|
msgstr "OpenAI did not return any choices for your text."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "OpenAI Integration"
|
msgstr "OpenAI Integration"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
||||||
|
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/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr "Position"
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr "Powered by"
|
msgstr "Powered by"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr "Powered by <0>Simple Icons</0>"
|
msgstr "Powered by <0>Simple Icons</0>"
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr "Reactive Resume thrives thanks to its vibrant community. This project ow
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Redo"
|
msgstr "Redo"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Remove"
|
msgstr "Remove"
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr "Remove Page"
|
msgstr "Remove Page"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr "Rich in features, not in pricing."
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr "Rounded"
|
msgstr "Rounded"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Save Changes"
|
msgstr "Save Changes"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "Save Locally"
|
msgstr "Save Locally"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Saved"
|
msgstr "Saved"
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr "Theme"
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgstr "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgstr "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr "Undo"
|
msgstr "Undo"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr "Unlocking a resume will allow you to make changes to it again."
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr "Unverified"
|
msgstr "Unverified"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr "Update an existing item"
|
msgstr "Update an existing item"
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr "User does not have an associated 'secrets' record. Please report this issue on GitHub."
|
msgstr "User does not have an associated 'secrets' record. Please report this issue on GitHub."
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr "Username"
|
msgstr "Username"
|
||||||
@ -1610,7 +1609,7 @@ msgstr "Validate"
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr "Validated"
|
msgstr "Validated"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Value"
|
msgstr "Value"
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr "Version 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Views"
|
msgstr "Views"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Visible"
|
msgstr "Visible"
|
||||||
|
|
||||||
|
#: 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 "Visit <0>Phosphor Icons</0> for a list of available icons"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgstr "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
@ -1648,7 +1651,7 @@ msgstr "We verify your email address only to ensure that we can send you a passw
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr "Website"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "What's new in the latest version"
|
msgstr "What's new in the latest version"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgstr "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
@ -1672,11 +1675,11 @@ msgstr "You can add multiple keywords by separating them with a comma or pressin
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "You can also enter your username."
|
msgstr "You can also enter your username."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 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."
|
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:80
|
#: 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."
|
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."
|
msgstr "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr "You can make use of the OpenAI API to help you generate content, or impr
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgstr "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgstr "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr "You've got mail!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Your account and all your data has been deleted successfully. Goodbye!"
|
msgstr "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgstr "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: es\n"
|
"Language: es\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:13\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Spanish\n"
|
"Language-Team: Spanish\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -38,7 +38,7 @@ msgstr "<0>Construí Reactive Resume principalmente en mi tiempo libre, junto a
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr "<0>Estoy seguro de que la app no es perfecta, pero me gustaría lograrlo.</0><1>Si has encontrado algún problema creando un currículum o tienes alguna idea que mejore cualquier parte del producto, abre una incidencia en el repositorio o envíame un email.</1>"
|
msgstr "<0>Estoy seguro de que la app no es perfecta, pero me gustaría lograrlo.</0><1>Si has encontrado algún problema creando un currículum o tienes alguna idea que mejore cualquier parte del producto, abre una incidencia en el repositorio o envíame un email.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr "<0>Nota:</0> Al utilizar la API de OpenAI, reconoces y aceptas los <1>términos de uso</1> y la <2>política de privacidad</2> descritos por OpenAI. Ten en cuenta que Reactive Resume no asume ninguna responsabilidad por cualquier uso inadecuado o no autorizado del servicio, y cualquier repercusión o responsabilidad resultante recae únicamente en el usuario."
|
msgstr "<0>Nota:</0> Al utilizar la API de OpenAI, reconoces y aceptas los <1>términos de uso</1> y la <2>política de privacidad</2> descritos por OpenAI. Ten en cuenta que Reactive Resume no asume ninguna responsabilidad por cualquier uso inadecuado o no autorizado del servicio, y cualquier repercusión o responsabilidad resultante recae únicamente en el usuario."
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr "Acepta solo archivos {accept}"
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr "Cuenta"
|
msgstr "Cuenta"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr "Añadir campo personalizado"
|
msgstr "Añadir campo personalizado"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Añadir un nuevo elemento"
|
msgstr "Añadir un nuevo elemento"
|
||||||
@ -146,7 +146,7 @@ msgstr "Cualquier persona con el enlace puede ver y descargar el currículum."
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr "Cualquier persona que tenga este enlace puede ver y descargar el currículum. Compártelo en tu perfil o con los reclutadores."
|
msgstr "Cualquier persona que tenga este enlace puede ver y descargar el currículum. Compártelo en tu perfil o con los reclutadores."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr "¿Seguro que deseas eliminar este elemento?"
|
msgstr "¿Seguro que deseas eliminar este elemento?"
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr "Código de respaldo"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Los códigos de respaldo solo pueden contener letras minúsculas o números y deben tener exactamente 10 caracteres."
|
msgstr "Los códigos de respaldo solo pueden contener letras minúsculas o números y deben tener exactamente 10 caracteres."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "URL base"
|
msgstr "URL base"
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr "Creado con"
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr "Por la comunidad, para la comunidad."
|
msgstr "Por la comunidad, para la comunidad."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr "Confirmar nueva contraseña"
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Continuar"
|
msgstr "Continuar"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Copiar"
|
msgstr "Copiar"
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr "Copiar enlace al currículum"
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr "Copiar al portapapeles"
|
msgstr "Copiar al portapapeles"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr "Crear"
|
msgstr "Crear"
|
||||||
@ -328,7 +328,7 @@ msgstr "Crear"
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr "Crear una nueva cuenta"
|
msgstr "Crear una nueva cuenta"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr "Crear un elemento nuevo"
|
msgstr "Crear un elemento nuevo"
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr "Fecha"
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Fecha o rango de fechas"
|
msgstr "Fecha o rango de fechas"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr "Descargar PDF"
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr "Descargas"
|
msgstr "Descargas"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr "Duplicar"
|
msgstr "Duplicar"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr "Duplicar un elemento existente"
|
msgstr "Duplicar un elemento existente"
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr "Duplicar un elemento existente"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Duplicar un currículum existente"
|
msgstr "Duplicar un currículum existente"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Editar"
|
msgstr "Editar"
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr "Variante de fuente"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "Por ejemplo, aquí puedes anotar información sobre a qué empresas enviaste este currículum o los enlaces a las descripciones de puestos."
|
msgstr "Por ejemplo, aquí puedes anotar información sobre a qué empresas enviaste este currículum o los enlaces a las descripciones de puestos."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Olvidar"
|
msgstr "Olvidar"
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr "Aquí puedes actualizar la información de tu cuenta, como tu foto de pe
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr "Aquí puedes actualizar tu perfil para modificar y personalizar tu experiencia."
|
msgstr "Aquí puedes actualizar tu perfil para modificar y personalizar tu experiencia."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Oculto"
|
msgstr "Oculto"
|
||||||
@ -690,7 +690,7 @@ msgstr "Aloja tu currículum públicamente"
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr "Siempre me encanta recibir comentarios o apoyo de los usuarios de Reactive Resume. Estos son algunos de los mensajes que he recibido. Si tienes algún comentario, no dudes en enviarme un correo electrónico a <0>{email}</0>."
|
msgstr "Siempre me encanta recibir comentarios o apoyo de los usuarios de Reactive Resume. Estos son algunos de los mensajes que he recibido. Si tienes algún comentario, no dudes en enviarme un correo electrónico a <0>{email}</0>."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr "Icono"
|
msgstr "Icono"
|
||||||
@ -793,9 +793,9 @@ msgstr "juan.nadie@ejemplo.es"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Palabras clave"
|
msgstr "Palabras clave"
|
||||||
@ -809,7 +809,7 @@ msgstr "Etiqueta"
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Idioma"
|
msgstr "Idioma"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr "Última actualización: {lastUpdated}"
|
msgstr "Última actualización: {lastUpdated}"
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr "Ubicación"
|
msgstr "Ubicación"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr "Marzo 2023 - Presente"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Margen"
|
msgstr "Margen"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "Máximo de tokens"
|
msgstr "Máximo de tokens"
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr "Máximo de tokens"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "Licencia MIT"
|
msgstr "Licencia MIT"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "Modelo"
|
msgstr "Modelo"
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr "Modelo"
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nombre"
|
msgstr "Nombre"
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nombre"
|
msgstr "Nombre"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Red"
|
msgstr "Red"
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr "Nota: Esto hará que tu cuenta sea menos segura."
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Notas"
|
msgstr "Notas"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr "Integración con Ollama"
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr "Contraseña de un solo uso (OTP)"
|
msgstr "Contraseña de un solo uso (OTP)"
|
||||||
@ -984,7 +980,7 @@ msgstr "Contraseña de un solo uso (OTP)"
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr "Vaya, el servidor devolvió un error."
|
msgstr "Vaya, el servidor devolvió un error."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr "Abrir"
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr "Código Abierto"
|
msgstr "Código Abierto"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr "Clave API de OpenAI / Ollama"
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr "OpenAI no devolvió ninguna opción para tu texto."
|
msgstr "OpenAI no devolvió ninguna opción para tu texto."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "Integración con OpenAI"
|
msgstr "Integración con OpenAI"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
||||||
|
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/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr "Posición"
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr "Impulsado por"
|
msgstr "Impulsado por"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr "Impulsado por <0>Simple Icons</0>"
|
msgstr "Impulsado por <0>Simple Icons</0>"
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr "Reactive Resume prospera gracias a su vibrante comunidad. Este proyecto
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Rehacer"
|
msgstr "Rehacer"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Eliminar"
|
msgstr "Eliminar"
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr "Eliminar página"
|
msgstr "Eliminar página"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr "Rico en funciones, no en precios."
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr "Redondeado"
|
msgstr "Redondeado"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Guardar cambios"
|
msgstr "Guardar cambios"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "Guardar localmente"
|
msgstr "Guardar localmente"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Guardado"
|
msgstr "Guardado"
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr "Tema"
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr "Se ha producido un error al conectar con el navegador. Por favor, asegúrate de que 'chrome' se está ejecutando y es accesible."
|
msgstr "Se ha producido un error al conectar con el navegador. Por favor, asegúrate de que 'chrome' se está ejecutando y es accesible."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr "Esta acción puede revertirse pulsando el botón deshacer de la barra de herramientas flotante."
|
msgstr "Esta acción puede revertirse pulsando el botón deshacer de la barra de herramientas flotante."
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr "Deshacer"
|
msgstr "Deshacer"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr "Desbloquear un currículum te permitirá realizar cambios en él nuevame
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr "Sin verificar"
|
msgstr "Sin verificar"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr "Actualizar un elemento existente"
|
msgstr "Actualizar un elemento existente"
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr "El usuario no tiene un registro 'secretos' asociado. Por favor, informe de este problema en GitHub."
|
msgstr "El usuario no tiene un registro 'secretos' asociado. Por favor, informe de este problema en GitHub."
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr "Usuario"
|
msgstr "Usuario"
|
||||||
@ -1610,7 +1609,7 @@ msgstr "Validar"
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr "Validado"
|
msgstr "Validado"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Valor"
|
msgstr "Valor"
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr "Versión 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Visualizaciones"
|
msgstr "Visualizaciones"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Visible"
|
msgstr "Visible"
|
||||||
|
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr "Verificamos tu dirección de correo electrónico sólo para asegurarnos de que podemos enviarte un enlace de restablecimiento de contraseña en caso de que olvides tu contraseña."
|
msgstr "Verificamos tu dirección de correo electrónico sólo para asegurarnos de que podemos enviarte un enlace de restablecimiento de contraseña en caso de que olvides tu contraseña."
|
||||||
@ -1648,7 +1651,7 @@ msgstr "Verificamos tu dirección de correo electrónico sólo para asegurarnos
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr "Sitio Web"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Novedades en la última versión"
|
msgstr "Novedades en la última versión"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Puedes agregar varias palabras clave separándolas con una coma o presionando Enter."
|
msgstr "Puedes agregar varias palabras clave separándolas con una coma o presionando Enter."
|
||||||
@ -1672,11 +1675,11 @@ msgstr "Puedes agregar varias palabras clave separándolas con una coma o presio
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "También puedes ingresar tu nombre de usuario."
|
msgstr "También puedes ingresar tu nombre de usuario."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 "Puedes integrar Ollama configurando la clave API a `sk-1234567890abcdef` y la URL base a tu URL de Ollama i.e. `http://localhost:11434/v1`. También puedes elegir y elegir modelos y establecer el máximo de tokens."
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
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."
|
msgstr "Puedes utilizar la API de OpenAI para ayudarte a generar contenido o mejorar tu escritura mientras redactas tu currículum."
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr "Puedes utilizar la API de OpenAI para ayudarte a generar contenido o mej
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Puedes hacer un seguimiento del número de visitas que ha recibido tu currículum o de cuántas personas han descargado el currículum habilitando el uso compartido público."
|
msgstr "Puedes hacer un seguimiento del número de visitas que ha recibido tu currículum o de cuántas personas han descargado el currículum habilitando el uso compartido público."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "Tiene la opción de <0>obtener su propia clave API de OpenAI</0>. Esta clave le permite aprovechar la API como mejor le convenga. Alternativamente, si desea desactivar por completo las funciones de IA en Reactive Resume, puede simplemente eliminar la clave de su configuración."
|
msgstr "Tiene la opción de <0>obtener su propia clave API de OpenAI</0>. Esta clave le permite aprovechar la API como mejor le convenga. Alternativamente, si desea desactivar por completo las funciones de IA en Reactive Resume, puede simplemente eliminar la clave de su configuración."
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr "¡Tienes mensajes!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Tu cuenta y todos tus datos han sido eliminados con éxito. ¡Adiós!"
|
msgstr "Tu cuenta y todos tus datos han sido eliminados con éxito. ¡Adiós!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "Su clave API se almacena de manera segura en el almacenamiento local del navegador y solo se utiliza al realizar peticiones a OpenAI a través de su SDK oficial. Tenga la seguridad de que su clave no se transmite a ningún servidor externo a excepción de los servicios de OpenAI."
|
msgstr "Su clave API se almacena de manera segura en el almacenamiento local del navegador y solo se utiliza al realizar peticiones a OpenAI a través de su SDK oficial. Tenga la seguridad de que su clave no se transmite a ningún servidor externo a excepción de los servicios de OpenAI."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: fa\n"
|
"Language: fa\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:13\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Persian\n"
|
"Language-Team: Persian\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -38,7 +38,7 @@ msgstr "<0>من Reactive Resume را بیشتر در اوقات فراغت خو
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr "<0>مطمئنم که برنامه بینقص نیست، اما دوست دارم که باشد.</0> <1>اگر موقع ایجاد رزومه خودتان با مشکلی مواجه شدید یا ایدهای دارید که به شما و سایر کاربران در ساختن راحتتر رزومه کمک میکند، در گیتهاب پروژه یک issue ایجاد کنید یا به من ایمیل بفرستید.</1>"
|
msgstr "<0>مطمئنم که برنامه بینقص نیست، اما دوست دارم که باشد.</0> <1>اگر موقع ایجاد رزومه خودتان با مشکلی مواجه شدید یا ایدهای دارید که به شما و سایر کاربران در ساختن راحتتر رزومه کمک میکند، در گیتهاب پروژه یک issue ایجاد کنید یا به من ایمیل بفرستید.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr "<0>توجه:</0> با استفاده از امکانات OpenAI API، <1>شرایط استفاده را تایید میکنید و میپذیرید</1> و <2>خط مشی رازداری</2> را که توسط OpenAI مشخص شده است. لطفاً توجه داشته باشید که Reactive Resume هیچ مسئولیتی در قبال هرگونه استفاده نادرست یا غیرمجاز از سرویس ندارد و هرگونه عواقب یا تعهدات ناشی از آن صرفاً بر عهده کاربر است."
|
msgstr "<0>توجه:</0> با استفاده از امکانات OpenAI API، <1>شرایط استفاده را تایید میکنید و میپذیرید</1> و <2>خط مشی رازداری</2> را که توسط OpenAI مشخص شده است. لطفاً توجه داشته باشید که Reactive Resume هیچ مسئولیتی در قبال هرگونه استفاده نادرست یا غیرمجاز از سرویس ندارد و هرگونه عواقب یا تعهدات ناشی از آن صرفاً بر عهده کاربر است."
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr "فقط فایل های {accept} را می پذیرد"
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr "حساب"
|
msgstr "حساب"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr "افزودن فیلد دلخواه"
|
msgstr "افزودن فیلد دلخواه"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "افزودن مورد جدید"
|
msgstr "افزودن مورد جدید"
|
||||||
@ -146,7 +146,7 @@ msgstr "هر کسی که لینک را داشته باشد می تواند رز
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr "از این پیوند همه می توانند رزومه را مشاهده و دانلود کنند. آن را در نمایه خود یا با استخدام کنندگان به اشتراک بگذارید."
|
msgstr "از این پیوند همه می توانند رزومه را مشاهده و دانلود کنند. آن را در نمایه خود یا با استخدام کنندگان به اشتراک بگذارید."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr "از حذف این مورد مطمئن هستید؟"
|
msgstr "از حذف این مورد مطمئن هستید؟"
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr "کد پشتیبان"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "کدهای پشتیبان فقط باید شامل حروف کوچک یا اعداد و دقیقاً 10 کاراکتر باشند."
|
msgstr "کدهای پشتیبان فقط باید شامل حروف کوچک یا اعداد و دقیقاً 10 کاراکتر باشند."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr "ساخته شده با"
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr "توسط جامعه، برای جامعه."
|
msgstr "توسط جامعه، برای جامعه."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr "تایید گذرواژه جدید"
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "ادامه"
|
msgstr "ادامه"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "کپی"
|
msgstr "کپی"
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr "کپی لینک به رزومه"
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr "کپی به کلیپبورد"
|
msgstr "کپی به کلیپبورد"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr "ایجاد"
|
msgstr "ایجاد"
|
||||||
@ -328,7 +328,7 @@ msgstr "ایجاد"
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr "ایجاد یک حساب جدید"
|
msgstr "ایجاد یک حساب جدید"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr "ساخت آیتم جدید"
|
msgstr "ساخت آیتم جدید"
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr "تاریخ"
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "تاریخ دقیق یا محدوده تاریخ"
|
msgstr "تاریخ دقیق یا محدوده تاریخ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr "دربافت پیدیاف"
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr "دانلود"
|
msgstr "دانلود"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr "کپی کردن"
|
msgstr "کپی کردن"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr "کپی یک مورد موجود"
|
msgstr "کپی یک مورد موجود"
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr "کپی یک مورد موجود"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "کپی یک رزومه موجود"
|
msgstr "کپی یک رزومه موجود"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "ویرایش"
|
msgstr "ویرایش"
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr "انواع فونت"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "برای مثال، اطلاعات مربوط به شرکتهایی که این رزومه را به آنها ارسال کردهاید یا لینکهایی به توضیحات شغلی میتوانند در اینجا یادداشت شوند."
|
msgstr "برای مثال، اطلاعات مربوط به شرکتهایی که این رزومه را به آنها ارسال کردهاید یا لینکهایی به توضیحات شغلی میتوانند در اینجا یادداشت شوند."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "فراموش کردن"
|
msgstr "فراموش کردن"
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr "امکان ویرایش اطلاعات حساب کاربری خود ما
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr "در اینجا میتوانید پروفایل خود را بهروزرسانی کنید تا تجربهی خود را شخصیسازی کنید."
|
msgstr "در اینجا میتوانید پروفایل خود را بهروزرسانی کنید تا تجربهی خود را شخصیسازی کنید."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "پنهان"
|
msgstr "پنهان"
|
||||||
@ -690,7 +690,7 @@ msgstr "رزومه خود را به صورت عمومی منتشر کنید"
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr "همیشه دوست دارم از کاربران Reactive Resume با بازخورد یا پشتیبانی بشنوم. اینجا بعضی از پیام هایی که دریافت کردم هستند. اگر بازخوردی دارید، میتوانید یک ایمیل به من بزنید به <0>{email}</0>."
|
msgstr "همیشه دوست دارم از کاربران Reactive Resume با بازخورد یا پشتیبانی بشنوم. اینجا بعضی از پیام هایی که دریافت کردم هستند. اگر بازخوردی دارید، میتوانید یک ایمیل به من بزنید به <0>{email}</0>."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr "آیکون"
|
msgstr "آیکون"
|
||||||
@ -793,9 +793,9 @@ msgstr "john.doe@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "کلید واژهها"
|
msgstr "کلید واژهها"
|
||||||
@ -809,7 +809,7 @@ msgstr "عنوان"
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "زبان"
|
msgstr "زبان"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr "آخرین بروزرسانی {lastUpdated}"
|
msgstr "آخرین بروزرسانی {lastUpdated}"
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr "موقعیت مکانی"
|
msgstr "موقعیت مکانی"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr "مارس 2023 - حال حاضر"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "حاشیه"
|
msgstr "حاشیه"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "مجور MIT"
|
msgstr "مجور MIT"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "نام"
|
msgstr "نام"
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "نام"
|
msgstr "نام"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "شبکه"
|
msgstr "شبکه"
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr "توجه: این باعث کاهش امنیت حساب کاربری شم
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "یادداشتها"
|
msgstr "یادداشتها"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr "پسورد یکبار مصرف"
|
msgstr "پسورد یکبار مصرف"
|
||||||
@ -984,7 +980,7 @@ msgstr "پسورد یکبار مصرف"
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr "اوه ، مشکلی در سرور پدید امد."
|
msgstr "اوه ، مشکلی در سرور پدید امد."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr "باز کردن"
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr "اوپن سورس"
|
msgstr "اوپن سورس"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr "OpenAI نتوانست هیچ پیشنهادی برای متن شما ارائه دهد."
|
msgstr "OpenAI نتوانست هیچ پیشنهادی برای متن شما ارائه دهد."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "ادغام با OpenAI"
|
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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr "موقعیت شغلی"
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr "ساخته شده توسط"
|
msgstr "ساخته شده توسط"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr "ساخته شده توسط <0>Simple Icons</0>"
|
msgstr "ساخته شده توسط <0>Simple Icons</0>"
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr "Reactive Resume به دست جامعه پرانرژی خود زنده م
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Redo"
|
msgstr "Redo"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "حذف"
|
msgstr "حذف"
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr "حذف صفحه"
|
msgstr "حذف صفحه"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr "پر از امکانات، بدون قیمت بالا"
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr "گردشده"
|
msgstr "گردشده"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "ذخیرهٔ تغییرات"
|
msgstr "ذخیرهٔ تغییرات"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr "تم"
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr "خطا در اتصال به مرورگر رخ داد. لطفاً مطمئن شوید که 'chrome' در حال اجرا و قابل دسترس است."
|
msgstr "خطا در اتصال به مرورگر رخ داد. لطفاً مطمئن شوید که 'chrome' در حال اجرا و قابل دسترس است."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr "این عملیات می تواند با کلیک بر روی دکمه بازگردانی در نوار ابزار شناور بازگشت پیدا کند."
|
msgstr "این عملیات می تواند با کلیک بر روی دکمه بازگردانی در نوار ابزار شناور بازگشت پیدا کند."
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr "بازگردانی"
|
msgstr "بازگردانی"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr "باز کردن قفل یک رزومه به شما امکان تغییر
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr "تأیید نشده"
|
msgstr "تأیید نشده"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr "به روزرسانی یک مورد موجود"
|
msgstr "به روزرسانی یک مورد موجود"
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr "کاربر دارای رکورد 'رمزها' مرتبط نیست. لطفاً این مشکل را در گیتهاب گزارش دهید."
|
msgstr "کاربر دارای رکورد 'رمزها' مرتبط نیست. لطفاً این مشکل را در گیتهاب گزارش دهید."
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr "نام کاربری"
|
msgstr "نام کاربری"
|
||||||
@ -1610,7 +1609,7 @@ msgstr "تأیید"
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr "تأییدشده"
|
msgstr "تأییدشده"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "مقدار"
|
msgstr "مقدار"
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr "نسخه ۴"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "تعداد بازدید ها"
|
msgstr "تعداد بازدید ها"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "قابل مشاهده"
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr "ما آدرس ایمیل شما را تأیید می کنیم تا فقط مطمئن شویم که می توانیم لینک بازنشانی رمز عبور را به شما ارسال کنیم در صورتی که رمز عبور خود را فراموش کنید."
|
msgstr "ما آدرس ایمیل شما را تأیید می کنیم تا فقط مطمئن شویم که می توانیم لینک بازنشانی رمز عبور را به شما ارسال کنیم در صورتی که رمز عبور خود را فراموش کنید."
|
||||||
@ -1648,7 +1651,7 @@ msgstr "ما آدرس ایمیل شما را تأیید می کنیم تا فق
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr "وبسایت"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "چه خبر در آخرین نسخه"
|
msgstr "چه خبر در آخرین نسخه"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "شما میتوانید کلمات متعددی را با جداکردن آنها با یک کاما یا فشردن کلید اینتر اضافه کنید."
|
msgstr "شما میتوانید کلمات متعددی را با جداکردن آنها با یک کاما یا فشردن کلید اینتر اضافه کنید."
|
||||||
@ -1672,11 +1675,11 @@ msgstr "شما میتوانید کلمات متعددی را با جداکر
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "شما همچنین میتوانید نام کاربری خود را وارد کنید."
|
msgstr "شما همچنین میتوانید نام کاربری خود را وارد کنید."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
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 استفاده کنید تا به شما در تولید محتوا کمک کند یا نوشتن شما را بهتر کند در حالی که رزومه خود را تنظیم می کنید."
|
msgstr "شما می توانید از API OpenAI استفاده کنید تا به شما در تولید محتوا کمک کند یا نوشتن شما را بهتر کند در حالی که رزومه خود را تنظیم می کنید."
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr "شما می توانید از API OpenAI استفاده کنید تا ب
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "شما میتوانید تعداد بازدیدهای رزومه خود را یا تعداد افرادی که رزومه را با فعال کردن اشتراک عمومی دانلود کردهاند، بررسی کنید."
|
msgstr "شما میتوانید تعداد بازدیدهای رزومه خود را یا تعداد افرادی که رزومه را با فعال کردن اشتراک عمومی دانلود کردهاند، بررسی کنید."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "شما قادر به <0>دریافت کلید API اختصاصی OpenAI خودتان هستید</0>. این کلید به شما این امکان را می دهد که از API به دلخواه خود استفاده کنید. به عنوان یک گزینه دیگر، اگر می خواهید قابلیت های هوش مصنوعی در Reactive Resume را کاملاً غیرفعال کنید، می توانید به سادگی این کلید را از تنظیمات خود حذف کنید."
|
msgstr "شما قادر به <0>دریافت کلید API اختصاصی OpenAI خودتان هستید</0>. این کلید به شما این امکان را می دهد که از API به دلخواه خود استفاده کنید. به عنوان یک گزینه دیگر، اگر می خواهید قابلیت های هوش مصنوعی در Reactive Resume را کاملاً غیرفعال کنید، می توانید به سادگی این کلید را از تنظیمات خود حذف کنید."
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr "شما ایمیل دریافت کردید"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "حساب شما و تمام دادههای شما با موفقیت حذف شد. خدانگهدار!"
|
msgstr "حساب شما و تمام دادههای شما با موفقیت حذف شد. خدانگهدار!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "کلید API شما به صورت ایمن در حافظه مرورگر دستگاه ذخیره می شود و تنها هنگام ارسال درخواست به OpenAI از طریق SDK رسمی آنها استفاده می شود. اطمینان حاصل کنید که کلید شما به هیچ سرور خارجی انتقال داده نمی شود مگر اینکه برای تعامل با خدمات OpenAI استفاده شود."
|
msgstr "کلید API شما به صورت ایمن در حافظه مرورگر دستگاه ذخیره می شود و تنها هنگام ارسال درخواست به OpenAI از طریق SDK رسمی آنها استفاده می شود. اطمینان حاصل کنید که کلید شما به هیچ سرور خارجی انتقال داده نمی شود مگر اینکه برای تعامل با خدمات OpenAI استفاده شود."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: fi\n"
|
"Language: fi\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:13\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Finnish\n"
|
"Language-Team: Finnish\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -38,7 +38,7 @@ msgstr "<0>Rakensin Reaktiivisen ansioluettelon pääasiassa itse vapaa-ajallani
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr "<0>Olen varma, että sovellus ei ole täydellinen, mutta haluaisin sen olevan.</0><1>Jos kohtaat ongelmia luodessasi ansioluetteloasi tai sinulla on idea, joka auttaisi sinua ja muita käyttäjiä luomaan ansioluetteloasi helpommin, ilmoita ongelmasta repositoriossa tai lähetä minulle sähköpostia asiasta.</1>"
|
msgstr "<0>Olen varma, että sovellus ei ole täydellinen, mutta haluaisin sen olevan.</0><1>Jos kohtaat ongelmia luodessasi ansioluetteloasi tai sinulla on idea, joka auttaisi sinua ja muita käyttäjiä luomaan ansioluetteloasi helpommin, ilmoita ongelmasta repositoriossa tai lähetä minulle sähköpostia asiasta.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr "<0>Huom:</0> Hyödyntämällä OpenAI API:a, tunnustat ja hyväksyt OpenAI:n määrittelemät <1>käyttöehdot</1> ja <2>tietosuojakäytännöt</2>. Huomaa, että Reaktiivinen ansioluettelo ei ota vastuuta palvelun epäasianmukaisesta tai luvattomasta käytöstä aiheutuvista seurauksista tai vastuista, jotka lankeavat yksinomaan käyttäjälle."
|
msgstr "<0>Huom:</0> Hyödyntämällä OpenAI API:a, tunnustat ja hyväksyt OpenAI:n määrittelemät <1>käyttöehdot</1> ja <2>tietosuojakäytännöt</2>. Huomaa, että Reaktiivinen ansioluettelo ei ota vastuuta palvelun epäasianmukaisesta tai luvattomasta käytöstä aiheutuvista seurauksista tai vastuista, jotka lankeavat yksinomaan käyttäjälle."
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr "Hyväksyy vain {accept} tiedostot"
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr "Tili"
|
msgstr "Tili"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr "Lisää mukautettu kenttä"
|
msgstr "Lisää mukautettu kenttä"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Lisää uusi kohde"
|
msgstr "Lisää uusi kohde"
|
||||||
@ -146,7 +146,7 @@ msgstr "Kuka tahansa linkin avulla voi tarkastella ja ladata ansioluettelon."
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr "Kuka tahansa tämän linkin avulla voi tarkastella ja ladata ansioluettelon. Jaa se profiilissasi tai rekrytoijien kanssa."
|
msgstr "Kuka tahansa tämän linkin avulla voi tarkastella ja ladata ansioluettelon. Jaa se profiilissasi tai rekrytoijien kanssa."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr "Haluatko varmasti poistaa tämän kohteen?"
|
msgstr "Haluatko varmasti poistaa tämän kohteen?"
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr "Varmuuskoodi"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Varmuuskoodit voivat sisältää vain pieniä kirjaimia tai numeroita, ja niiden on oltava tarkalleen 10 merkkiä."
|
msgstr "Varmuuskoodit voivat sisältää vain pieniä kirjaimia tai numeroita, ja niiden on oltava tarkalleen 10 merkkiä."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr "Rakennettu"
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr "Yhteisön tekemä, yhteisölle."
|
msgstr "Yhteisön tekemä, yhteisölle."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr "Vahvista uusi salasana"
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Jatka"
|
msgstr "Jatka"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Kopioi"
|
msgstr "Kopioi"
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr "Kopioi linkki ansioluetteloon"
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr "Kopioi leikepöydälle"
|
msgstr "Kopioi leikepöydälle"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr "Luo"
|
msgstr "Luo"
|
||||||
@ -328,7 +328,7 @@ msgstr "Luo"
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr "Luo uusi tili"
|
msgstr "Luo uusi tili"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr "Luo uusi tuote"
|
msgstr "Luo uusi tuote"
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr "Päivämäärä"
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Päivämäärä tai Päivämääräväli"
|
msgstr "Päivämäärä tai Päivämääräväli"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr "Lataa PDF"
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr "Lataukset"
|
msgstr "Lataukset"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr "Kaksoiskappale"
|
msgstr "Kaksoiskappale"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr "Tee kaksoiskappale olemassa olevasta kohteesta"
|
msgstr "Tee kaksoiskappale olemassa olevasta kohteesta"
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr "Tee kaksoiskappale olemassa olevasta kohteesta"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Tee kaksoiskappale olemassa olevasta ansioluettelosta"
|
msgstr "Tee kaksoiskappale olemassa olevasta ansioluettelosta"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Muokkaa"
|
msgstr "Muokkaa"
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr "Fonttivariantit"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "Esimerkiksi tietoja siitä, mihin yrityksiin lähetit tämän ansioluettelon tai linkit työpaikkailmoituksiin, voidaan kirjata tänne."
|
msgstr "Esimerkiksi tietoja siitä, mihin yrityksiin lähetit tämän ansioluettelon tai linkit työpaikkailmoituksiin, voidaan kirjata tänne."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Unohda"
|
msgstr "Unohda"
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr "Täällä voit päivittää tilisi tietoja, kuten profiilikuvasi, nimesi
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr "Täällä voit päivittää profiilisi mukauttaaksesi ja personoidaksesi kokemustasi."
|
msgstr "Täällä voit päivittää profiilisi mukauttaaksesi ja personoidaksesi kokemustasi."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Piilotettu"
|
msgstr "Piilotettu"
|
||||||
@ -690,7 +690,7 @@ msgstr "Julkaise ansioluettelosi julkisesti"
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr "Rakastan aina kuulla Reactive Resume -sovelluksen käyttäjiltä palautetta tai tukea. Tässä on joitakin viestejä, jotka olen saanut. Jos sinulla on palautetta, voit vapaasti lähettää minulle sähköpostia osoitteeseen <0>{sähköposti}</0>."
|
msgstr "Rakastan aina kuulla Reactive Resume -sovelluksen käyttäjiltä palautetta tai tukea. Tässä on joitakin viestejä, jotka olen saanut. Jos sinulla on palautetta, voit vapaasti lähettää minulle sähköpostia osoitteeseen <0>{sähköposti}</0>."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr "Kuvake"
|
msgstr "Kuvake"
|
||||||
@ -793,9 +793,9 @@ msgstr "matti.meikäläinen@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Avainsanat"
|
msgstr "Avainsanat"
|
||||||
@ -809,7 +809,7 @@ msgstr "Tunniste"
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Kieli"
|
msgstr "Kieli"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr "Päivitetty viimeksi {lastUpdated}"
|
msgstr "Päivitetty viimeksi {lastUpdated}"
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr "Sijainti"
|
msgstr "Sijainti"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr "Maaliskuu 2023 - Tähän asti"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Marginaali"
|
msgstr "Marginaali"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "MIT-lisenssi"
|
msgstr "MIT-lisenssi"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nimi"
|
msgstr "Nimi"
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nimi"
|
msgstr "Nimi"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Verkko"
|
msgstr "Verkko"
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr "Huom: Tämä tekee tilisi vähemmän turvalliseksi."
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Muistiinpanot"
|
msgstr "Muistiinpanot"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr "Yksittäinen salasana"
|
msgstr "Yksittäinen salasana"
|
||||||
@ -984,7 +980,7 @@ msgstr "Yksittäinen salasana"
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr "Voi ei, palvelin palautti virheen."
|
msgstr "Voi ei, palvelin palautti virheen."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr "Avaa"
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr "Avoin lähdekoodi"
|
msgstr "Avoin lähdekoodi"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr "OpenAI ei palauttanut mitään valintoja tekstillesi."
|
msgstr "OpenAI ei palauttanut mitään valintoja tekstillesi."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "OpenAI-integrointi"
|
msgstr "OpenAI-integrointi"
|
||||||
|
|
||||||
|
#: 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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr "Asema"
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr "Voimanlähteenä"
|
msgstr "Voimanlähteenä"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr "Powered by <0>Simple Icons</0>"
|
msgstr "Powered by <0>Simple Icons</0>"
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr "Reaktiivinen ansioluettelo kukoistaa sen elinvoimaisen yhteisön ansiost
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Tee uudelleen"
|
msgstr "Tee uudelleen"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Poista"
|
msgstr "Poista"
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr "Poista sivu"
|
msgstr "Poista sivu"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr "Monipuolinen ominaisuuksiltaan, ei hinnoiltaan."
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr "Pyöristetty"
|
msgstr "Pyöristetty"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Tallenna muutokset"
|
msgstr "Tallenna muutokset"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr "Teema"
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr "Virhe yhdistettäessä selaimeen. Varmista, että 'chrome' on käynnissä ja tavoitettavissa."
|
msgstr "Virhe yhdistettäessä selaimeen. Varmista, että 'chrome' on käynnissä ja tavoitettavissa."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr "Tämä toiminto voidaan peruuttaa napsauttamalla kumo-painiketta kelluvassa työkalurivissä."
|
msgstr "Tämä toiminto voidaan peruuttaa napsauttamalla kumo-painiketta kelluvassa työkalurivissä."
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr "Kumoa"
|
msgstr "Kumoa"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr "Ansioluettelon avaaminen mahdollistaa muutosten tekemisen siihen uudelle
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr "Vahvistamaton"
|
msgstr "Vahvistamaton"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr "Päivitä olemassa oleva kohde"
|
msgstr "Päivitä olemassa oleva kohde"
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr "Käyttäjällä ei ole liitettyä 'salaisuuksia' -tietuetta. Ilmoita tästä ongelmasta GitHubissa."
|
msgstr "Käyttäjällä ei ole liitettyä 'salaisuuksia' -tietuetta. Ilmoita tästä ongelmasta GitHubissa."
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr "Käyttäjänimi"
|
msgstr "Käyttäjänimi"
|
||||||
@ -1610,7 +1609,7 @@ msgstr "Validoi"
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr "Validoitu"
|
msgstr "Validoitu"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Arvo"
|
msgstr "Arvo"
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr "Versio 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Näkymät"
|
msgstr "Näkymät"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Näkyvä"
|
msgstr "Näkyvä"
|
||||||
|
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr "Me varmistamme sähköpostiosoitteesi vain varmistaaksemme, että voimme lähettää sinulle salasanan palautuslinkin, jos unohdat salasanasi."
|
msgstr "Me varmistamme sähköpostiosoitteesi vain varmistaaksemme, että voimme lähettää sinulle salasanan palautuslinkin, jos unohdat salasanasi."
|
||||||
@ -1648,7 +1651,7 @@ msgstr "Me varmistamme sähköpostiosoitteesi vain varmistaaksemme, että voimme
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr "Verkkosivusto"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Mitä uutta viimeisimmässä versiossa"
|
msgstr "Mitä uutta viimeisimmässä versiossa"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Voit lisätä useita avainsanoja erottelemalla ne pilkulla tai painamalla enter."
|
msgstr "Voit lisätä useita avainsanoja erottelemalla ne pilkulla tai painamalla enter."
|
||||||
@ -1672,11 +1675,11 @@ msgstr "Voit lisätä useita avainsanoja erottelemalla ne pilkulla tai painamall
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Voit myös syöttää käyttäjänimesi."
|
msgstr "Voit myös syöttää käyttäjänimesi."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
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."
|
msgstr "Voit käyttää OpenAI API:a auttamaan sinua sisällön luomisessa tai parantamaan kirjoittamistasi laatimalla ansioluettelosi."
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr "Voit käyttää OpenAI API:a auttamaan sinua sisällön luomisessa tai p
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Voit seurata, kuinka monta katselukertaa ansioluettelosi on saanut tai kuinka monta henkilöä on ladannut ansioluettelosi mahdollistamalla julkisen jakamisen."
|
msgstr "Voit seurata, kuinka monta katselukertaa ansioluettelosi on saanut tai kuinka monta henkilöä on ladannut ansioluettelosi mahdollistamalla julkisen jakamisen."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "Sinulla on mahdollisuus <0>hankkia oma OpenAI API-avain</0>. Tämä avain antaa sinulle mahdollisuuden hyödyntää API:a haluamallasi tavalla. Vaihtoehtoisesti, jos haluat poistaa tekoälyominaisuudet kokonaan Reactive Resumesta, voit yksinkertaisesti poistaa avaimen asetuksistasi."
|
msgstr "Sinulla on mahdollisuus <0>hankkia oma OpenAI API-avain</0>. Tämä avain antaa sinulle mahdollisuuden hyödyntää API:a haluamallasi tavalla. Vaihtoehtoisesti, jos haluat poistaa tekoälyominaisuudet kokonaan Reactive Resumesta, voit yksinkertaisesti poistaa avaimen asetuksistasi."
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr "Sinulle on tullut postia!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Tilisi ja kaikki tietosi on poistettu onnistuneesti. Hyvästi!"
|
msgstr "Tilisi ja kaikki tietosi on poistettu onnistuneesti. Hyvästi!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "API-avaimesi säilytetään turvallisesti selaimen paikallisessa tallennustilassa ja sitä käytetään vain tehdessäsi pyyntöjä OpenAI:lle heidän virallisen SDK:n kautta. Ole huoleti, että avaintasi ei lähetetä ulkoiselle palvelimelle, paitsi kun vuorovaikutuksessa OpenAI-palveluiden kanssa."
|
msgstr "API-avaimesi säilytetään turvallisesti selaimen paikallisessa tallennustilassa ja sitä käytetään vain tehdessäsi pyyntöjä OpenAI:lle heidän virallisen SDK:n kautta. Ole huoleti, että avaintasi ei lähetetä ulkoiselle palvelimelle, paitsi kun vuorovaikutuksessa OpenAI-palveluiden kanssa."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: fr\n"
|
"Language: fr\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:13\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: French\n"
|
"Language-Team: French\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||||
@ -38,7 +38,7 @@ msgstr "<0>J'ai construit Reactive Resume principalement par moi-même pendant m
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr "<0>Je suis sûre que l'application n'est pas parfaite, mais j'aimerais qu'elle le soit.</0><1>Si vous avez rencontré n'importe quel problème en créant votre CV, ou si vous avez une idée qui pourrait aider, vous ou les autres, à créer leurs Cv plus facilement, faite remonter l'idée sur le repository, ou envoyez moi un email.</1>"
|
msgstr "<0>Je suis sûre que l'application n'est pas parfaite, mais j'aimerais qu'elle le soit.</0><1>Si vous avez rencontré n'importe quel problème en créant votre CV, ou si vous avez une idée qui pourrait aider, vous ou les autres, à créer leurs Cv plus facilement, faite remonter l'idée sur le repository, ou envoyez moi un email.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr "<0>Remarque :</0> En utilisant l'API OpenAI, vous reconnaissez et acceptez les <1>conditions d'utilisation</1> et <2>politique de confidentialité</2> décrit par OpenAI. Veuillez noter que Reactive Resume n'assume aucune responsabilité pour toute utilisation inappropriée ou non autorisée du service, et toutes les répercussions ou responsabilités qui en résultent incombent uniquement à l'utilisateur."
|
msgstr "<0>Remarque :</0> En utilisant l'API OpenAI, vous reconnaissez et acceptez les <1>conditions d'utilisation</1> et <2>politique de confidentialité</2> décrit par OpenAI. Veuillez noter que Reactive Resume n'assume aucune responsabilité pour toute utilisation inappropriée ou non autorisée du service, et toutes les répercussions ou responsabilités qui en résultent incombent uniquement à l'utilisateur."
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr "Accepte uniquement les fichiers {accept}"
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr "Compte"
|
msgstr "Compte"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr "Ajouter un champ personnalisé"
|
msgstr "Ajouter un champ personnalisé"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Ajouter un nouvel élément"
|
msgstr "Ajouter un nouvel élément"
|
||||||
@ -146,7 +146,7 @@ msgstr "Toute personne avec ce lien peut voir et télécharger le CV."
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr "Toute personne avec ce lien peut voir et télécharger le CV. Partagez le sur votre profil ou avec les recruteurs."
|
msgstr "Toute personne avec ce lien peut voir et télécharger le CV. Partagez le sur votre profil ou avec les recruteurs."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr "Êtes-vous sûr de vouloir supprimer cet élément?"
|
msgstr "Êtes-vous sûr de vouloir supprimer cet élément?"
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr "Code de récupération"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Les codes de sauvegarde ne peuvent contenir que des lettres minuscules ou des chiffres et doivent comporter exactement 10 caractères."
|
msgstr "Les codes de sauvegarde ne peuvent contenir que des lettres minuscules ou des chiffres et doivent comporter exactement 10 caractères."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "URL de base"
|
msgstr "URL de base"
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr "Construit avec"
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr "Par la communauté, pour la communauté."
|
msgstr "Par la communauté, pour la communauté."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr "Confirmez le nouveau mot de passe"
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Continuer"
|
msgstr "Continuer"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Copier"
|
msgstr "Copier"
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr "Copier le lien vers le CV"
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr "Copier dans le Presse-Papier"
|
msgstr "Copier dans le Presse-Papier"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr "Créer"
|
msgstr "Créer"
|
||||||
@ -328,7 +328,7 @@ msgstr "Créer"
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr "Créer un nouveau compte"
|
msgstr "Créer un nouveau compte"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr "Créer un nouvel élément"
|
msgstr "Créer un nouvel élément"
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr "Date"
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Période ou date"
|
msgstr "Période ou date"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr "Télécharger au format PDF"
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr "Télécharger"
|
msgstr "Télécharger"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr "Dupliquer"
|
msgstr "Dupliquer"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr "Dupliquer un élément existant"
|
msgstr "Dupliquer un élément existant"
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr "Dupliquer un élément existant"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Dupliquer un CV existant"
|
msgstr "Dupliquer un CV existant"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Editer"
|
msgstr "Editer"
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr "Variantes de polices"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "Par exemple, des informations sur les entreprises auxquelles vous avez envoyé ce CV ou les liens vers les descriptions de poste peuvent être notées ici."
|
msgstr "Par exemple, des informations sur les entreprises auxquelles vous avez envoyé ce CV ou les liens vers les descriptions de poste peuvent être notées ici."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Oublier"
|
msgstr "Oublier"
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr "Ici, vous pouvez mettre à jour les informations de votre compte telles
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr "Ici, vous pouvez mettre à jour votre profil pour personnaliser et personnaliser votre expérience."
|
msgstr "Ici, vous pouvez mettre à jour votre profil pour personnaliser et personnaliser votre expérience."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Masqué"
|
msgstr "Masqué"
|
||||||
@ -690,7 +690,7 @@ msgstr "Hébergez votre CV publiquement"
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr "J'apprécie toujours que les utilisateurs de Reactive Resume me fassent part de leurs commentaires ou de leur soutien. Voici quelques-uns des messages que j'ai reçus. Si vous avez des commentaires, n'hésitez pas à m'envoyer un e-mail à l'adresse suivante <0>{email}</0>."
|
msgstr "J'apprécie toujours que les utilisateurs de Reactive Resume me fassent part de leurs commentaires ou de leur soutien. Voici quelques-uns des messages que j'ai reçus. Si vous avez des commentaires, n'hésitez pas à m'envoyer un e-mail à l'adresse suivante <0>{email}</0>."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr "Icône"
|
msgstr "Icône"
|
||||||
@ -793,9 +793,9 @@ msgstr "john.doe@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Mots-clés"
|
msgstr "Mots-clés"
|
||||||
@ -809,7 +809,7 @@ msgstr "Étiquette"
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Langue"
|
msgstr "Langue"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr "Dernière mise à jour {lastUpdated}"
|
msgstr "Dernière mise à jour {lastUpdated}"
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr "Emplacement"
|
msgstr "Emplacement"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr "Mars 2023 - Aujourd'hui"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Marge"
|
msgstr "Marge"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "Token maximum"
|
msgstr "Token maximum"
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr "Token maximum"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "Licence MIT"
|
msgstr "Licence MIT"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "Modèle"
|
msgstr "Modèle"
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr "Modèle"
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nom"
|
msgstr "Nom"
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nom"
|
msgstr "Nom"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Réseau"
|
msgstr "Réseau"
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr "Remarque : Cela rendra votre compte moins sécurisé."
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Notes"
|
msgstr "Notes"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr "Intégration Ollama"
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr "Mot de passe à usage unique"
|
msgstr "Mot de passe à usage unique"
|
||||||
@ -984,7 +980,7 @@ msgstr "Mot de passe à usage unique"
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr "Oups, le serveur a renvoyé une erreur."
|
msgstr "Oups, le serveur a renvoyé une erreur."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr "Ouvrir"
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr "Open Source"
|
msgstr "Open Source"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr "Clé d'API OpenAI / Ollama"
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr "OpenAI n'a renvoyé aucun choix pour votre texte."
|
msgstr "OpenAI n'a renvoyé aucun choix pour votre texte."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "Intégration OpenAI"
|
msgstr "Intégration 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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr "Poste"
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr "Propulsé par"
|
msgstr "Propulsé par"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr "Réalisé par <0>Simple Icons</0>"
|
msgstr "Réalisé par <0>Simple Icons</0>"
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr "Reactive Resume prospère grâce à sa communauté dynamique. Ce projet
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Rétablir"
|
msgstr "Rétablir"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Supprimer"
|
msgstr "Supprimer"
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr "Supprimer la Page"
|
msgstr "Supprimer la Page"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr "Riche en fonctionnalités, pas en prix."
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr "Arrondi"
|
msgstr "Arrondi"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Enregistrer les modifications"
|
msgstr "Enregistrer les modifications"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "Enregistrer Localement"
|
msgstr "Enregistrer Localement"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Enregistré"
|
msgstr "Enregistré"
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr "Thème"
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr "Une erreur s'est produite lors de la connexion au navigateur. Veuillez vous assurer que 'chrome' fonctionne et est accessible."
|
msgstr "Une erreur s'est produite lors de la connexion au navigateur. Veuillez vous assurer que 'chrome' fonctionne et est accessible."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr "Cette action peut être annulée en cliquant sur le bouton Annuler dans la barre d'outils flottante."
|
msgstr "Cette action peut être annulée en cliquant sur le bouton Annuler dans la barre d'outils flottante."
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr "Annuler"
|
msgstr "Annuler"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr "Le déverrouillage d'un CV vous permettra de le modifier à nouveau."
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr "Non vérifié"
|
msgstr "Non vérifié"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr "Mettre à jour un élément existant"
|
msgstr "Mettre à jour un élément existant"
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr "L'utilisateur n'a pas d'enregistrement de « secrets » associé. Veuillez signaler ce problème sur GitHub."
|
msgstr "L'utilisateur n'a pas d'enregistrement de « secrets » associé. Veuillez signaler ce problème sur GitHub."
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr "Nom d’utilisateur"
|
msgstr "Nom d’utilisateur"
|
||||||
@ -1610,7 +1609,7 @@ msgstr "Valider"
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr "Validé"
|
msgstr "Validé"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Valeur"
|
msgstr "Valeur"
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr "Version 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Vues"
|
msgstr "Vues"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Visible"
|
msgstr "Visible"
|
||||||
|
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr "Nous vérifions votre adresse électronique uniquement pour nous assurer que nous pouvons vous envoyer un lien de réinitialisation du mot de passe au cas où vous l'oublieriez."
|
msgstr "Nous vérifions votre adresse électronique uniquement pour nous assurer que nous pouvons vous envoyer un lien de réinitialisation du mot de passe au cas où vous l'oublieriez."
|
||||||
@ -1648,7 +1651,7 @@ msgstr "Nous vérifions votre adresse électronique uniquement pour nous assurer
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr "Site Web"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Quoi de neuf dans la dernière version"
|
msgstr "Quoi de neuf dans la dernière version"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Vous pouvez ajouter plusieurs mots-clés en les séparant par une virgule ou en appuyant sur la touche Entrée."
|
msgstr "Vous pouvez ajouter plusieurs mots-clés en les séparant par une virgule ou en appuyant sur la touche Entrée."
|
||||||
@ -1672,11 +1675,11 @@ msgstr "Vous pouvez ajouter plusieurs mots-clés en les séparant par une virgul
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Vous pouvez également saisir votre nom d'utilisateur."
|
msgstr "Vous pouvez également saisir votre nom d'utilisateur."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 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 les modèles et définir le nombre maximum de jetons."
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
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."
|
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."
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr "Vous pouvez utiliser l'API OpenAI pour vous aider à générer du conten
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Vous pouvez suivre le nombre de vues que votre CV a reçues ou le nombre de personnes qui ont téléchargé le CV en activant le partage public."
|
msgstr "Vous pouvez suivre le nombre de vues que votre CV a reçues ou le nombre de personnes qui ont téléchargé le CV en activant le partage public."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "Vous avez la possibilité d'<0>obtenir votre propre clé API OpenAI</0> . Cette clé vous permet d’exploiter l’API comme bon vous semble. Alternativement, si vous souhaitez désactiver complètement les fonctionnalités d'IA dans Reactive Resume, vous pouvez simplement supprimer la clé de vos paramètres."
|
msgstr "Vous avez la possibilité d'<0>obtenir votre propre clé API OpenAI</0> . Cette clé vous permet d’exploiter l’API comme bon vous semble. Alternativement, si vous souhaitez désactiver complètement les fonctionnalités d'IA dans Reactive Resume, vous pouvez simplement supprimer la clé de vos paramètres."
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr "Vous avez un message !"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Votre compte et toutes vos données ont été supprimés avec succès. Au revoir!"
|
msgstr "Votre compte et toutes vos données ont été supprimés avec succès. Au revoir!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "Votre clé API est stockée en toute sécurité dans le stockage local du navigateur et n'est utilisée que lors des demandes adressées à OpenAI via leur SDK officiel. Soyez assuré que votre clé n'est transmise à aucun serveur externe sauf lors de l'interaction avec les services d'OpenAI."
|
msgstr "Votre clé API est stockée en toute sécurité dans le stockage local du navigateur et n'est utilisée que lors des demandes adressées à OpenAI via leur SDK officiel. Soyez assuré que votre clé n'est transmise à aucun serveur externe sauf lors de l'interaction avec les services d'OpenAI."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: he\n"
|
"Language: he\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:13\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Hebrew\n"
|
"Language-Team: Hebrew\n"
|
||||||
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n"
|
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n"
|
||||||
@ -38,7 +38,7 @@ msgstr "<0>בניתי את Reactive Resume בעיקר בעצמי בזמן הפנ
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr "<0>אין לי ספק שהיישום רחוק מלהיות מושלם אבל אני חותר לכך שיהיה כזה.</0><1>אם נתקלת בבעיות במהלך יצירת קורות החיים שלך או שיש לך רעיון שיכול לסייע לך ולמשתמשים אחרים ביצירת קורות חיים יותר בקלות, אפשר לדוח על הצעה/תקלה במאגר הקוד או לשלוח לי הודעה על כך בדוא״ל.</1>"
|
msgstr "<0>אין לי ספק שהיישום רחוק מלהיות מושלם אבל אני חותר לכך שיהיה כזה.</0><1>אם נתקלת בבעיות במהלך יצירת קורות החיים שלך או שיש לך רעיון שיכול לסייע לך ולמשתמשים אחרים ביצירת קורות חיים יותר בקלות, אפשר לדוח על הצעה/תקלה במאגר הקוד או לשלוח לי הודעה על כך בדוא״ל.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr "<0>לתשומת ליבך: </0>עצם השימוש ב־API של OpenAI מהווה הכרה והסכמה ל<1>תנאי השימוש</1> ול<2>מדיניות הפרטיות</2> שנקבעו על ידי OpenAI. נא לשים לב ש־Reactive Resume אינו אחראי במקרים של שימוש לא הולם או לא מורשה בשירות, לרבות השלכות נגזרות או התחייבויות שחלות באופן בלעדי על המשתמש."
|
msgstr "<0>לתשומת ליבך: </0>עצם השימוש ב־API של OpenAI מהווה הכרה והסכמה ל<1>תנאי השימוש</1> ול<2>מדיניות הפרטיות</2> שנקבעו על ידי OpenAI. נא לשים לב ש־Reactive Resume אינו אחראי במקרים של שימוש לא הולם או לא מורשה בשירות, לרבות השלכות נגזרות או התחייבויות שחלות באופן בלעדי על המשתמש."
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr "מקבל רק קובצי {accept}"
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr "חשבון"
|
msgstr "חשבון"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr "הוספת שדה מותאם אישית"
|
msgstr "הוספת שדה מותאם אישית"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "הוספת פריט חדש"
|
msgstr "הוספת פריט חדש"
|
||||||
@ -146,7 +146,7 @@ msgstr "לכל מי שיש את הקישור יש אפשרות להוריד את
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr "כל מי שמחזיק בקישור הזה יכול לצפות ולהוריד את קורות החיים. אפשר לשתף אותם בפרופיל שלך או עם מגייסים ומגייסות."
|
msgstr "כל מי שמחזיק בקישור הזה יכול לצפות ולהוריד את קורות החיים. אפשר לשתף אותם בפרופיל שלך או עם מגייסים ומגייסות."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr "למחוק את הפריט הזה?"
|
msgstr "למחוק את הפריט הזה?"
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr "קוד גיבוי"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "קודים למטרות גיבוי יכולים להכיל רק אותיות לטיניות קטנות או מספרים והם חייבים להיות באורך של 10 תווים בדיוק."
|
msgstr "קודים למטרות גיבוי יכולים להכיל רק אותיות לטיניות קטנות או מספרים והם חייבים להיות באורך של 10 תווים בדיוק."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr "נבנה עם"
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr "על ידי הקהילה ועבורה."
|
msgstr "על ידי הקהילה ועבורה."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr "אישור הסיסמה החדשה"
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "המשך"
|
msgstr "המשך"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "העתקה"
|
msgstr "העתקה"
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr "העתקת הקישור לקורות החיים"
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr "העתקה ללוח הגזירים"
|
msgstr "העתקה ללוח הגזירים"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr "יצירה"
|
msgstr "יצירה"
|
||||||
@ -328,7 +328,7 @@ msgstr "יצירה"
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr "יצירת חשבון חדש"
|
msgstr "יצירת חשבון חדש"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr "יצירת פריט חדש"
|
msgstr "יצירת פריט חדש"
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr "תאריך"
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "תאריך או טווח תאריכים"
|
msgstr "תאריך או טווח תאריכים"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr "הורדת PDF"
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr "הורדות"
|
msgstr "הורדות"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr "שכפול"
|
msgstr "שכפול"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr "שכפול פריט קיים"
|
msgstr "שכפול פריט קיים"
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr "שכפול פריט קיים"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "שכפול קורות חיים קיימים"
|
msgstr "שכפול קורות חיים קיימים"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "עריכה"
|
msgstr "עריכה"
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr "הגווני גופן"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "למשל, מידע לגבי לאילו חברות שלחת את קורות החיים האלה או את תיאורי התפקיד אפשר לתעד כאן."
|
msgstr "למשל, מידע לגבי לאילו חברות שלחת את קורות החיים האלה או את תיאורי התפקיד אפשר לתעד כאן."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "לשכוח"
|
msgstr "לשכוח"
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr "כאן אפשר לעדכן את פרטי החשבון שלך כגון ת
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr "כאן אפשר לעדכן את הפרופיל שלך כדי להתאים ולהפוך את החוויה שלך לאישית יותר."
|
msgstr "כאן אפשר לעדכן את הפרופיל שלך כדי להתאים ולהפוך את החוויה שלך לאישית יותר."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "מוסתר"
|
msgstr "מוסתר"
|
||||||
@ -690,7 +690,7 @@ msgstr "אחסון ציבורי של קורות החיים שלך"
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr "תמיד מעניין אותי לשמוע ממשתמשי Reactive Resume בנוגע למשוב שלהם. הנה חלק מההודעות שקיבלתי. אם יש לך משוב, אשמח לקבל ממך הודעה בדוא״ל אל <0>{email}</0>."
|
msgstr "תמיד מעניין אותי לשמוע ממשתמשי Reactive Resume בנוגע למשוב שלהם. הנה חלק מההודעות שקיבלתי. אם יש לך משוב, אשמח לקבל ממך הודעה בדוא״ל אל <0>{email}</0>."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr "סמל"
|
msgstr "סמל"
|
||||||
@ -793,9 +793,9 @@ msgstr "israel.israeli@israel.gov.il"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "מילות מפתח"
|
msgstr "מילות מפתח"
|
||||||
@ -809,7 +809,7 @@ msgstr "תווית"
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "שפה"
|
msgstr "שפה"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr "העדכון האחרון היה ב־{lastUpdated}"
|
msgstr "העדכון האחרון היה ב־{lastUpdated}"
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr "מקום"
|
msgstr "מקום"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr "מרץ 2023 - כרגע"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "מרווח"
|
msgstr "מרווח"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "רישיון MIT"
|
msgstr "רישיון MIT"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "שם"
|
msgstr "שם"
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "שם"
|
msgstr "שם"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "רשת"
|
msgstr "רשת"
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr "לתשומת ליבך: זה ישפר את ההגנה על החשבון
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "הערות"
|
msgstr "הערות"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr "סיסמה חד־פעמית"
|
msgstr "סיסמה חד־פעמית"
|
||||||
@ -984,7 +980,7 @@ msgstr "סיסמה חד־פעמית"
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr "אופס, השרת החזיר שגיאה."
|
msgstr "אופס, השרת החזיר שגיאה."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr "פתיחה"
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr "קוד פתוח"
|
msgstr "קוד פתוח"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr "OpenAI לא החזיר אפשרויות לטקסט שלך."
|
msgstr "OpenAI לא החזיר אפשרויות לטקסט שלך."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "שילוב מול OpenAI"
|
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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr "תפקיד"
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr "מופעל על גבי"
|
msgstr "מופעל על גבי"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr "נעזר ב־<0>Simple Icons</0>"
|
msgstr "נעזר ב־<0>Simple Icons</0>"
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr "מיזם Reactive Resume משגשג בזכות הקהילה התוססת
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "ביצוע מחדש"
|
msgstr "ביצוע מחדש"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "הסרה"
|
msgstr "הסרה"
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr "הסרת עמוד"
|
msgstr "הסרת עמוד"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr "עשיר ביכולות, לא בממון."
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr "מעוגל"
|
msgstr "מעוגל"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "שמירת שינויים"
|
msgstr "שמירת שינויים"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr "ערכת עיצוב"
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr "קרתה תקלה בחיבור לדפדפן. נא לוודא ש־‚chrome’ פעיל ונגיש."
|
msgstr "קרתה תקלה בחיבור לדפדפן. נא לוודא ש־‚chrome’ פעיל ונגיש."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr "אפשר לחזור אחורה מהפעולה הזאת על ידי לחיצה על כפתור ההחזרה בסרגל הכלים המרחף."
|
msgstr "אפשר לחזור אחורה מהפעולה הזאת על ידי לחיצה על כפתור ההחזרה בסרגל הכלים המרחף."
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr "החזרה"
|
msgstr "החזרה"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr "שחרור קורות חיים יאפשר לערוך בו שינויים
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr "לא מאומת"
|
msgstr "לא מאומת"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr "עדכון פריט קיים"
|
msgstr "עדכון פריט קיים"
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr "למשתמש אין רשומת ‚סודות’ (secrets) משויכת אליו. נא לדווח על התקלה הזאת ב־GitHub."
|
msgstr "למשתמש אין רשומת ‚סודות’ (secrets) משויכת אליו. נא לדווח על התקלה הזאת ב־GitHub."
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr "שם משתמש"
|
msgstr "שם משתמש"
|
||||||
@ -1610,7 +1609,7 @@ msgstr "תיקוף"
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr "תקף"
|
msgstr "תקף"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "ערך"
|
msgstr "ערך"
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr "גרסה 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "צפיות"
|
msgstr "צפיות"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "גלוי"
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr "אנו מאמתים את כתובת הדוא״ל שלך רק כדי לוודא שאפשר לשלוח לך קישור לאיפוס סיסמה למקרה ששכחת אותה."
|
msgstr "אנו מאמתים את כתובת הדוא״ל שלך רק כדי לוודא שאפשר לשלוח לך קישור לאיפוס סיסמה למקרה ששכחת אותה."
|
||||||
@ -1648,7 +1651,7 @@ msgstr "אנו מאמתים את כתובת הדוא״ל שלך רק כדי לו
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr "אתר אינטרנט"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "מה חדש בגרסה העדכנית"
|
msgstr "מה חדש בגרסה העדכנית"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "אפשר להוסיף מספר מילות מפתח על ידי הפרדתן בפסיק או בלחיצה על Enter."
|
msgstr "אפשר להוסיף מספר מילות מפתח על ידי הפרדתן בפסיק או בלחיצה על Enter."
|
||||||
@ -1672,11 +1675,11 @@ msgstr "אפשר להוסיף מספר מילות מפתח על ידי הפרד
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "אפשר גם למלא את שם המשתמש שלך."
|
msgstr "אפשר גם למלא את שם המשתמש שלך."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
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 כדי לסייע לך לייצא תוכן, או לשפר את הכתיבה שלך בעת כתיבת קורות החיים שלך."
|
msgstr "אפשר להשתמש ב־API של OpenAI כדי לסייע לך לייצא תוכן, או לשפר את הכתיבה שלך בעת כתיבת קורות החיים שלך."
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr "אפשר להשתמש ב־API של OpenAI כדי לסייע לך ליי
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "אפשר לעקוב אחר מספר הצפיות או אחר ההורדות של קורות החיים על ידי הפעלת שיתוף ציבורי."
|
msgstr "אפשר לעקוב אחר מספר הצפיות או אחר ההורדות של קורות החיים על ידי הפעלת שיתוף ציבורי."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "יש לך אפשרות <0>לקבל מפתח API משלך ל־OpenAI</0>. המפתח הזה מאפשר לך למנף את ה־API כפי שנראה לך לנכון. לחלופין, כדי להשבית את אפשרויות הבינה המלאכותית לחלוטין ב־Reactive Resume, אפשר פשוט להסיר את המפתח מההגדרות שלך."
|
msgstr "יש לך אפשרות <0>לקבל מפתח API משלך ל־OpenAI</0>. המפתח הזה מאפשר לך למנף את ה־API כפי שנראה לך לנכון. לחלופין, כדי להשבית את אפשרויות הבינה המלאכותית לחלוטין ב־Reactive Resume, אפשר פשוט להסיר את המפתח מההגדרות שלך."
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr "קיבלת הודעה!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "החשבון וכל הנתונים שלך נמחקו בהצלחה. להתראות ובהצלחה!"
|
msgstr "החשבון וכל הנתונים שלך נמחקו בהצלחה. להתראות ובהצלחה!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "מפתח ה־API שלך מאוחסן בדפדפן מקומית ונעשה בו שימוש רק בעת שליחת בקשות ל־OpenAI דרך ה־SDK הרשמי שלהם. אנו מתחייבים שהמפתח שלך לא מועבר לשרת חיצוני מלבד למטרות תפעול השירותים של OpenAI."
|
msgstr "מפתח ה־API שלך מאוחסן בדפדפן מקומית ונעשה בו שימוש רק בעת שליחת בקשות ל־OpenAI דרך ה־SDK הרשמי שלהם. אנו מתחייבים שהמפתח שלך לא מועבר לשרת חיצוני מלבד למטרות תפעול השירותים של OpenAI."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: hi\n"
|
"Language: hi\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:13\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Hindi\n"
|
"Language-Team: Hindi\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -38,7 +38,7 @@ msgstr "<0>मैंने अपने खाली समय के दौर
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr "<0>मुझे यकीन है कि ऐप पूर्ण नहीं है, लेकिन मैं चाहूंगा कि ऐसा हो।</0> <1>यदि आपको अपना बायोडाटा बनाते समय किसी समस्या का सामना करना पड़ा है, या आपके पास कोई विचार है जो आपको और अन्य उपयोगकर्ताओं को अपना बायोडाटा अधिक आसानी से बनाने में मदद करेगा, तो रिपोजिटरी पर समस्या छोड़ें या इसके बारे में मुझे एक ईमेल भेजें।</1>"
|
msgstr "<0>मुझे यकीन है कि ऐप पूर्ण नहीं है, लेकिन मैं चाहूंगा कि ऐसा हो।</0> <1>यदि आपको अपना बायोडाटा बनाते समय किसी समस्या का सामना करना पड़ा है, या आपके पास कोई विचार है जो आपको और अन्य उपयोगकर्ताओं को अपना बायोडाटा अधिक आसानी से बनाने में मदद करेगा, तो रिपोजिटरी पर समस्या छोड़ें या इसके बारे में मुझे एक ईमेल भेजें।</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr "<0>ध्यान दें:</0> OpenAI API का उपयोग करके, आप <1>उपयोग की शर्तों को स्वीकार करते हैं</1> और <2>गोपनीयता नीति</2> OpenAI द्वारा उल्लिखित। कृपया ध्यान दें कि रिएक्टिव रेज़्यूमे सेवा के किसी भी अनुचित या अनधिकृत उपयोग के लिए कोई ज़िम्मेदारी नहीं लेता है, और इसके परिणामस्वरूप होने वाले किसी भी परिणाम या देनदारियां पूरी तरह से उपयोगकर्ता पर निर्भर करती हैं।"
|
msgstr "<0>ध्यान दें:</0> OpenAI API का उपयोग करके, आप <1>उपयोग की शर्तों को स्वीकार करते हैं</1> और <2>गोपनीयता नीति</2> OpenAI द्वारा उल्लिखित। कृपया ध्यान दें कि रिएक्टिव रेज़्यूमे सेवा के किसी भी अनुचित या अनधिकृत उपयोग के लिए कोई ज़िम्मेदारी नहीं लेता है, और इसके परिणामस्वरूप होने वाले किसी भी परिणाम या देनदारियां पूरी तरह से उपयोगकर्ता पर निर्भर करती हैं।"
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr "केवल {accept} फ़ाइलें स्वीकार कर
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr "खाता"
|
msgstr "खाता"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr "नया कस्टम फ़ील्ड जोड़ें"
|
msgstr "नया कस्टम फ़ील्ड जोड़ें"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "एक नया आइटम जोड़ें"
|
msgstr "एक नया आइटम जोड़ें"
|
||||||
@ -146,7 +146,7 @@ msgstr "लिंक वाला कोई भी व्यक्ति बा
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr "इस लिंक वाला कोई भी व्यक्ति बायोडाटा देख और डाउनलोड कर सकता है। इसे अपनी प्रोफ़ाइल पर या भर्तीकर्ताओं के साथ साझा करें।"
|
msgstr "इस लिंक वाला कोई भी व्यक्ति बायोडाटा देख और डाउनलोड कर सकता है। इसे अपनी प्रोफ़ाइल पर या भर्तीकर्ताओं के साथ साझा करें।"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr "क्या आप बाकई यह आइटम डिलीट करना चाहते हैं?"
|
msgstr "क्या आप बाकई यह आइटम डिलीट करना चाहते हैं?"
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr "बैकअप कोड"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "बैकअप कोड में केवल छोटे अक्षर या संख्याएँ हो सकती हैं, और बिल्कुल 10 अक्षर होने चाहिए।"
|
msgstr "बैकअप कोड में केवल छोटे अक्षर या संख्याएँ हो सकती हैं, और बिल्कुल 10 अक्षर होने चाहिए।"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr "के साथ निर्मित"
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr "समुदाय द्वारा, समुदाय के लिए."
|
msgstr "समुदाय द्वारा, समुदाय के लिए."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr "नए पासवर्ड की पुष्टि करें"
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "जारी रखें"
|
msgstr "जारी रखें"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "कॉपी करें"
|
msgstr "कॉपी करें"
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr "फिर से शुरू करने के लिए लिंक
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr "क्लिपबोर्ड पर कॉपी करें"
|
msgstr "क्लिपबोर्ड पर कॉपी करें"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr "बनाएँ"
|
msgstr "बनाएँ"
|
||||||
@ -328,7 +328,7 @@ msgstr "बनाएँ"
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr "एक नया खाता बनाएँ"
|
msgstr "एक नया खाता बनाएँ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr "एक नया आइटम बनाएं"
|
msgstr "एक नया आइटम बनाएं"
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr "दिनांक"
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "तारीख या तारीख सीमा"
|
msgstr "तारीख या तारीख सीमा"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr "डाउनलोड PDF"
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr "डाउनलोड"
|
msgstr "डाउनलोड"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr "प्रतिरूप"
|
msgstr "प्रतिरूप"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr "किसी मौजूदा आइटम का नक़ल बनाएं"
|
msgstr "किसी मौजूदा आइटम का नक़ल बनाएं"
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr "किसी मौजूदा आइटम का नक़ल बन
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "किसी मौजूदा आइटम का नक़ल बनाएं"
|
msgstr "किसी मौजूदा आइटम का नक़ल बनाएं"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "एडिट करें"
|
msgstr "एडिट करें"
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr "फ़ॉन्ट प्रकार"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "उदाहरण के लिए, आपने किन कंपनियों को यह बायोडाटा भेजा है, इसकी जानकारी या नौकरी विवरण के लिंक यहां नोट किए जा सकते हैं।"
|
msgstr "उदाहरण के लिए, आपने किन कंपनियों को यह बायोडाटा भेजा है, इसकी जानकारी या नौकरी विवरण के लिंक यहां नोट किए जा सकते हैं।"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "हटाएं"
|
msgstr "हटाएं"
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr "यहां, आप अपने खाते की जानकार
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr "यहां, आप अपने अनुभव को अनुकूलित और वैयक्तिकृत करने के लिए अपनी प्रोफ़ाइल को अपडेट कर सकते हैं।"
|
msgstr "यहां, आप अपने अनुभव को अनुकूलित और वैयक्तिकृत करने के लिए अपनी प्रोफ़ाइल को अपडेट कर सकते हैं।"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "छुपा हुआ"
|
msgstr "छुपा हुआ"
|
||||||
@ -690,7 +690,7 @@ msgstr "अपना बायोडाटा सार्वजनिक रू
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr "मुझे हमेशा रिएक्टिव रेज़्यूमे के उपयोगकर्ताओं से प्रतिक्रिया या समर्थन सुनना अच्छा लगता है। यहां कुछ संदेश हैं जो मुझे प्राप्त हुए हैं। यदि आपके पास कोई प्रतिक्रिया है, तो बेझिझक मुझे <0>{email} पर एक ईमेल भेजें</0>."
|
msgstr "मुझे हमेशा रिएक्टिव रेज़्यूमे के उपयोगकर्ताओं से प्रतिक्रिया या समर्थन सुनना अच्छा लगता है। यहां कुछ संदेश हैं जो मुझे प्राप्त हुए हैं। यदि आपके पास कोई प्रतिक्रिया है, तो बेझिझक मुझे <0>{email} पर एक ईमेल भेजें</0>."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr "आइकॉन"
|
msgstr "आइकॉन"
|
||||||
@ -793,9 +793,9 @@ msgstr "john.doe@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "जेसन"
|
msgstr "जेसन"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "खोजशब्द:"
|
msgstr "खोजशब्द:"
|
||||||
@ -809,7 +809,7 @@ msgstr "लेबल"
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "भाषा"
|
msgstr "भाषा"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr "अंतिम अद्यतन {lastUpdated}"
|
msgstr "अंतिम अद्यतन {lastUpdated}"
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr "स्थान"
|
msgstr "स्थान"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr "मार्च 2023 - वर्तमान"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "अंतर"
|
msgstr "अंतर"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "मआईटी लाईसन्स"
|
msgstr "मआईटी लाईसन्स"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "नाम"
|
msgstr "नाम"
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "नाम"
|
msgstr "नाम"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "नेटवर्क"
|
msgstr "नेटवर्क"
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr "नोट: इससे आपका खाता कम सुरक्
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "टिप्पणियाँ"
|
msgstr "टिप्पणियाँ"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr "एक बारी पासवर्ड"
|
msgstr "एक बारी पासवर्ड"
|
||||||
@ -984,7 +980,7 @@ msgstr "एक बारी पासवर्ड"
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr "ओह, सर्वर ने एक त्रुटि लौटा दी।"
|
msgstr "ओह, सर्वर ने एक त्रुटि लौटा दी।"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr "खोलें"
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr "खुला स्त्रोत"
|
msgstr "खुला स्त्रोत"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr "OpenAI ने आपके टेक्स्ट के लिए कोई विकल्प नहीं लौटाया।"
|
msgstr "OpenAI ने आपके टेक्स्ट के लिए कोई विकल्प नहीं लौटाया।"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "OpenAI एकीकरण"
|
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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr "स्थान"
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr "द्वारा संचालित"
|
msgstr "द्वारा संचालित"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr "<0>सिंपल आइकॉन</0> द्वारा संचालित"
|
msgstr "<0>सिंपल आइकॉन</0> द्वारा संचालित"
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr "रिएक्टिव रेज़्यूमे अपने जी
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "पुनः करें"
|
msgstr "पुनः करें"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "हटाएं"
|
msgstr "हटाएं"
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr "हटाएँ पेज"
|
msgstr "हटाएँ पेज"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr "सुविधाओं से भरपूर, कीमत से न
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr "गोल"
|
msgstr "गोल"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "परिवर्तन सेव करें"
|
msgstr "परिवर्तन सेव करें"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr "थीम"
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr "ब्राउज़र से कनेक्ट करने में त्रुटि हुई. कृपया सुनिश्चित करें कि 'क्रोम' चल रहा है और पहुंच योग्य है।"
|
msgstr "ब्राउज़र से कनेक्ट करने में त्रुटि हुई. कृपया सुनिश्चित करें कि 'क्रोम' चल रहा है और पहुंच योग्य है।"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr "फ़्लोटिंग टूलबार में पूर्ववत करें बटन पर क्लिक करके इस क्रिया को पूर्ववत किया जा सकता है।"
|
msgstr "फ़्लोटिंग टूलबार में पूर्ववत करें बटन पर क्लिक करके इस क्रिया को पूर्ववत किया जा सकता है।"
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr "वापस लाएं"
|
msgstr "वापस लाएं"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr "बायोडाटा को अनलॉक करने से आ
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr "असत्यापित"
|
msgstr "असत्यापित"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr "किसी मौजूदा आइटम का नक़ल बनाएं"
|
msgstr "किसी मौजूदा आइटम का नक़ल बनाएं"
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr "उपयोगकर्ता के पास कोई संबद्ध 'रहस्य' रिकॉर्ड नहीं है. कृपया इस समस्या की रिपोर्ट GitHub पर करें।"
|
msgstr "उपयोगकर्ता के पास कोई संबद्ध 'रहस्य' रिकॉर्ड नहीं है. कृपया इस समस्या की रिपोर्ट GitHub पर करें।"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr "उपयोगकर्ता नाम"
|
msgstr "उपयोगकर्ता नाम"
|
||||||
@ -1610,7 +1609,7 @@ msgstr "वैधीकृत करें"
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr "वैधीकृत करें"
|
msgstr "वैधीकृत करें"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "मूल्य"
|
msgstr "मूल्य"
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr "संस्करण 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "दृश्य"
|
msgstr "दृश्य"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "दर्शनीय"
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr "हम आपके ईमेल पते को केवल यह सुनिश्चित करने के लिए सत्यापित करते हैं कि यदि आप अपना पासवर्ड भूल जाते हैं तो हम आपको पासवर्ड रीसेट लिंक भेज सकते हैं।"
|
msgstr "हम आपके ईमेल पते को केवल यह सुनिश्चित करने के लिए सत्यापित करते हैं कि यदि आप अपना पासवर्ड भूल जाते हैं तो हम आपको पासवर्ड रीसेट लिंक भेज सकते हैं।"
|
||||||
@ -1648,7 +1651,7 @@ msgstr "हम आपके ईमेल पते को केवल यह
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr "वेबसाइट"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "नवीनतम संस्करण में नया क्या है"
|
msgstr "नवीनतम संस्करण में नया क्या है"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "आप एकाधिक कीवर्ड को अल्पविराम से अलग करके या एंटर दबाकर जोड़ सकते हैं।"
|
msgstr "आप एकाधिक कीवर्ड को अल्पविराम से अलग करके या एंटर दबाकर जोड़ सकते हैं।"
|
||||||
@ -1672,11 +1675,11 @@ msgstr "आप एकाधिक कीवर्ड को अल्पवि
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "आप अपना उपयोगकर्ता नाम भी दर्ज कर सकते हैं."
|
msgstr "आप अपना उपयोगकर्ता नाम भी दर्ज कर सकते हैं."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
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 का उपयोग कर सकते हैं।"
|
msgstr "आप सामग्री तैयार करने में मदद के लिए या अपना बायोडाटा बनाते समय अपने लेखन को बेहतर बनाने के लिए OpenAI API का उपयोग कर सकते हैं।"
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr "आप सामग्री तैयार करने में म
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "आप सार्वजनिक साझाकरण को सक्षम करके यह ट्रैक कर सकते हैं कि आपके बायोडाटा को कितने बार देखा गया है, या कितने लोगों ने बायोडाटा डाउनलोड किया है।"
|
msgstr "आप सार्वजनिक साझाकरण को सक्षम करके यह ट्रैक कर सकते हैं कि आपके बायोडाटा को कितने बार देखा गया है, या कितने लोगों ने बायोडाटा डाउनलोड किया है।"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "आपके पास <0>अपनी स्वयं की OpenAI API कुंजी प्राप्त करने का विकल्प है</0>. यह कुंजी आपको अपनी इच्छानुसार एपीआई का लाभ उठाने का अधिकार देती है। वैकल्पिक रूप से, यदि आप रिएक्टिव रेज़्यूमे में एआई सुविधाओं को पूरी तरह से अक्षम करना चाहते हैं, तो आप बस अपनी सेटिंग्स से कुंजी को हटा सकते हैं।"
|
msgstr "आपके पास <0>अपनी स्वयं की OpenAI API कुंजी प्राप्त करने का विकल्प है</0>. यह कुंजी आपको अपनी इच्छानुसार एपीआई का लाभ उठाने का अधिकार देती है। वैकल्पिक रूप से, यदि आप रिएक्टिव रेज़्यूमे में एआई सुविधाओं को पूरी तरह से अक्षम करना चाहते हैं, तो आप बस अपनी सेटिंग्स से कुंजी को हटा सकते हैं।"
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr "आपको मेल प्राप्त हुआ है"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "आपका खाता और आपका सारा डेटा सफलतापूर्वक हटा दिया गया है। अलविदा!"
|
msgstr "आपका खाता और आपका सारा डेटा सफलतापूर्वक हटा दिया गया है। अलविदा!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "आपकी एपीआई कुंजी ब्राउज़र के स्थानीय भंडारण में सुरक्षित रूप से संग्रहीत है और इसका उपयोग केवल उनके आधिकारिक एसडीके के माध्यम से OpenAI से अनुरोध करते समय किया जाता है। निश्चिंत रहें कि आपकी कुंजी OpenAI की सेवाओं के साथ इंटरैक्ट करने के अलावा किसी भी बाहरी सर्वर पर प्रसारित नहीं होती है।"
|
msgstr "आपकी एपीआई कुंजी ब्राउज़र के स्थानीय भंडारण में सुरक्षित रूप से संग्रहीत है और इसका उपयोग केवल उनके आधिकारिक एसडीके के माध्यम से OpenAI से अनुरोध करते समय किया जाता है। निश्चिंत रहें कि आपकी कुंजी OpenAI की सेवाओं के साथ इंटरैक्ट करने के अलावा किसी भी बाहरी सर्वर पर प्रसारित नहीं होती है।"
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: hu\n"
|
"Language: hu\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:13\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Hungarian\n"
|
"Language-Team: Hungarian\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -38,7 +38,7 @@ msgstr "<0>A Reactive Resumet nagyrészt egyedül építettem a szabadidőmben,
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr "<0>Biztos vagyok benne, hogy az alkalmazás nem tökéletes, de szeretném, ha az lenne.</0><1>Ha bármilyen problémával szembesültél az önéletrajzod elkészítése során, vagy van egy ötleted, ami segítene neked és más felhasználóknak az önéletrajzod könnyebb elkészítésében, írj egy problémát az adattárba, vagy küldj nekem egy e-mailt róla.</1>"
|
msgstr "<0>Biztos vagyok benne, hogy az alkalmazás nem tökéletes, de szeretném, ha az lenne.</0><1>Ha bármilyen problémával szembesültél az önéletrajzod elkészítése során, vagy van egy ötleted, ami segítene neked és más felhasználóknak az önéletrajzod könnyebb elkészítésében, írj egy problémát az adattárba, vagy küldj nekem egy e-mailt róla.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr "<0>Megjegyzés: </0>Az OpenAI API használatával Ön tudomásul veszi és elfogadja az OpenAI által meghatározott <1>felhasználási feltételeket</1> és <2>adatvédelmi szabályzatot</2>. Felhívjuk figyelmét, hogy a Reactive Resume nem vállal felelősséget a szolgáltatás nem megfelelő vagy jogosulatlan használatáért, és az ebből eredő következmények vagy felelősségek kizárólag a felhasználót terhelik."
|
msgstr "<0>Megjegyzés: </0>Az OpenAI API használatával Ön tudomásul veszi és elfogadja az OpenAI által meghatározott <1>felhasználási feltételeket</1> és <2>adatvédelmi szabályzatot</2>. Felhívjuk figyelmét, hogy a Reactive Resume nem vállal felelősséget a szolgáltatás nem megfelelő vagy jogosulatlan használatáért, és az ebből eredő következmények vagy felelősségek kizárólag a felhasználót terhelik."
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr "Csak a következő fájlokat fogadja el: {accept}"
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr "Fiók"
|
msgstr "Fiók"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr "Egyéni mező hozzáadása"
|
msgstr "Egyéni mező hozzáadása"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Elem hozzáadása"
|
msgstr "Elem hozzáadása"
|
||||||
@ -146,7 +146,7 @@ msgstr "A link birtokában bárki megtekintheti és letöltheti az önéletrajzo
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr "A link birtokában bárki megtekintheti és letöltheti az önéletrajzot. Oszd meg a profilodon vagy a toborzókkal."
|
msgstr "A link birtokában bárki megtekintheti és letöltheti az önéletrajzot. Oszd meg a profilodon vagy a toborzókkal."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr "Biztosan törölni szeretnéd ezt az elemet?"
|
msgstr "Biztosan törölni szeretnéd ezt az elemet?"
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr "Biztonsági kód"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "A biztonsági kódok csak kisbetűket vagy számokat tartalmazhatnak, és pontosan 10 karakterből kell állniuk."
|
msgstr "A biztonsági kódok csak kisbetűket vagy számokat tartalmazhatnak, és pontosan 10 karakterből kell állniuk."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr "Készült"
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr "A közösség által, a közösségért."
|
msgstr "A közösség által, a közösségért."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr "Új jelszó megerősítése"
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Tovább"
|
msgstr "Tovább"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Másolás"
|
msgstr "Másolás"
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr "Másolja a hivatkozást az önéletrajzhoz"
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr "Másolás a vágólapra"
|
msgstr "Másolás a vágólapra"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr "Létrehozás"
|
msgstr "Létrehozás"
|
||||||
@ -328,7 +328,7 @@ msgstr "Létrehozás"
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr "Új fiók létrehozása"
|
msgstr "Új fiók létrehozása"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr "Új elem létrehozása"
|
msgstr "Új elem létrehozása"
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr "Dátum"
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Dátum vagy dátumtartomány"
|
msgstr "Dátum vagy dátumtartomány"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr "PDF letöltése"
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr "Letöltések"
|
msgstr "Letöltések"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr "Duplikálás"
|
msgstr "Duplikálás"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr "Meglévő elem duplikálása"
|
msgstr "Meglévő elem duplikálása"
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr "Meglévő elem duplikálása"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Meglévő önéletrajz duplikálása"
|
msgstr "Meglévő önéletrajz duplikálása"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Szerkesztés"
|
msgstr "Szerkesztés"
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr "Betűtípusok"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "Itt például fel lehet jegyezni, hogy mely cégeknek küldte el az önéletrajzot, vagy hogy milyen linkek vezetnek az állásleírásokhoz."
|
msgstr "Itt például fel lehet jegyezni, hogy mely cégeknek küldte el az önéletrajzot, vagy hogy milyen linkek vezetnek az állásleírásokhoz."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Elfelejt"
|
msgstr "Elfelejt"
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr "Itt frissítheti fiókja adatait, például profilképét, nevét és fe
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr "Itt frissítheti profilját, hogy személyre szabhassa élményét."
|
msgstr "Itt frissítheti profilját, hogy személyre szabhassa élményét."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Rejtett"
|
msgstr "Rejtett"
|
||||||
@ -690,7 +690,7 @@ msgstr "Önéletrajzának nyilvános eltárolása"
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr "Mindig szívesen hallok visszajelzést vagy támogatást a Reactive Resume felhasználóitól. Íme néhány üzenet, amit kaptam. Ha bármilyen visszajelzése van, nyugodtan írjon nekem egy e-mailt a következő címre <0>{email}</0>."
|
msgstr "Mindig szívesen hallok visszajelzést vagy támogatást a Reactive Resume felhasználóitól. Íme néhány üzenet, amit kaptam. Ha bármilyen visszajelzése van, nyugodtan írjon nekem egy e-mailt a következő címre <0>{email}</0>."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr "Ikon"
|
msgstr "Ikon"
|
||||||
@ -793,9 +793,9 @@ msgstr "gipsz.jakab@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Kulcsszavak"
|
msgstr "Kulcsszavak"
|
||||||
@ -809,7 +809,7 @@ msgstr "Címke"
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Nyelv"
|
msgstr "Nyelv"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr "Utoljára frissítve {lastUpdated}"
|
msgstr "Utoljára frissítve {lastUpdated}"
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr "Helyszín"
|
msgstr "Helyszín"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr "2023. március – jelen"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Margó"
|
msgstr "Margó"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "MIT Licenc"
|
msgstr "MIT Licenc"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Név"
|
msgstr "Név"
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Név"
|
msgstr "Név"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Honlap"
|
msgstr "Honlap"
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr "Megjegyzés: Ezzel fiókja kevésbé lesz biztonságos."
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Jegyzetek"
|
msgstr "Jegyzetek"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr "Egyszer használható jelszó"
|
msgstr "Egyszer használható jelszó"
|
||||||
@ -984,7 +980,7 @@ msgstr "Egyszer használható jelszó"
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr "Hoppá, a szerver hibát jelzett."
|
msgstr "Hoppá, a szerver hibát jelzett."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr "Megnyitás"
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr "Nyílt forráskódú"
|
msgstr "Nyílt forráskódú"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr "Az OpenAI nem adott vissza semmilyen választási lehetőséget a szövegedre."
|
msgstr "Az OpenAI nem adott vissza semmilyen választási lehetőséget a szövegedre."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "OpenAI integráció"
|
msgstr "OpenAI integráció"
|
||||||
|
|
||||||
|
#: 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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr "Pozíció"
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr "Powered by"
|
msgstr "Powered by"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr "Készítette: <0>Simple Icons</0>"
|
msgstr "Készítette: <0>Simple Icons</0>"
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr "A Reactive Resume élénk közösségének köszönhetően virágzik. Ez
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Redo"
|
msgstr "Redo"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Távolítsa el a"
|
msgstr "Távolítsa el a"
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr "Oldal eltávolítása"
|
msgstr "Oldal eltávolítása"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr "Gazdag funkciókban, de nem az árképzésben."
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr "Kerekített"
|
msgstr "Kerekített"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Változások mentése"
|
msgstr "Változások mentése"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr "Téma"
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr "Hiba történt a böngészőhöz való csatlakozásban. Kérjük, győződjön meg róla, hogy a 'chrome' fut és elérhető."
|
msgstr "Hiba történt a böngészőhöz való csatlakozásban. Kérjük, győződjön meg róla, hogy a 'chrome' fut és elérhető."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr "Ez a művelet a lebegő eszköztáron található visszavonás gombra kattintva visszaállítható."
|
msgstr "Ez a művelet a lebegő eszköztáron található visszavonás gombra kattintva visszaállítható."
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr "Undo"
|
msgstr "Undo"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr "Az önéletrajz feloldása lehetővé teszi, hogy ismét változtatások
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr "Ellenőrizetlen"
|
msgstr "Ellenőrizetlen"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr "Meglévő elem frissítése"
|
msgstr "Meglévő elem frissítése"
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr "A felhasználónak nincs kapcsolódó \"titkok\" rekordja. Kérjük, jelentse ezt a problémát a GitHubon."
|
msgstr "A felhasználónak nincs kapcsolódó \"titkok\" rekordja. Kérjük, jelentse ezt a problémát a GitHubon."
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr "Felhasználónév"
|
msgstr "Felhasználónév"
|
||||||
@ -1610,7 +1609,7 @@ msgstr "Érvényesítse a címet."
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr "Érvényesített"
|
msgstr "Érvényesített"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Érték"
|
msgstr "Érték"
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr "4. verzió"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Nézettség"
|
msgstr "Nézettség"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Látható"
|
msgstr "Látható"
|
||||||
|
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr "Csak azért ellenőrizzük az e-mail címét, hogy küldhessünk Önnek egy jelszó-visszaállítási linket, ha elfelejtené a jelszavát."
|
msgstr "Csak azért ellenőrizzük az e-mail címét, hogy küldhessünk Önnek egy jelszó-visszaállítási linket, ha elfelejtené a jelszavát."
|
||||||
@ -1648,7 +1651,7 @@ 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/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr "Honlap"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Újdonságok a legújabb verzióban"
|
msgstr "Újdonságok a legújabb verzióban"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Több kulcsszót is hozzáadhat, ha vesszővel választja el őket, vagy megnyomja az enter billentyűt."
|
msgstr "Több kulcsszót is hozzáadhat, ha vesszővel választja el őket, vagy megnyomja az enter billentyűt."
|
||||||
@ -1672,11 +1675,11 @@ msgstr "Több kulcsszót is hozzáadhat, ha vesszővel választja el őket, vagy
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Megadhatja a felhasználónevét is."
|
msgstr "Megadhatja a felhasználónevét is."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
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."
|
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."
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr "Az OpenAI API-t felhasználhatja a tartalomgeneráláshoz, vagy az öné
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "A nyilvános megosztás engedélyezésével nyomon követheti, hogy hányan tekintették meg önéletrajzát, vagy hányan töltötték le azt."
|
msgstr "A nyilvános megosztás engedélyezésével nyomon követheti, hogy hányan tekintették meg önéletrajzát, vagy hányan töltötték le azt."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "Lehetősége van <0>saját OpenAI API-kulcsot szerezni</0>. Ez a kulcs lehetővé teszi, hogy az API-t saját belátása szerint használhassa. Alternatív megoldásként, ha teljesen le szeretné tiltani a Reactive Resume AI funkcióit, egyszerűen eltávolíthatja a kulcsot a beállításai közül."
|
msgstr "Lehetősége van <0>saját OpenAI API-kulcsot szerezni</0>. Ez a kulcs lehetővé teszi, hogy az API-t saját belátása szerint használhassa. Alternatív megoldásként, ha teljesen le szeretné tiltani a Reactive Resume AI funkcióit, egyszerűen eltávolíthatja a kulcsot a beállításai közül."
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr "Levelet kaptál!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "A fiókja és minden adata sikeresen törlődött. Viszontlátásra!"
|
msgstr "A fiókja és minden adata sikeresen törlődött. Viszontlátásra!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "Az API-kulcs biztonságosan tárolódik a böngésző helyi tárolójában, és csak akkor kerül felhasználásra, amikor a hivatalos SDK-n keresztül kéréseket intéz az OpenAI-hoz. Biztos lehet benne, hogy a kulcsa nem kerül továbbításra semmilyen külső szerverre, kivéve, amikor az OpenAI szolgáltatásaival lép kapcsolatba."
|
msgstr "Az API-kulcs biztonságosan tárolódik a böngésző helyi tárolójában, és csak akkor kerül felhasználásra, amikor a hivatalos SDK-n keresztül kéréseket intéz az OpenAI-hoz. Biztos lehet benne, hogy a kulcsa nem kerül továbbításra semmilyen külső szerverre, kivéve, amikor az OpenAI szolgáltatásaival lép kapcsolatba."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: id\n"
|
"Language: id\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:13\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Indonesian\n"
|
"Language-Team: Indonesian\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
@ -38,7 +38,7 @@ msgstr "<0>Saya membuat Reactive Resume sendiri seringnya di waktu senggang, den
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr "<0>Saya yakin aplikasi ini belum sempurna, tetapi saya ingin aplikasi ini sempurna.</0><1>Jika Anda menghadapi masalah apa pun saat membuat resume, atau memiliki ide yang dapat membantu Anda dan pengguna lain dalam membuat resume dengan lebih mudah, kirimkan masalah ke repositori atau kirimkan email kepada saya.</1>"
|
msgstr "<0>Saya yakin aplikasi ini belum sempurna, tetapi saya ingin aplikasi ini sempurna.</0><1>Jika Anda menghadapi masalah apa pun saat membuat resume, atau memiliki ide yang dapat membantu Anda dan pengguna lain dalam membuat resume dengan lebih mudah, kirimkan masalah ke repositori atau kirimkan email kepada saya.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr "<0>Catatan: </0>Dengan menggunakan API OpenAI, Anda mengakui dan menerima <1>persyaratan penggunaan</1> dan <2>kebijakan privasi</2> yang diuraikan oleh OpenAI. Harap diperhatikan bahwa Reactive Resume tidak bertanggung jawab atas penggunaan layanan yang tidak tepat atau tidak sah, dan segala dampak atau kewajiban yang timbul sepenuhnya menjadi tanggung jawab pengguna."
|
msgstr "<0>Catatan: </0>Dengan menggunakan API OpenAI, Anda mengakui dan menerima <1>persyaratan penggunaan</1> dan <2>kebijakan privasi</2> yang diuraikan oleh OpenAI. Harap diperhatikan bahwa Reactive Resume tidak bertanggung jawab atas penggunaan layanan yang tidak tepat atau tidak sah, dan segala dampak atau kewajiban yang timbul sepenuhnya menjadi tanggung jawab pengguna."
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr "Hanya menerima file {accept}"
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr "Akun"
|
msgstr "Akun"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr "Tambahkan kolom kustom"
|
msgstr "Tambahkan kolom kustom"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Tambah item baru"
|
msgstr "Tambah item baru"
|
||||||
@ -146,7 +146,7 @@ msgstr "Siapa pun yang memiliki tautan dapat melihat dan mengunduh resume."
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr "Siapa pun yang memiliki tautan ini dapat melihat dan mengunduh resume tesebut. Bagikan di profil Anda atau dengan para perekrut."
|
msgstr "Siapa pun yang memiliki tautan ini dapat melihat dan mengunduh resume tesebut. Bagikan di profil Anda atau dengan para perekrut."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr "Apakah Anda yakin Anda ingin menghapus item ini?"
|
msgstr "Apakah Anda yakin Anda ingin menghapus item ini?"
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr "Kode Cadangan"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Kode Cadangan hanya boleh berisi huruf kecil atau angka, dan harus tepat 10 karakter."
|
msgstr "Kode Cadangan hanya boleh berisi huruf kecil atau angka, dan harus tepat 10 karakter."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr "Dibangun dengan"
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr "Oleh komunitas, untuk komunitas."
|
msgstr "Oleh komunitas, untuk komunitas."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr "Konfirmasi Kata Sandi Baru"
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Lanjutkan"
|
msgstr "Lanjutkan"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Salin"
|
msgstr "Salin"
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr "Salin Tautan ke Resume"
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr "Menyalin ke Papan Klip"
|
msgstr "Menyalin ke Papan Klip"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr "Membuat"
|
msgstr "Membuat"
|
||||||
@ -328,7 +328,7 @@ msgstr "Membuat"
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr "Membuat akun baru"
|
msgstr "Membuat akun baru"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr "Membuat item baru"
|
msgstr "Membuat item baru"
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr "Tanggal"
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Tanggal atau Rentang Tanggal"
|
msgstr "Tanggal atau Rentang Tanggal"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr "Unduh PDF"
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr "Unduhan"
|
msgstr "Unduhan"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr "Duplikat"
|
msgstr "Duplikat"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr "Menduplikasi item yang sudah ada"
|
msgstr "Menduplikasi item yang sudah ada"
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr "Menduplikasi item yang sudah ada"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Menggandakan resume yang sudah ada"
|
msgstr "Menggandakan resume yang sudah ada"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Sunting"
|
msgstr "Sunting"
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr "Varian Font"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "Misalnya, informasi mengenai perusahaan mana yang Anda kirim resume tersebut atau tautan ke deskripsi pekerjaan dapat dicatat di sini."
|
msgstr "Misalnya, informasi mengenai perusahaan mana yang Anda kirim resume tersebut atau tautan ke deskripsi pekerjaan dapat dicatat di sini."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Lupakan."
|
msgstr "Lupakan."
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr "Di sini, Anda dapat memperbarui informasi akun Anda seperti gambar profi
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr "Di sini, Anda dapat memperbarui profil Anda untuk menyesuaikan dan mempersonalisasi pengalaman Anda."
|
msgstr "Di sini, Anda dapat memperbarui profil Anda untuk menyesuaikan dan mempersonalisasi pengalaman Anda."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Tersembunyi"
|
msgstr "Tersembunyi"
|
||||||
@ -690,7 +690,7 @@ msgstr "Tampilkan resume Anda secara publik"
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr "Saya selalu senang mendengar dari para pengguna Reactive Resume dengan umpan balik atau dukungan. Berikut adalah beberapa pesan yang saya terima. Jika Anda memiliki umpan balik, jangan ragu untuk mengirimi saya email di <0>{email}</0>."
|
msgstr "Saya selalu senang mendengar dari para pengguna Reactive Resume dengan umpan balik atau dukungan. Berikut adalah beberapa pesan yang saya terima. Jika Anda memiliki umpan balik, jangan ragu untuk mengirimi saya email di <0>{email}</0>."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr "Ikon"
|
msgstr "Ikon"
|
||||||
@ -793,9 +793,9 @@ msgstr "john.doe@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Kata kunci"
|
msgstr "Kata kunci"
|
||||||
@ -809,7 +809,7 @@ msgstr "Label"
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Bahasa"
|
msgstr "Bahasa"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr "Terakhir diperbarui {lastUpdated}"
|
msgstr "Terakhir diperbarui {lastUpdated}"
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr "Lokasi"
|
msgstr "Lokasi"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr "Maret 2023 - Sekarang"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Margin"
|
msgstr "Margin"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "Lisensi MIT"
|
msgstr "Lisensi MIT"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nama"
|
msgstr "Nama"
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nama"
|
msgstr "Nama"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Jaringan"
|
msgstr "Jaringan"
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr "Catatan: Hal ini akan membuat akun Anda kurang aman."
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Catatan"
|
msgstr "Catatan"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr "Kata Sandi Sekali Pakai"
|
msgstr "Kata Sandi Sekali Pakai"
|
||||||
@ -984,7 +980,7 @@ msgstr "Kata Sandi Sekali Pakai"
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr "Ups, server mengembalikan kesalahan."
|
msgstr "Ups, server mengembalikan kesalahan."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr "Buka"
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr "Sumber Terbuka"
|
msgstr "Sumber Terbuka"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr "OpenAI tidak mengembalikan pilihan apa pun untuk teks Anda."
|
msgstr "OpenAI tidak mengembalikan pilihan apa pun untuk teks Anda."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "Integrasi OpenAI"
|
msgstr "Integrasi 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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr "Posisi"
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr "Didukung oleh"
|
msgstr "Didukung oleh"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr "Didukung oleh <0>Simple Icons</0>"
|
msgstr "Didukung oleh <0>Simple Icons</0>"
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr "Reactive Resume berkembang berkat komunitasnya yang dinamis. Proyek ini
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Ulangi."
|
msgstr "Ulangi."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Menghapus"
|
msgstr "Menghapus"
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr "Hapus Halaman"
|
msgstr "Hapus Halaman"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr "Kaya di fitur, bukan di harga."
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr "Bulat"
|
msgstr "Bulat"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Menyimpan Perubahan"
|
msgstr "Menyimpan Perubahan"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr "Tema"
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr "Terjadi kesalahan saat menghubungkan ke browser. Pastikan 'chrome' berjalan dan dapat dijangkau."
|
msgstr "Terjadi kesalahan saat menghubungkan ke browser. Pastikan 'chrome' berjalan dan dapat dijangkau."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr "Tindakan ini dapat dikembalikan dengan mengeklik tombol undo di toolbar mengambang."
|
msgstr "Tindakan ini dapat dikembalikan dengan mengeklik tombol undo di toolbar mengambang."
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr "Membatalkan"
|
msgstr "Membatalkan"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr "Membuka kunci resume akan memungkinkan Anda untuk membuat perubahan lagi
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr "Tidak diverifikasi"
|
msgstr "Tidak diverifikasi"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr "Memperbarui item yang sudah ada"
|
msgstr "Memperbarui item yang sudah ada"
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr "Pengguna tidak memiliki catatan 'rahasia' yang terkait. Silakan laporkan masalah ini di GitHub."
|
msgstr "Pengguna tidak memiliki catatan 'rahasia' yang terkait. Silakan laporkan masalah ini di GitHub."
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr "Nama pengguna"
|
msgstr "Nama pengguna"
|
||||||
@ -1610,7 +1609,7 @@ msgstr "Memvalidasi"
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr "Tervalidasi"
|
msgstr "Tervalidasi"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Nilai"
|
msgstr "Nilai"
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr "Versi 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Tampilan"
|
msgstr "Tampilan"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Terlihat"
|
msgstr "Terlihat"
|
||||||
|
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr "Kami memverifikasi alamat email Anda hanya untuk memastikan bahwa kami dapat mengirimkan tautan pengaturan ulang kata sandi jika Anda lupa kata sandi."
|
msgstr "Kami memverifikasi alamat email Anda hanya untuk memastikan bahwa kami dapat mengirimkan tautan pengaturan ulang kata sandi jika Anda lupa kata sandi."
|
||||||
@ -1648,7 +1651,7 @@ msgstr "Kami memverifikasi alamat email Anda hanya untuk memastikan bahwa kami d
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr "Situs web"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Apa yang baru dalam versi terbaru"
|
msgstr "Apa yang baru dalam versi terbaru"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Anda dapat menambahkan beberapa kata kunci dengan memisahkannya dengan koma atau menekan enter."
|
msgstr "Anda dapat menambahkan beberapa kata kunci dengan memisahkannya dengan koma atau menekan enter."
|
||||||
@ -1672,11 +1675,11 @@ msgstr "Anda dapat menambahkan beberapa kata kunci dengan memisahkannya dengan k
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Anda juga dapat memasukkan nama pengguna Anda."
|
msgstr "Anda juga dapat memasukkan nama pengguna Anda."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
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."
|
msgstr "Anda dapat memanfaatkan API OpenAI untuk membantu Anda menghasilkan konten, atau meningkatkan tulisan Anda saat membuat resume."
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr "Anda dapat memanfaatkan API OpenAI untuk membantu Anda menghasilkan kont
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Anda dapat melacak jumlah tampilan yang diterima resume Anda, atau berapa banyak orang yang telah mengunduh resume dengan mengaktifkan berbagi publik."
|
msgstr "Anda dapat melacak jumlah tampilan yang diterima resume Anda, atau berapa banyak orang yang telah mengunduh resume dengan mengaktifkan berbagi publik."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "Anda memiliki opsi untuk <0>mendapatkan kunci API OpenAI Anda sendiri</0>. Kunci ini memberdayakan Anda untuk memanfaatkan API sesuai keinginan Anda. Atau, jika Anda ingin menonaktifkan fitur AI di Reactive Resume, Anda cukup menghapus kunci dari pengaturan Anda."
|
msgstr "Anda memiliki opsi untuk <0>mendapatkan kunci API OpenAI Anda sendiri</0>. Kunci ini memberdayakan Anda untuk memanfaatkan API sesuai keinginan Anda. Atau, jika Anda ingin menonaktifkan fitur AI di Reactive Resume, Anda cukup menghapus kunci dari pengaturan Anda."
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr "Kau punya surat!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Akun Anda dan semua data Anda telah berhasil dihapus. Selamat tinggal!"
|
msgstr "Akun Anda dan semua data Anda telah berhasil dihapus. Selamat tinggal!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "Kunci API Anda disimpan dengan aman di penyimpanan lokal peramban dan hanya digunakan ketika membuat permintaan ke OpenAI melalui SDK resmi mereka. Yakinlah bahwa kunci Anda tidak dikirimkan ke server eksternal mana pun kecuali saat berinteraksi dengan layanan OpenAI."
|
msgstr "Kunci API Anda disimpan dengan aman di penyimpanan lokal peramban dan hanya digunakan ketika membuat permintaan ke OpenAI melalui SDK resmi mereka. Yakinlah bahwa kunci Anda tidak dikirimkan ke server eksternal mana pun kecuali saat berinteraksi dengan layanan OpenAI."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: it\n"
|
"Language: it\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:13\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Italian\n"
|
"Language-Team: Italian\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -38,7 +38,7 @@ msgstr "<0>Ho creato Reactive Resume principalmente da solo durante il mio tempo
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr "<0>Sono sicuro che l'app non è perfetta, ma mi piacerebbe che lo fosse.</0> <1>Se hai riscontrato problemi durante la creazione del tuo curriculum o hai un'idea che potrebbe aiutare te e altri utenti a creare il tuo curriculum più facilmente, lascia un problema nel repository o inviami un'email a riguardo.</1>"
|
msgstr "<0>Sono sicuro che l'app non è perfetta, ma mi piacerebbe che lo fosse.</0> <1>Se hai riscontrato problemi durante la creazione del tuo curriculum o hai un'idea che potrebbe aiutare te e altri utenti a creare il tuo curriculum più facilmente, lascia un problema nel repository o inviami un'email a riguardo.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr "<0>Nota:</0> Utilizzando l'API OpenAI, riconosci e accetti i <1>termini di utilizzo</1> e <2>informativa sulla privacy</2> delineato da OpenAI. Si prega di notare che Reactive Resume non si assume alcuna responsabilità per qualsiasi utilizzo improprio o non autorizzato del servizio e che eventuali ripercussioni o responsabilità risultanti ricadono esclusivamente sull'utente."
|
msgstr "<0>Nota:</0> Utilizzando l'API OpenAI, riconosci e accetti i <1>termini di utilizzo</1> e <2>informativa sulla privacy</2> delineato da OpenAI. Si prega di notare che Reactive Resume non si assume alcuna responsabilità per qualsiasi utilizzo improprio o non autorizzato del servizio e che eventuali ripercussioni o responsabilità risultanti ricadono esclusivamente sull'utente."
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr "Accetta solo {accept} file"
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr "Account"
|
msgstr "Account"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr "Aggiungi un campo personalizzato"
|
msgstr "Aggiungi un campo personalizzato"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Aggiungi nuovo elemento"
|
msgstr "Aggiungi nuovo elemento"
|
||||||
@ -146,7 +146,7 @@ msgstr "Chiunque abbia il collegamento può visualizzare e scaricare il curricul
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr "Chiunque abbia questo link può visualizzare e scaricare il curriculum. Condividilo sul tuo profilo o con i reclutatori."
|
msgstr "Chiunque abbia questo link può visualizzare e scaricare il curriculum. Condividilo sul tuo profilo o con i reclutatori."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr "Sei sicuro di voler eliminare questo articolo?"
|
msgstr "Sei sicuro di voler eliminare questo articolo?"
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr "Codice di Backup"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "I codici di backup possono contenere solo lettere minuscole o numeri e devono contenere esattamente 10 caratteri."
|
msgstr "I codici di backup possono contenere solo lettere minuscole o numeri e devono contenere esattamente 10 caratteri."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr "Costruito con"
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr "Dalla comunità, per la comunità."
|
msgstr "Dalla comunità, per la comunità."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr "Conferma nuova password"
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Continuare"
|
msgstr "Continuare"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Copia"
|
msgstr "Copia"
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr "Copia collegamento per riprendere"
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr "Copia negli appunti"
|
msgstr "Copia negli appunti"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr "Crea"
|
msgstr "Crea"
|
||||||
@ -328,7 +328,7 @@ msgstr "Crea"
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr "Crea un nuovo account"
|
msgstr "Crea un nuovo account"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr "Crea un nuovo elemento"
|
msgstr "Crea un nuovo elemento"
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr "Data"
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Data o Intervallo di date"
|
msgstr "Data o Intervallo di date"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr "Scarica PDF"
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr "Downloads"
|
msgstr "Downloads"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr "Duplica"
|
msgstr "Duplica"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr "Duplica un elemento esistente"
|
msgstr "Duplica un elemento esistente"
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr "Duplica un elemento esistente"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Duplica un curriculum esistente"
|
msgstr "Duplica un curriculum esistente"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Modifica"
|
msgstr "Modifica"
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr "Varianti di carattere"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "Per esempio, qui si possono annotare le informazioni relative alle aziende a cui ha inviato il curriculum o i link alle descrizioni del lavoro."
|
msgstr "Per esempio, qui si possono annotare le informazioni relative alle aziende a cui ha inviato il curriculum o i link alle descrizioni del lavoro."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Dimentica"
|
msgstr "Dimentica"
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr "Qui puoi aggiornare le informazioni del tuo account come l'immagine del
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr "Qui può aggiornare il suo profilo per personalizzare la sua esperienza."
|
msgstr "Qui può aggiornare il suo profilo per personalizzare la sua esperienza."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Nascosto"
|
msgstr "Nascosto"
|
||||||
@ -690,7 +690,7 @@ msgstr "Ospita il tuo curriculum pubblicamente"
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr "Mi fa sempre piacere ricevere feedback o supporto dagli utenti di Reactive Resume. Ecco alcuni dei messaggi che ho ricevuto. Se hai commenti, non esitare a mandarmi un'e-mail a <0>{email}</0>."
|
msgstr "Mi fa sempre piacere ricevere feedback o supporto dagli utenti di Reactive Resume. Ecco alcuni dei messaggi che ho ricevuto. Se hai commenti, non esitare a mandarmi un'e-mail a <0>{email}</0>."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr "Icona"
|
msgstr "Icona"
|
||||||
@ -793,9 +793,9 @@ msgstr "mario.rossi@esempio.it"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Parole chiave"
|
msgstr "Parole chiave"
|
||||||
@ -809,7 +809,7 @@ msgstr "Etichetta"
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Lingua"
|
msgstr "Lingua"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr "Ultimo aggiornamento: {lastUpdated}"
|
msgstr "Ultimo aggiornamento: {lastUpdated}"
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr "Posizione"
|
msgstr "Posizione"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr "Marzo 2023 - Presente"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Margine"
|
msgstr "Margine"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "Licenza MIT"
|
msgstr "Licenza MIT"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nome"
|
msgstr "Nome"
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nome"
|
msgstr "Nome"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Rete"
|
msgstr "Rete"
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr "Nota: ciò renderà il tuo account meno sicuro."
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Note"
|
msgstr "Note"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr "Password monouso"
|
msgstr "Password monouso"
|
||||||
@ -984,7 +980,7 @@ msgstr "Password monouso"
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr "Spiacenti, il server ha restituito un errore."
|
msgstr "Spiacenti, il server ha restituito un errore."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr "Apri"
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr "Open Source"
|
msgstr "Open Source"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr "OpenAI non ha restituito alcuna scelta per il tuo testo."
|
msgstr "OpenAI non ha restituito alcuna scelta per il tuo testo."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "Integrazione OpenAI"
|
msgstr "Integrazione 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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr "Posizione"
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr "Offerto da"
|
msgstr "Offerto da"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr "Offerto da <0>Icone semplici</0>"
|
msgstr "Offerto da <0>Icone semplici</0>"
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr "Reactive Resume prospera grazie alla sua vivace comunità. Questo proget
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Ritorna"
|
msgstr "Ritorna"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Rimuovi"
|
msgstr "Rimuovi"
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr "Rimuovi pagina"
|
msgstr "Rimuovi pagina"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr "Ricco di funzionalità, non di prezzi."
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr "Arrotondato"
|
msgstr "Arrotondato"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Salva le modifiche"
|
msgstr "Salva le modifiche"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Salvato"
|
msgstr "Salvato"
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr "Tema"
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr "Si è verificato un errore durante la connessione al browser. Assicurati che \"chrome\" sia in esecuzione e raggiungibile."
|
msgstr "Si è verificato un errore durante la connessione al browser. Assicurati che \"chrome\" sia in esecuzione e raggiungibile."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr "Questa azione può essere annullata cliccando sul pulsante Annulla nella barra degli strumenti fluttuante."
|
msgstr "Questa azione può essere annullata cliccando sul pulsante Annulla nella barra degli strumenti fluttuante."
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr "Annulla"
|
msgstr "Annulla"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr "Sbloccando un curriculum potrà modificarlo nuovamente."
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr "Non verificato"
|
msgstr "Non verificato"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr "Aggiorna un elemento esistente"
|
msgstr "Aggiorna un elemento esistente"
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr "L'utente non ha un record 'segreti' associato. La preghiamo di segnalare questo problema su GitHub."
|
msgstr "L'utente non ha un record 'segreti' associato. La preghiamo di segnalare questo problema su GitHub."
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr "Nome utente"
|
msgstr "Nome utente"
|
||||||
@ -1610,7 +1609,7 @@ msgstr "Convalida"
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr "Convalidato"
|
msgstr "Convalidato"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Valore"
|
msgstr "Valore"
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr "Versione 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Visualizzazioni"
|
msgstr "Visualizzazioni"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Visibile"
|
msgstr "Visibile"
|
||||||
|
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr "Verifichiamo il suo indirizzo e-mail solo per assicurarci di poterle inviare un link per la reimpostazione della password nel caso in cui la dimentichi."
|
msgstr "Verifichiamo il suo indirizzo e-mail solo per assicurarci di poterle inviare un link per la reimpostazione della password nel caso in cui la dimentichi."
|
||||||
@ -1648,7 +1651,7 @@ msgstr "Verifichiamo il suo indirizzo e-mail solo per assicurarci di poterle inv
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr "Sito Web"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Cosa c'è di nuovo nell'ultima versione"
|
msgstr "Cosa c'è di nuovo nell'ultima versione"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Puoi aggiungere più parole chiave separandole con una virgola o premendo Invio."
|
msgstr "Puoi aggiungere più parole chiave separandole con una virgola o premendo Invio."
|
||||||
@ -1672,11 +1675,11 @@ msgstr "Puoi aggiungere più parole chiave separandole con una virgola o premend
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Può anche inserire il suo nome utente."
|
msgstr "Può anche inserire il suo nome utente."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
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."
|
msgstr "Può utilizzare l'API OpenAI per aiutarla a generare contenuti, o migliorare la sua scrittura mentre compone il suo curriculum."
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr "Può utilizzare l'API OpenAI per aiutarla a generare contenuti, o miglio
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Può monitorare il numero di visualizzazioni che il suo curriculum ha ricevuto, o quante persone hanno scaricato il curriculum abilitando la condivisione pubblica."
|
msgstr "Può monitorare il numero di visualizzazioni che il suo curriculum ha ricevuto, o quante persone hanno scaricato il curriculum abilitando la condivisione pubblica."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "Ha la possibilità di <0>ottenere una propria chiave API OpenAI</0>. Questa chiave le consente di sfruttare l'API come ritiene opportuno. In alternativa, se desidera disattivare completamente le funzioni AI in Reactive Resume, può semplicemente rimuovere la chiave dalle sue impostazioni."
|
msgstr "Ha la possibilità di <0>ottenere una propria chiave API OpenAI</0>. Questa chiave le consente di sfruttare l'API come ritiene opportuno. In alternativa, se desidera disattivare completamente le funzioni AI in Reactive Resume, può semplicemente rimuovere la chiave dalle sue impostazioni."
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr "C’è posta per te!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Il tuo account e tutti i tuoi dati sono stati eliminati con successo. Arrivederci!"
|
msgstr "Il tuo account e tutti i tuoi dati sono stati eliminati con successo. Arrivederci!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "La tua chiave API è archiviata in modo sicuro nella memoria locale del browser e viene utilizzata solo quando si effettuano richieste a OpenAI tramite il loro SDK ufficiale. Stai certo che la tua chiave non verrà trasmessa a nessun server esterno tranne quando interagisci con i servizi di OpenAI."
|
msgstr "La tua chiave API è archiviata in modo sicuro nella memoria locale del browser e viene utilizzata solo quando si effettuano richieste a OpenAI tramite il loro SDK ufficiale. Stai certo che la tua chiave non verrà trasmessa a nessun server esterno tranne quando interagisci con i servizi di OpenAI."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: ja\n"
|
"Language: ja\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:13\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Japanese\n"
|
"Language-Team: Japanese\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
@ -38,7 +38,7 @@ msgstr "<0>Reactive Resumeは、素晴らしいオープンソースコントリ
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr "<0>このアプリは完璧ではないと思いますが、完璧にしたいと思っています。</0><1>もし履歴書作成中に問題に直面したり、あなたや他のユーザーがもっと簡単に履歴書を作成できるようなアイデアがあれば、リポジトリにissueを作成するか、私にメールを送ってください。</1>"
|
msgstr "<0>このアプリは完璧ではないと思いますが、完璧にしたいと思っています。</0><1>もし履歴書作成中に問題に直面したり、あなたや他のユーザーがもっと簡単に履歴書を作成できるようなアイデアがあれば、リポジトリにissueを作成するか、私にメールを送ってください。</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr "<0>注意:</0>OpenAI APIを利用することにより、利用者はOpenAIの<1>利用規約と</1> <2>プライバシーポリシーに</2>同意したものとみなされます。Reactive Resumeは、サービスの不適切な利用や不正利用に対して一切の責任を負わず、その結果生じるいかなる影響や責任も利用者のみにあることにご注意ください。"
|
msgstr "<0>注意:</0>OpenAI APIを利用することにより、利用者はOpenAIの<1>利用規約と</1> <2>プライバシーポリシーに</2>同意したものとみなされます。Reactive Resumeは、サービスの不適切な利用や不正利用に対して一切の責任を負わず、その結果生じるいかなる影響や責任も利用者のみにあることにご注意ください。"
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr "{accept} ファイルのみ"
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr "アカウント"
|
msgstr "アカウント"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr "カスタムフィールドを追加"
|
msgstr "カスタムフィールドを追加"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "アイテムを追加"
|
msgstr "アイテムを追加"
|
||||||
@ -146,7 +146,7 @@ msgstr "リンクを知っている人は誰でも履歴書を表示してダウ
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr "このリンクを知っている人は誰でも履歴書を表示してダウンロードできます。あなたのプロフィールで共有するか採用担当者と共有しましょう。"
|
msgstr "このリンクを知っている人は誰でも履歴書を表示してダウンロードできます。あなたのプロフィールで共有するか採用担当者と共有しましょう。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr "このアイテムを削除してもよろしいですか?"
|
msgstr "このアイテムを削除してもよろしいですか?"
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr "バックアップコード"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "バックアップコードは小文字のアルファベットまたは数字のみを含んだ10文字である必要があります。"
|
msgstr "バックアップコードは小文字のアルファベットまたは数字のみを含んだ10文字である必要があります。"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr "利用したソフトウェア"
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr "コミュニティによるコミュニティのための。"
|
msgstr "コミュニティによるコミュニティのための。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr "新しいパスワードの確認"
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "続ける"
|
msgstr "続ける"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "コピー"
|
msgstr "コピー"
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr "再開にリンクをコピー"
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr "クリップボードにコピー"
|
msgstr "クリップボードにコピー"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr "作成"
|
msgstr "作成"
|
||||||
@ -328,7 +328,7 @@ msgstr "作成"
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr "新しいアカウントを作成"
|
msgstr "新しいアカウントを作成"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr "新しいアイテムを作成"
|
msgstr "新しいアイテムを作成"
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr "日付"
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "日付または日付の範囲"
|
msgstr "日付または日付の範囲"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr "PDFをダウンロード"
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr "ダウンロード"
|
msgstr "ダウンロード"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr "Duplicate"
|
msgstr "Duplicate"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr "既存のアイテムを複製"
|
msgstr "既存のアイテムを複製"
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr "既存のアイテムを複製"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "既存の履歴書を複製"
|
msgstr "既存の履歴書を複製"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "編集"
|
msgstr "編集"
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr "Font Variants"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "例えば、どの会社にこの履歴書を送ったか、または仕事の説明へのリンクについての情報はここに記述することができる。"
|
msgstr "例えば、どの会社にこの履歴書を送ったか、または仕事の説明へのリンクについての情報はここに記述することができる。"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "忘れた"
|
msgstr "忘れた"
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr "ここでは、プロフィール画像、名前、ユーザー名など
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr "ここでは、あなたの経験をカスタマイズし、パーソナライズするためにプロフィールを更新することができます。"
|
msgstr "ここでは、あなたの経験をカスタマイズし、パーソナライズするためにプロフィールを更新することができます。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Hidden"
|
msgstr "Hidden"
|
||||||
@ -690,7 +690,7 @@ msgstr "あなたの履歴書を公開してください"
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr "私はいつもReactive Resume のユーザーからフィードバックやサポートを受けて聞くのが大好きです。 私が受け取ったメッセージの一部をご紹介します。フィードバックがあれば、お気軽に<0>{email}</0>までメールをお送りください。"
|
msgstr "私はいつもReactive Resume のユーザーからフィードバックやサポートを受けて聞くのが大好きです。 私が受け取ったメッセージの一部をご紹介します。フィードバックがあれば、お気軽に<0>{email}</0>までメールをお送りください。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr "アイコン"
|
msgstr "アイコン"
|
||||||
@ -793,9 +793,9 @@ msgstr "john.doe@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "キーワード"
|
msgstr "キーワード"
|
||||||
@ -809,7 +809,7 @@ msgstr "ラベル"
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "言語"
|
msgstr "言語"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr "最終更新 {lastUpdated}"
|
msgstr "最終更新 {lastUpdated}"
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr "場所"
|
msgstr "場所"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr "2023年3月-現在"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "マージン(マージン)"
|
msgstr "マージン(マージン)"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "MIT ライセンス"
|
msgstr "MIT ライセンス"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "名前"
|
msgstr "名前"
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "名前"
|
msgstr "名前"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "ネットワーク"
|
msgstr "ネットワーク"
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr "注意: これにより、アカウントの安全性が低下します
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "メモ"
|
msgstr "メモ"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr "ワンタイムパスワード"
|
msgstr "ワンタイムパスワード"
|
||||||
@ -984,7 +980,7 @@ msgstr "ワンタイムパスワード"
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr "サーバーがエラーを返しました。"
|
msgstr "サーバーがエラーを返しました。"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr "開く"
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr "オープンソース"
|
msgstr "オープンソース"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr "OpenAIはテキストの選択肢を返しませんでした。"
|
msgstr "OpenAIはテキストの選択肢を返しませんでした。"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "OpenAI 統合"
|
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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr "位置"
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr "Powered by"
|
msgstr "Powered by"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr "Powered by <0>Simple Icons</0>"
|
msgstr "Powered by <0>Simple Icons</0>"
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr "Reactive Resume は、その活気に満ちたコミュニティのお
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Redo"
|
msgstr "Redo"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "削除"
|
msgstr "削除"
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr "ページを削除"
|
msgstr "ページを削除"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr "豊富な機能、価格設定ではありません。"
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr "四捨五入済み"
|
msgstr "四捨五入済み"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "変更を保存"
|
msgstr "変更を保存"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr "テーマ"
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr "ブラウザへの接続中にエラーが発生しました。「chrome」が実行され、到達可能であることを確認してください。"
|
msgstr "ブラウザへの接続中にエラーが発生しました。「chrome」が実行され、到達可能であることを確認してください。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr "この操作は、フローティングツールバーの undo ボタンをクリックすることで元に戻すことができます。"
|
msgstr "この操作は、フローティングツールバーの undo ボタンをクリックすることで元に戻すことができます。"
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr "元に戻す"
|
msgstr "元に戻す"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr "履歴書のロックを解除すると、再び変更することがで
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr "未認証"
|
msgstr "未認証"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr "既存のアイテムを更新"
|
msgstr "既存のアイテムを更新"
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr "ユーザーには関連する「秘密」レコードがありません。GitHubでこの問題を報告してください。"
|
msgstr "ユーザーには関連する「秘密」レコードがありません。GitHubでこの問題を報告してください。"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr "ユーザー名"
|
msgstr "ユーザー名"
|
||||||
@ -1610,7 +1609,7 @@ msgstr "Validate"
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr "検証済み"
|
msgstr "検証済み"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "値"
|
msgstr "値"
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr "バージョン4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "ビュー"
|
msgstr "ビュー"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "表示"
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr "パスワードを忘れた場合に備えて、パスワードリセットリンクを送信できるようにメールアドレスを確認します。"
|
msgstr "パスワードを忘れた場合に備えて、パスワードリセットリンクを送信できるようにメールアドレスを確認します。"
|
||||||
@ -1648,7 +1651,7 @@ msgstr "パスワードを忘れた場合に備えて、パスワードリセッ
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr "Webサイト"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "最新バージョンの新機能"
|
msgstr "最新バージョンの新機能"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "複数のキーワードを追加するには、カンマで区切るか、Enterキーを押します。"
|
msgstr "複数のキーワードを追加するには、カンマで区切るか、Enterキーを押します。"
|
||||||
@ -1672,11 +1675,11 @@ msgstr "複数のキーワードを追加するには、カンマで区切るか
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "ユーザー名を入力することもできます。"
|
msgstr "ユーザー名を入力することもできます。"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
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 を使用して、コンテンツを生成したり、履歴書を作成したりする際に書き込みを改善したりできます。"
|
msgstr "OpenAI API を使用して、コンテンツを生成したり、履歴書を作成したりする際に書き込みを改善したりできます。"
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr "OpenAI API を使用して、コンテンツを生成したり、履歴
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "公開共有を有効にすることで、履歴書が受信した閲覧数や履歴書をダウンロードした人数を追跡できます。"
|
msgstr "公開共有を有効にすることで、履歴書が受信した閲覧数や履歴書をダウンロードした人数を追跡できます。"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "<0>あなた自身のOpenAI APIキー</0>を取得するオプションがあります。このキーは、あなたが適切にAPIを活用することを可能にします。 Reactive Resume で AI 機能を完全に無効にしたい場合は、設定からキーを削除することもできます。"
|
msgstr "<0>あなた自身のOpenAI APIキー</0>を取得するオプションがあります。このキーは、あなたが適切にAPIを活用することを可能にします。 Reactive Resume で AI 機能を完全に無効にしたい場合は、設定からキーを削除することもできます。"
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr "メールを受け取りました!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "アカウントとすべてのデータが正常に削除されました。さようなら!"
|
msgstr "アカウントとすべてのデータが正常に削除されました。さようなら!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "API キーはブラウザーのローカルストレージに安全に保存され、公式の SDK 経由で OpenAI へのリクエストを行う場合にのみ使用されます。 OpenAIのサービスと相互作用する場合を除き、キーが外部サーバーに送信されることはありませんのでご安心ください。"
|
msgstr "API キーはブラウザーのローカルストレージに安全に保存され、公式の SDK 経由で OpenAI へのリクエストを行う場合にのみ使用されます。 OpenAIのサービスと相互作用する場合を除き、キーが外部サーバーに送信されることはありませんのでご安心ください。"
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: km\n"
|
"Language: km\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:13\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Khmer\n"
|
"Language-Team: Khmer\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
@ -38,7 +38,7 @@ msgstr ""
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr ""
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -146,7 +146,7 @@ msgstr ""
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr ""
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr ""
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr ""
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr ""
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -328,7 +328,7 @@ msgstr ""
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr ""
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr ""
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr ""
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr ""
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr ""
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -690,7 +690,7 @@ msgstr ""
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -793,9 +793,9 @@ msgstr ""
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -809,7 +809,7 @@ msgstr ""
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr ""
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr ""
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -984,7 +980,7 @@ msgstr ""
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr ""
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: 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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr ""
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr ""
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr ""
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr ""
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr ""
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1610,7 +1609,7 @@ msgstr ""
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr ""
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr ""
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1648,7 +1651,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr ""
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1672,11 +1675,11 @@ msgstr ""
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr ""
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr ""
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: kn\n"
|
"Language: kn\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:13\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Kannada\n"
|
"Language-Team: Kannada\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -38,7 +38,7 @@ msgstr "<0>ನನ್ನ ಬಿಡುವಿನ ವೇಳೆಯಲ್ಲಿ ನಾ
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr "<0>ಅಪ್ಲಿಕೇಶನ್ ಪರಿಪೂರ್ಣವಾಗಿಲ್ಲ ಎಂದು ನನಗೆ ಖಾತ್ರಿಯಿದೆ, ಆದರೆ ಅದು ಸಂಪೂರ್ಣ ಇರಬೇಕೆಂದು ನಾನು ಬಯಸುತ್ತೇನೆ.</0> <1>ನಿಮ್ಮ ಪುನರಾರಂಭವನ್ನು ರಚಿಸುವಾಗ ನೀವು ಯಾವುದೇ ಸಮಸ್ಯೆಗಳನ್ನು ಎದುರಿಸಿದರೆ ಅಥವಾ ನಿಮ್ಮ ರೆಸ್ಯೂಮೇ ಅನ್ನು ಹೆಚ್ಚು ಸುಲಭವಾಗಿ ರಚಿಸುವಲ್ಲಿ ನಿಮಗೆ ಮತ್ತು ಇತರ ಬಳಕೆದಾರರಿಗೆ ಸಹಾಯ ಮಾಡುವ ಕಲ್ಪನೆಯನ್ನು ಹೊಂದಿದ್ದರೆ, ರೆಪೊಸಿಟರಿಯಲ್ಲಿ ಸಮಸ್ಯೆಯನ್ನು ಬಿಡಿ ಅಥವಾ ಅದರ ಬಗ್ಗೆ ನನಗೆ ಇಮೇಲ್ ಕಳುಹಿಸಿ.</1>"
|
msgstr "<0>ಅಪ್ಲಿಕೇಶನ್ ಪರಿಪೂರ್ಣವಾಗಿಲ್ಲ ಎಂದು ನನಗೆ ಖಾತ್ರಿಯಿದೆ, ಆದರೆ ಅದು ಸಂಪೂರ್ಣ ಇರಬೇಕೆಂದು ನಾನು ಬಯಸುತ್ತೇನೆ.</0> <1>ನಿಮ್ಮ ಪುನರಾರಂಭವನ್ನು ರಚಿಸುವಾಗ ನೀವು ಯಾವುದೇ ಸಮಸ್ಯೆಗಳನ್ನು ಎದುರಿಸಿದರೆ ಅಥವಾ ನಿಮ್ಮ ರೆಸ್ಯೂಮೇ ಅನ್ನು ಹೆಚ್ಚು ಸುಲಭವಾಗಿ ರಚಿಸುವಲ್ಲಿ ನಿಮಗೆ ಮತ್ತು ಇತರ ಬಳಕೆದಾರರಿಗೆ ಸಹಾಯ ಮಾಡುವ ಕಲ್ಪನೆಯನ್ನು ಹೊಂದಿದ್ದರೆ, ರೆಪೊಸಿಟರಿಯಲ್ಲಿ ಸಮಸ್ಯೆಯನ್ನು ಬಿಡಿ ಅಥವಾ ಅದರ ಬಗ್ಗೆ ನನಗೆ ಇಮೇಲ್ ಕಳುಹಿಸಿ.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr "<0>ಗಮನಿಸಿ:</0> OpenAI API ಅನ್ನು ಬಳಸುವ ಮೂಲಕ, ನೀವು <1> ಬಳಕೆಯ ನಿಯಮಗಳನ್ನು ಅಂಗೀಕರಿಸುತ್ತೀರಿ ಮತ್ತು ಸಮ್ಮತಿಸುತ್ತೀರಿ</1> ಮತ್ತು <2>ಗೌಪ್ಯತೆ ನೀತಿ</2> OpenAI ನಿಂದ ವಿವರಿಸಲಾಗಿದೆ. ಸೇವೆಯ ಯಾವುದೇ ಅಸಮರ್ಪಕ ಅಥವಾ ಅನಧಿಕೃತ ಬಳಕೆಗೆ ಪ್ರತಿಕ್ರಿಯಾತ್ಮಕ ಪುನರಾರಂಭವು ಯಾವುದೇ ಜವಾಬ್ದಾರಿಯನ್ನು ಹೊಂದಿರುವುದಿಲ್ಲ ಮತ್ತು ಯಾವುದೇ ಪರಿಣಾಮವಾಗಿ ಉಂಟಾಗುವ ಪರಿಣಾಮಗಳು ಅಥವಾ ಹೊಣೆಗಾರಿಕೆಗಳು ಬಳಕೆದಾರರ ಮೇಲೆ ಮಾತ್ರ ಅವಲಂಬಿತವಾಗಿರುತ್ತದೆ ಎಂಬುದನ್ನು ದಯವಿಟ್ಟು ಗಮನಿಸಿ."
|
msgstr "<0>ಗಮನಿಸಿ:</0> OpenAI API ಅನ್ನು ಬಳಸುವ ಮೂಲಕ, ನೀವು <1> ಬಳಕೆಯ ನಿಯಮಗಳನ್ನು ಅಂಗೀಕರಿಸುತ್ತೀರಿ ಮತ್ತು ಸಮ್ಮತಿಸುತ್ತೀರಿ</1> ಮತ್ತು <2>ಗೌಪ್ಯತೆ ನೀತಿ</2> OpenAI ನಿಂದ ವಿವರಿಸಲಾಗಿದೆ. ಸೇವೆಯ ಯಾವುದೇ ಅಸಮರ್ಪಕ ಅಥವಾ ಅನಧಿಕೃತ ಬಳಕೆಗೆ ಪ್ರತಿಕ್ರಿಯಾತ್ಮಕ ಪುನರಾರಂಭವು ಯಾವುದೇ ಜವಾಬ್ದಾರಿಯನ್ನು ಹೊಂದಿರುವುದಿಲ್ಲ ಮತ್ತು ಯಾವುದೇ ಪರಿಣಾಮವಾಗಿ ಉಂಟಾಗುವ ಪರಿಣಾಮಗಳು ಅಥವಾ ಹೊಣೆಗಾರಿಕೆಗಳು ಬಳಕೆದಾರರ ಮೇಲೆ ಮಾತ್ರ ಅವಲಂಬಿತವಾಗಿರುತ್ತದೆ ಎಂಬುದನ್ನು ದಯವಿಟ್ಟು ಗಮನಿಸಿ."
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr "{accept} ಫೈಲ್ಗಳನ್ನು ಮಾತ್ರ ಸ್ವೀ
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr "ಖಾತೆಗಳು"
|
msgstr "ಖಾತೆಗಳು"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr "ಕಸ್ಟಮ್ ಕ್ಷೇತ್ರವನ್ನು ಸೇರಿಸಿ"
|
msgstr "ಕಸ್ಟಮ್ ಕ್ಷೇತ್ರವನ್ನು ಸೇರಿಸಿ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "ಹೊಸ ಐಟಂ ಸೇರಿಸಿ"
|
msgstr "ಹೊಸ ಐಟಂ ಸೇರಿಸಿ"
|
||||||
@ -146,7 +146,7 @@ msgstr "ಲಿಂಕ್ ಹೊಂದಿರುವ ಯಾರಾದರೂ ರೆಸ
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr "ಈ ಲಿಂಕ್ ಹೊಂದಿರುವ ಯಾರಾದರೂ ರೆಸ್ಯೂಮ್ ಅನ್ನು ವೀಕ್ಷಿಸಬಹುದು ಮತ್ತು ಡೌನ್ಲೋಡ್ ಮಾಡಬಹುದು. ಅದನ್ನು ನಿಮ್ಮ ಪ್ರೊಫೈಲ್ನಲ್ಲಿ ಅಥವಾ ನೇಮಕಾತಿದಾರರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ."
|
msgstr "ಈ ಲಿಂಕ್ ಹೊಂದಿರುವ ಯಾರಾದರೂ ರೆಸ್ಯೂಮ್ ಅನ್ನು ವೀಕ್ಷಿಸಬಹುದು ಮತ್ತು ಡೌನ್ಲೋಡ್ ಮಾಡಬಹುದು. ಅದನ್ನು ನಿಮ್ಮ ಪ್ರೊಫೈಲ್ನಲ್ಲಿ ಅಥವಾ ನೇಮಕಾತಿದಾರರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr "ಈ ಐಟಂ ಅನ್ನು ಅಳಿಸಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?"
|
msgstr "ಈ ಐಟಂ ಅನ್ನು ಅಳಿಸಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?"
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr "ಬ್ಯಾಕಪ್ ಕೋಡ್"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "ಬ್ಯಾಕಪ್ ಕೋಡ್ಗಳು ಸಣ್ಣ ಅಕ್ಷರಗಳು ಅಥವಾ ಸಂಖ್ಯೆಗಳನ್ನು ಮಾತ್ರ ಹೊಂದಿರಬಹುದು ಮತ್ತು ನಿಖರವಾಗಿ 10 ಅಕ್ಷರಗಳಾಗಿರಬೇಕು."
|
msgstr "ಬ್ಯಾಕಪ್ ಕೋಡ್ಗಳು ಸಣ್ಣ ಅಕ್ಷರಗಳು ಅಥವಾ ಸಂಖ್ಯೆಗಳನ್ನು ಮಾತ್ರ ಹೊಂದಿರಬಹುದು ಮತ್ತು ನಿಖರವಾಗಿ 10 ಅಕ್ಷರಗಳಾಗಿರಬೇಕು."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr "ಇದರೊಂದಿಗೆ ನಿರ್ಮಿಸಲಾಗಿದೆ"
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr "ಸಮುದಾಯದಿಂದ, ಸಮುದಾಯಕ್ಕಾಗಿ."
|
msgstr "ಸಮುದಾಯದಿಂದ, ಸಮುದಾಯಕ್ಕಾಗಿ."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr "ಹೊಸ ಗುಪ್ತಪದವನ್ನು ದೃಢೀಕರಿಸ
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "ಮುಂದುವರಿಸಿ"
|
msgstr "ಮುಂದುವರಿಸಿ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "ನಕಲು ಮಾಡಿ"
|
msgstr "ನಕಲು ಮಾಡಿ"
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr "ರೆಸ್ಯೂಮ್ ಲಿಂಕ್ ಅನ್ನು ನಕಲಿ
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr "ಕ್ಲಿಪ್ಬೋರ್ಡ್ಗೆ ನಕಲಿಸಿ"
|
msgstr "ಕ್ಲಿಪ್ಬೋರ್ಡ್ಗೆ ನಕಲಿಸಿ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr "ರಚಿಸಿ"
|
msgstr "ರಚಿಸಿ"
|
||||||
@ -328,7 +328,7 @@ msgstr "ರಚಿಸಿ"
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr "ಹೊಸ ಖಾತೆಯನ್ನು ರಚಿಸಿ"
|
msgstr "ಹೊಸ ಖಾತೆಯನ್ನು ರಚಿಸಿ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr "ಹೊಸ ಐಟಂ ರಚಿಸಿ"
|
msgstr "ಹೊಸ ಐಟಂ ರಚಿಸಿ"
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr "ದಿನಾಂಕ"
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr ""
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr "ಡೌನ್ಲೋಡ್ಗಳು"
|
msgstr "ಡೌನ್ಲೋಡ್ಗಳು"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr "ನಕಲು"
|
msgstr "ನಕಲು"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr "ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ಐಟಂ ಅನ್ನು ನಕಲು ಮಾಡಿ"
|
msgstr "ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ಐಟಂ ಅನ್ನು ನಕಲು ಮಾಡಿ"
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr "ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ಐಟಂ ಅನ್ನ
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ರೆಸ್ಯೂಮ್ ಅನ್ನು ನಕಲು ಮಾಡಿ"
|
msgstr "ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ರೆಸ್ಯೂಮ್ ಅನ್ನು ನಕಲು ಮಾಡಿ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "ತಿದ್ದು"
|
msgstr "ತಿದ್ದು"
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr "ಅಕ್ಷರಗಳ ರೂಪಾಂತರಗಳು"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "ಉದಾಹರಣೆಗೆ, ನೀವು ಈ ರೆಸ್ಯೂಮ್ ಅನ್ನು ಯಾವ ಕಂಪನಿಗಳಿಗೆ ಕಳುಹಿಸಿದ್ದೀರಿ ಅಥವಾ ಉದ್ಯೋಗ ವಿವರಣೆಗಳ ಲಿಂಕ್ಗಳನ್ನು ಇಲ್ಲಿ ನಮೂದಿಸಬಹುದು."
|
msgstr "ಉದಾಹರಣೆಗೆ, ನೀವು ಈ ರೆಸ್ಯೂಮ್ ಅನ್ನು ಯಾವ ಕಂಪನಿಗಳಿಗೆ ಕಳುಹಿಸಿದ್ದೀರಿ ಅಥವಾ ಉದ್ಯೋಗ ವಿವರಣೆಗಳ ಲಿಂಕ್ಗಳನ್ನು ಇಲ್ಲಿ ನಮೂದಿಸಬಹುದು."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "ಮರೆತುಬಿಡಿ"
|
msgstr "ಮರೆತುಬಿಡಿ"
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr "ಇಲ್ಲಿ, ನಿಮ್ಮ ಪ್ರೊಫೈಲ್ ಚಿತ್
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr "ಇಲ್ಲಿ, ನಿಮ್ಮ ಅನುಭವವನ್ನು ಕಸ್ಟಮೈಸ್ ಮಾಡಲು ಮತ್ತು ವೈಯಕ್ತೀಕರಿಸಲು ನಿಮ್ಮ ಪ್ರೊಫೈಲ್ ಅನ್ನು ನೀವು ನವೀಕರಿಸಬಹುದು."
|
msgstr "ಇಲ್ಲಿ, ನಿಮ್ಮ ಅನುಭವವನ್ನು ಕಸ್ಟಮೈಸ್ ಮಾಡಲು ಮತ್ತು ವೈಯಕ್ತೀಕರಿಸಲು ನಿಮ್ಮ ಪ್ರೊಫೈಲ್ ಅನ್ನು ನೀವು ನವೀಕರಿಸಬಹುದು."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "ಮರೆಮಾಡಲಾಗಿದೆ"
|
msgstr "ಮರೆಮಾಡಲಾಗಿದೆ"
|
||||||
@ -690,7 +690,7 @@ msgstr "ನಿಮ್ಮ ರೆಸ್ಯೂಮೇ ಅನ್ನು ಸಾರ್ವ
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr "ಪ್ರತಿಕ್ರಿಯೆ ಅಥವಾ ಬೆಂಬಲದೊಂದಿಗೆ ರಿಯಾಕ್ಟಿವ್ ರೆಸ್ಯೂಮೇನ ಬಳಕೆದಾರರಿಂದ ಕೇಳಲು ನಾನು ಯಾವಾಗಲೂ ಇಷ್ಟಪಡುತ್ತೇನೆ. ನಾನು ಸ್ವೀಕರಿಸಿದ ಕೆಲವು ಸಂದೇಶಗಳು ಇಲ್ಲಿವೆ. ನೀವು ಯಾವುದೇ ಪ್ರತಿಕ್ರಿಯೆಯನ್ನು ಹೊಂದಿದ್ದರೆ, <0>{email} ನಲ್ಲಿ ನನಗೆ ಇಮೇಲ್ ಅನ್ನು ಡ್ರಾಪ್ ಮಾಡಲು ಹಿಂಜರಿಯಬೇಡಿ</0>."
|
msgstr "ಪ್ರತಿಕ್ರಿಯೆ ಅಥವಾ ಬೆಂಬಲದೊಂದಿಗೆ ರಿಯಾಕ್ಟಿವ್ ರೆಸ್ಯೂಮೇನ ಬಳಕೆದಾರರಿಂದ ಕೇಳಲು ನಾನು ಯಾವಾಗಲೂ ಇಷ್ಟಪಡುತ್ತೇನೆ. ನಾನು ಸ್ವೀಕರಿಸಿದ ಕೆಲವು ಸಂದೇಶಗಳು ಇಲ್ಲಿವೆ. ನೀವು ಯಾವುದೇ ಪ್ರತಿಕ್ರಿಯೆಯನ್ನು ಹೊಂದಿದ್ದರೆ, <0>{email} ನಲ್ಲಿ ನನಗೆ ಇಮೇಲ್ ಅನ್ನು ಡ್ರಾಪ್ ಮಾಡಲು ಹಿಂಜರಿಯಬೇಡಿ</0>."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr "ಐಕಾನ್"
|
msgstr "ಐಕಾನ್"
|
||||||
@ -793,9 +793,9 @@ msgstr "john.doe@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "ಕೀವರ್ಡ್ಗಳು"
|
msgstr "ಕೀವರ್ಡ್ಗಳು"
|
||||||
@ -809,7 +809,7 @@ msgstr "ಲೇಬಲ್"
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "ಭಾಷೆ"
|
msgstr "ಭಾಷೆ"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr "ಕೊನೆಯದಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ {lastUpdated}"
|
msgstr "ಕೊನೆಯದಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ {lastUpdated}"
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr "ಸ್ಥಳ"
|
msgstr "ಸ್ಥಳ"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr "ಮಾರ್ಚ್ 2023 - ಪ್ರಸ್ತುತ"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "ಅಂಚು"
|
msgstr "ಅಂಚು"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "MIT ಪರವಾನಗಿ"
|
msgstr "MIT ಪರವಾನಗಿ"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "ಹೆಸರು"
|
msgstr "ಹೆಸರು"
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "ಹೆಸರು"
|
msgstr "ಹೆಸರು"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "ನೆಟ್ವರ್ಕ್"
|
msgstr "ನೆಟ್ವರ್ಕ್"
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr "ಗಮನಿಸಿ: ಇದು ನಿಮ್ಮ ಖಾತೆಯನ್ನ
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "ಟಿಪ್ಪಣಿಗಳು"
|
msgstr "ಟಿಪ್ಪಣಿಗಳು"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr "ಒನ್-ಟೈಮ್ ಪಾಸ್ವರ್ಡ್"
|
msgstr "ಒನ್-ಟೈಮ್ ಪಾಸ್ವರ್ಡ್"
|
||||||
@ -984,7 +980,7 @@ msgstr "ಒನ್-ಟೈಮ್ ಪಾಸ್ವರ್ಡ್"
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr "ಓಹ್, ಸರ್ವರ್ ದೋಷವನ್ನು ಹಿಂತಿರುಗಿಸಿದೆ."
|
msgstr "ಓಹ್, ಸರ್ವರ್ ದೋಷವನ್ನು ಹಿಂತಿರುಗಿಸಿದೆ."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr "ತೆರೆಯಿರಿ"
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr "ಮುಕ್ತ ಸಂಪನ್ಮೂಲ"
|
msgstr "ಮುಕ್ತ ಸಂಪನ್ಮೂಲ"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr "OpenAI ನಿಮ್ಮ ಪಠ್ಯಕ್ಕಾಗಿ ಯಾವುದೇ ಆಯ್ಕೆಗಳನ್ನು ಹಿಂತಿರುಗಿಸಲಿಲ್ಲ."
|
msgstr "OpenAI ನಿಮ್ಮ ಪಠ್ಯಕ್ಕಾಗಿ ಯಾವುದೇ ಆಯ್ಕೆಗಳನ್ನು ಹಿಂತಿರುಗಿಸಲಿಲ್ಲ."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "OpenAI ಏಕೀಕರಣ"
|
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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr "ಸ್ಥಾನ"
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr "ಇವರಿಂದ ನಡೆಸಲ್ಪಡುತ್ತಿದೆ"
|
msgstr "ಇವರಿಂದ ನಡೆಸಲ್ಪಡುತ್ತಿದೆ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr "<0>ಸರಳ ಐಕಾನ್ಗಳಿಂದ</0> ನಡೆಸಲ್ಪಡುತ್ತಿದೆ"
|
msgstr "<0>ಸರಳ ಐಕಾನ್ಗಳಿಂದ</0> ನಡೆಸಲ್ಪಡುತ್ತಿದೆ"
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr "ರಿಯಾಕ್ಟಿವ್ ರೆಸ್ಯೂಮೇ ಅದರ ರೋ
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "ಮತ್ತೆಮಾಡು"
|
msgstr "ಮತ್ತೆಮಾಡು"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "ತೆಗೆದುಹಾಕಿ"
|
msgstr "ತೆಗೆದುಹಾಕಿ"
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr "ವೈಶಿಷ್ಟ್ಯಗಳಲ್ಲಿ ಸಮೃದ್ಧವಾ
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr "ದುಂಡಾದ"
|
msgstr "ದುಂಡಾದ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "ಬದಲಾವಣೆಗಳನ್ನು ಉಳಿಸು"
|
msgstr "ಬದಲಾವಣೆಗಳನ್ನು ಉಳಿಸು"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr "ಥೀಮ್"
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr "ಬ್ರೌಸರ್ಗೆ ಸಂಪರ್ಕಿಸುವಲ್ಲಿ ದೋಷ ಕಂಡುಬಂದಿದೆ. ದಯವಿಟ್ಟು 'ಕ್ರೋಮ್' ಚಾಲನೆಯಲ್ಲಿದೆ ಮತ್ತು ತಲುಪಬಹುದೆಂದು ಖಚಿತಪಡಿಸಿಕೊಳ್ಳಿ."
|
msgstr "ಬ್ರೌಸರ್ಗೆ ಸಂಪರ್ಕಿಸುವಲ್ಲಿ ದೋಷ ಕಂಡುಬಂದಿದೆ. ದಯವಿಟ್ಟು 'ಕ್ರೋಮ್' ಚಾಲನೆಯಲ್ಲಿದೆ ಮತ್ತು ತಲುಪಬಹುದೆಂದು ಖಚಿತಪಡಿಸಿಕೊಳ್ಳಿ."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr "ಫ್ಲೋಟಿಂಗ್ ಟೂಲ್ಬಾರ್ನಲ್ಲಿರುವ ರದ್ದುಗೊಳಿಸು ಬಟನ್ ಅನ್ನು ಕ್ಲಿಕ್ ಮಾಡುವ ಮೂಲಕ ಈ ಕ್ರಿಯೆಯನ್ನು ಹಿಂತಿರುಗಿಸಬಹುದು."
|
msgstr "ಫ್ಲೋಟಿಂಗ್ ಟೂಲ್ಬಾರ್ನಲ್ಲಿರುವ ರದ್ದುಗೊಳಿಸು ಬಟನ್ ಅನ್ನು ಕ್ಲಿಕ್ ಮಾಡುವ ಮೂಲಕ ಈ ಕ್ರಿಯೆಯನ್ನು ಹಿಂತಿರುಗಿಸಬಹುದು."
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr "ರದ್ದುಮಾಡು"
|
msgstr "ರದ್ದುಮಾಡು"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr "ರೆಸ್ಯೂಮ್ ಅನ್ನು ಅನ್ಲಾಕ್ ಮಾ
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr "ಪರಿಶೀಲಿಸಲಾಗಿಲ್ಲ"
|
msgstr "ಪರಿಶೀಲಿಸಲಾಗಿಲ್ಲ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr "ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ಐಟಂ ಅನ್ನು ನವೀಕರಿಸಿ"
|
msgstr "ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ಐಟಂ ಅನ್ನು ನವೀಕರಿಸಿ"
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr "ಬಳಕೆದಾರರು ಸಂಬಂಧಿತ 'ರಹಸ್ಯ' ದಾಖಲೆಯನ್ನು ಹೊಂದಿಲ್ಲ. ದಯವಿಟ್ಟು ಈ ಸಮಸ್ಯೆಯನ್ನು GitHub ನಲ್ಲಿ ವರದಿ ಮಾಡಿ."
|
msgstr "ಬಳಕೆದಾರರು ಸಂಬಂಧಿತ 'ರಹಸ್ಯ' ದಾಖಲೆಯನ್ನು ಹೊಂದಿಲ್ಲ. ದಯವಿಟ್ಟು ಈ ಸಮಸ್ಯೆಯನ್ನು GitHub ನಲ್ಲಿ ವರದಿ ಮಾಡಿ."
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr "ಬಳಕೆದಾರರ ಹೆಸರು"
|
msgstr "ಬಳಕೆದಾರರ ಹೆಸರು"
|
||||||
@ -1610,7 +1609,7 @@ msgstr "ಮೌಲ್ಯೀಕರಿಸಿ"
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr "ಮೌಲ್ಯೀಕರಿಸಿ"
|
msgstr "ಮೌಲ್ಯೀಕರಿಸಿ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "ಮೌಲ್ಯ"
|
msgstr "ಮೌಲ್ಯ"
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr "ಆವೃತ್ತಿ 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "ವೀಕ್ಷಣೆಗಳು"
|
msgstr "ವೀಕ್ಷಣೆಗಳು"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "ಕಾಣುವ"
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr "ನಿಮ್ಮ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ನೀವು ಮರೆತರೆ ನಾವು ನಿಮಗೆ ಪಾಸ್ವರ್ಡ್ ಮರುಹೊಂದಿಸುವ ಲಿಂಕ್ ಅನ್ನು ಕಳುಹಿಸಬಹುದು ಎಂಬುದನ್ನು ಖಚಿತಪಡಿಸಿಕೊಳ್ಳಲು ಮಾತ್ರ ನಾವು ನಿಮ್ಮ ಇಮೇಲ್ ವಿಳಾಸವನ್ನು ಪರಿಶೀಲಿಸುತ್ತೇವೆ."
|
msgstr "ನಿಮ್ಮ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ನೀವು ಮರೆತರೆ ನಾವು ನಿಮಗೆ ಪಾಸ್ವರ್ಡ್ ಮರುಹೊಂದಿಸುವ ಲಿಂಕ್ ಅನ್ನು ಕಳುಹಿಸಬಹುದು ಎಂಬುದನ್ನು ಖಚಿತಪಡಿಸಿಕೊಳ್ಳಲು ಮಾತ್ರ ನಾವು ನಿಮ್ಮ ಇಮೇಲ್ ವಿಳಾಸವನ್ನು ಪರಿಶೀಲಿಸುತ್ತೇವೆ."
|
||||||
@ -1648,7 +1651,7 @@ msgstr "ನಿಮ್ಮ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ನೀವ
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr "ಜಾಲತಾಣ"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "ಇತ್ತೀಚಿನ ಆವೃತ್ತಿಯಲ್ಲಿ ಹೊಸದೇನಿದೆ"
|
msgstr "ಇತ್ತೀಚಿನ ಆವೃತ್ತಿಯಲ್ಲಿ ಹೊಸದೇನಿದೆ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "ಅಲ್ಪವಿರಾಮದಿಂದ ಬೇರ್ಪಡಿಸುವ ಮೂಲಕ ಅಥವಾ ಎಂಟರ್ ಒತ್ತುವ ಮೂಲಕ ನೀವು ಬಹು ಕೀವರ್ಡ್ಗಳನ್ನು ಸೇರಿಸಬಹುದು."
|
msgstr "ಅಲ್ಪವಿರಾಮದಿಂದ ಬೇರ್ಪಡಿಸುವ ಮೂಲಕ ಅಥವಾ ಎಂಟರ್ ಒತ್ತುವ ಮೂಲಕ ನೀವು ಬಹು ಕೀವರ್ಡ್ಗಳನ್ನು ಸೇರಿಸಬಹುದು."
|
||||||
@ -1672,11 +1675,11 @@ msgstr "ಅಲ್ಪವಿರಾಮದಿಂದ ಬೇರ್ಪಡಿಸುವ
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "ನಿಮ್ಮ ಬಳಕೆದಾರಹೆಸರನ್ನು ಸಹ ನೀವು ನಮೂದಿಸಬಹುದು."
|
msgstr "ನಿಮ್ಮ ಬಳಕೆದಾರಹೆಸರನ್ನು ಸಹ ನೀವು ನಮೂದಿಸಬಹುದು."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
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 ಅನ್ನು ಬಳಸಿಕೊಳ್ಳಬಹುದು ಅಥವಾ ನಿಮ್ಮ ಪುನರಾರಂಭವನ್ನು ರಚಿಸುವಾಗ ನಿಮ್ಮ ಬರವಣಿಗೆಯನ್ನು ಸುಧಾರಿಸಬಹುದು."
|
msgstr "ನೀವು ವಿಷಯವನ್ನು ರಚಿಸಲು ಸಹಾಯ ಮಾಡಲು OpenAI API ಅನ್ನು ಬಳಸಿಕೊಳ್ಳಬಹುದು ಅಥವಾ ನಿಮ್ಮ ಪುನರಾರಂಭವನ್ನು ರಚಿಸುವಾಗ ನಿಮ್ಮ ಬರವಣಿಗೆಯನ್ನು ಸುಧಾರಿಸಬಹುದು."
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr "ನೀವು ವಿಷಯವನ್ನು ರಚಿಸಲು ಸಹಾಯ
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "ಸಾರ್ವಜನಿಕ ಹಂಚಿಕೆಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸುವ ಮೂಲಕ ನಿಮ್ಮ ರೆಸ್ಯೂಮ್ ಸ್ವೀಕರಿಸಿದ ವೀಕ್ಷಣೆಗಳ ಸಂಖ್ಯೆಯನ್ನು ನೀವು ಟ್ರ್ಯಾಕ್ ಮಾಡಬಹುದು ಅಥವಾ ಎಷ್ಟು ಜನರು ರೆಸ್ಯೂಮ್ ಅನ್ನು ಡೌನ್ಲೋಡ್ ಮಾಡಿದ್ದಾರೆ ಎಂದು ನೋಡಬಹುದು."
|
msgstr "ಸಾರ್ವಜನಿಕ ಹಂಚಿಕೆಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸುವ ಮೂಲಕ ನಿಮ್ಮ ರೆಸ್ಯೂಮ್ ಸ್ವೀಕರಿಸಿದ ವೀಕ್ಷಣೆಗಳ ಸಂಖ್ಯೆಯನ್ನು ನೀವು ಟ್ರ್ಯಾಕ್ ಮಾಡಬಹುದು ಅಥವಾ ಎಷ್ಟು ಜನರು ರೆಸ್ಯೂಮ್ ಅನ್ನು ಡೌನ್ಲೋಡ್ ಮಾಡಿದ್ದಾರೆ ಎಂದು ನೋಡಬಹುದು."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "<0>ನಿಮ್ಮ ಸ್ವಂತ OpenAI API ಕೀಲಿಯನ್ನು ಪಡೆಯುವ ಆಯ್ಕೆಯನ್ನು ನೀವು ಹೊಂದಿರುವಿರಿ</0>. ಈ ಕೀಲಿಯು ನಿಮಗೆ ಸರಿಹೊಂದುವಂತೆ API ಅನ್ನು ನಿಯಂತ್ರಿಸಲು ನಿಮಗೆ ಅಧಿಕಾರ ನೀಡುತ್ತದೆ. ಪರ್ಯಾಯವಾಗಿ, ನೀವು ರಿಯಾಕ್ಟಿವ್ ರೆಸ್ಯೂಮ್ನಲ್ಲಿ AI ವೈಶಿಷ್ಟ್ಯಗಳನ್ನು ಸಂಪೂರ್ಣವಾಗಿ ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲು ಬಯಸಿದರೆ, ನಿಮ್ಮ ಸೆಟ್ಟಿಂಗ್ಗಳಿಂದ ನೀವು ಕೀಲಿಯನ್ನು ಸರಳವಾಗಿ ತೆಗೆದುಹಾಕಬಹುದು."
|
msgstr "<0>ನಿಮ್ಮ ಸ್ವಂತ OpenAI API ಕೀಲಿಯನ್ನು ಪಡೆಯುವ ಆಯ್ಕೆಯನ್ನು ನೀವು ಹೊಂದಿರುವಿರಿ</0>. ಈ ಕೀಲಿಯು ನಿಮಗೆ ಸರಿಹೊಂದುವಂತೆ API ಅನ್ನು ನಿಯಂತ್ರಿಸಲು ನಿಮಗೆ ಅಧಿಕಾರ ನೀಡುತ್ತದೆ. ಪರ್ಯಾಯವಾಗಿ, ನೀವು ರಿಯಾಕ್ಟಿವ್ ರೆಸ್ಯೂಮ್ನಲ್ಲಿ AI ವೈಶಿಷ್ಟ್ಯಗಳನ್ನು ಸಂಪೂರ್ಣವಾಗಿ ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲು ಬಯಸಿದರೆ, ನಿಮ್ಮ ಸೆಟ್ಟಿಂಗ್ಗಳಿಂದ ನೀವು ಕೀಲಿಯನ್ನು ಸರಳವಾಗಿ ತೆಗೆದುಹಾಕಬಹುದು."
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr "ನಿಮಗೆ ಮೇಲ್ ಬಂದಿದೆ!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "ನಿಮ್ಮ ಖಾತೆ ಮತ್ತು ನಿಮ್ಮ ಎಲ್ಲಾ ಡೇಟಾವನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಅಳಿಸಲಾಗಿದೆ. ವಿದಾಯ!"
|
msgstr "ನಿಮ್ಮ ಖಾತೆ ಮತ್ತು ನಿಮ್ಮ ಎಲ್ಲಾ ಡೇಟಾವನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಅಳಿಸಲಾಗಿದೆ. ವಿದಾಯ!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "ನಿಮ್ಮ API ಕೀಯನ್ನು ಬ್ರೌಸರ್ನ ಸ್ಥಳೀಯ ಸಂಗ್ರಹಣೆಯಲ್ಲಿ ಸುರಕ್ಷಿತವಾಗಿ ಸಂಗ್ರಹಿಸಲಾಗಿದೆ ಮತ್ತು ಅವರ ಅಧಿಕೃತ SDK ಮೂಲಕ OpenAI ಗೆ ವಿನಂತಿಗಳನ್ನು ಮಾಡುವಾಗ ಮಾತ್ರ ಬಳಸಿಕೊಳ್ಳಲಾಗುತ್ತದೆ. OpenAI ನ ಸೇವೆಗಳೊಂದಿಗೆ ಸಂವಹನ ಮಾಡುವಾಗ ಹೊರತುಪಡಿಸಿ ನಿಮ್ಮ ಕೀ ಯಾವುದೇ ಬಾಹ್ಯ ಸರ್ವರ್ಗೆ ರವಾನೆಯಾಗುವುದಿಲ್ಲ ಎಂದು ಖಚಿತವಾಗಿರಿ."
|
msgstr "ನಿಮ್ಮ API ಕೀಯನ್ನು ಬ್ರೌಸರ್ನ ಸ್ಥಳೀಯ ಸಂಗ್ರಹಣೆಯಲ್ಲಿ ಸುರಕ್ಷಿತವಾಗಿ ಸಂಗ್ರಹಿಸಲಾಗಿದೆ ಮತ್ತು ಅವರ ಅಧಿಕೃತ SDK ಮೂಲಕ OpenAI ಗೆ ವಿನಂತಿಗಳನ್ನು ಮಾಡುವಾಗ ಮಾತ್ರ ಬಳಸಿಕೊಳ್ಳಲಾಗುತ್ತದೆ. OpenAI ನ ಸೇವೆಗಳೊಂದಿಗೆ ಸಂವಹನ ಮಾಡುವಾಗ ಹೊರತುಪಡಿಸಿ ನಿಮ್ಮ ಕೀ ಯಾವುದೇ ಬಾಹ್ಯ ಸರ್ವರ್ಗೆ ರವಾನೆಯಾಗುವುದಿಲ್ಲ ಎಂದು ಖಚಿತವಾಗಿರಿ."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: ko\n"
|
"Language: ko\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:13\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Korean\n"
|
"Language-Team: Korean\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
@ -38,7 +38,7 @@ msgstr "<0>저는 여가 시간에 다른 훌륭한 오픈소스 기여자들의
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr "<0>앱이 완벽하지는 않겠지만, 앞으로 더 나아지기를 바랍니다.</0><1>이력서를 작성하는 동안 문제가 발생했거나 다른 사용자가 이력서를 더 쉽게 작성하는 데 도움이 될 만한 아이디어가 있다면 리포지토리에 문제를 등록하거나 저에게 이메일을 보내주세요.</1>"
|
msgstr "<0>앱이 완벽하지는 않겠지만, 앞으로 더 나아지기를 바랍니다.</0><1>이력서를 작성하는 동안 문제가 발생했거나 다른 사용자가 이력서를 더 쉽게 작성하는 데 도움이 될 만한 아이디어가 있다면 리포지토리에 문제를 등록하거나 저에게 이메일을 보내주세요.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr "<0>참고: </0>OpenAI API를 이용함으로써 귀하는 OpenAI가 명시한 <1>이용약관</1> 및 <2>개인정보 보호정책을</2> 인정하고 이에 동의하는 것입니다. 리액티브 이력서는 서비스의 부적절하거나 무단 사용에 대해 어떠한 책임도 지지 않으며, 그로 인한 모든 영향이나 책임은 전적으로 사용자에게 있다는 점에 유의하시기 바랍니다."
|
msgstr "<0>참고: </0>OpenAI API를 이용함으로써 귀하는 OpenAI가 명시한 <1>이용약관</1> 및 <2>개인정보 보호정책을</2> 인정하고 이에 동의하는 것입니다. 리액티브 이력서는 서비스의 부적절하거나 무단 사용에 대해 어떠한 책임도 지지 않으며, 그로 인한 모든 영향이나 책임은 전적으로 사용자에게 있다는 점에 유의하시기 바랍니다."
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr "{accept} 파일만 허용됩니다."
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr "계정"
|
msgstr "계정"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr "사용자 지정 필드 추가"
|
msgstr "사용자 지정 필드 추가"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "새 항목 추가"
|
msgstr "새 항목 추가"
|
||||||
@ -146,7 +146,7 @@ msgstr "링크가 있는 사람은 누구나 이력서를 보고 다운로드할
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr "이 링크가 있는 사람은 누구나 이력서를 보고 다운로드할 수 있습니다. 프로필이나 채용 담당자에 공유해 보세요."
|
msgstr "이 링크가 있는 사람은 누구나 이력서를 보고 다운로드할 수 있습니다. 프로필이나 채용 담당자에 공유해 보세요."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr "이 항목을 삭제하시겠습니까?"
|
msgstr "이 항목을 삭제하시겠습니까?"
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr "백업 코드"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "백업 코드는 소문자 또는 숫자만 포함할 수 있으며 정확히 10자여야 합니다."
|
msgstr "백업 코드는 소문자 또는 숫자만 포함할 수 있으며 정확히 10자여야 합니다."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr "Built with"
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr "By the community, for the community."
|
msgstr "By the community, for the community."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr "새 비밀번호 확인"
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "계속하기"
|
msgstr "계속하기"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "복사"
|
msgstr "복사"
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr "이력서 링크 복사"
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr "클립보드에 복사"
|
msgstr "클립보드에 복사"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr "만들기"
|
msgstr "만들기"
|
||||||
@ -328,7 +328,7 @@ msgstr "만들기"
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr "새 계정 만들기"
|
msgstr "새 계정 만들기"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr "새 항목 만들기"
|
msgstr "새 항목 만들기"
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr "날짜"
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "날짜 또는 날짜 범위"
|
msgstr "날짜 또는 날짜 범위"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr "PDF 다운로드"
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr "다운로드"
|
msgstr "다운로드"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr "복제"
|
msgstr "복제"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr "기존 항목 복제"
|
msgstr "기존 항목 복제"
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr "기존 항목 복제"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "기존 이력서 복제"
|
msgstr "기존 이력서 복제"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "수정"
|
msgstr "수정"
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr "글꼴 변형"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "예를 들어, 이력서를 보낸 회사에 대한 정보나 직무 설명에 대한 링크를 여기에 기록할 수 있습니다."
|
msgstr "예를 들어, 이력서를 보낸 회사에 대한 정보나 직무 설명에 대한 링크를 여기에 기록할 수 있습니다."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "잊어버림"
|
msgstr "잊어버림"
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr "여기에서 프로필 사진, 이름, 사용자 아이디 등의 계정
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr "여기에서 프로필을 업데이트하여 사용자 환경을 맞춤 설정하고 개인화할 수 있습니다."
|
msgstr "여기에서 프로필을 업데이트하여 사용자 환경을 맞춤 설정하고 개인화할 수 있습니다."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "숨겨진"
|
msgstr "숨겨진"
|
||||||
@ -690,7 +690,7 @@ msgstr "이력서를 공개적으로 호스팅하세요"
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr "저는 항상 반응형 이력서 사용자들로부터 피드백이나 지원을 받는 것을 좋아합니다. 다음은 제가 받은 메시지 중 일부입니다. 피드백이 있으시면 언제든지 다음 주소로 이메일을 보내주세요. <0>{email}</0>."
|
msgstr "저는 항상 반응형 이력서 사용자들로부터 피드백이나 지원을 받는 것을 좋아합니다. 다음은 제가 받은 메시지 중 일부입니다. 피드백이 있으시면 언제든지 다음 주소로 이메일을 보내주세요. <0>{email}</0>."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr "아이콘"
|
msgstr "아이콘"
|
||||||
@ -793,9 +793,9 @@ msgstr "john.doe@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "키워드"
|
msgstr "키워드"
|
||||||
@ -809,7 +809,7 @@ msgstr "라벨"
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "언어"
|
msgstr "언어"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr "마지막 업데이트 {lastUpdated}"
|
msgstr "마지막 업데이트 {lastUpdated}"
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr "위치"
|
msgstr "위치"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr "2023년 3월 - 현재"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "마진"
|
msgstr "마진"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "MIT 라이선스"
|
msgstr "MIT 라이선스"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "이름"
|
msgstr "이름"
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "이름"
|
msgstr "이름"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "네트워크"
|
msgstr "네트워크"
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr "참고: 이렇게 하면 계정의 보안이 약해집니다."
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "참고"
|
msgstr "참고"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr "일회용 비밀번호"
|
msgstr "일회용 비밀번호"
|
||||||
@ -984,7 +980,7 @@ msgstr "일회용 비밀번호"
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr "서버에서 오류를 반환했습니다."
|
msgstr "서버에서 오류를 반환했습니다."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr "열기"
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr "오픈 소스"
|
msgstr "오픈 소스"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr "OpenAI가 텍스트에 대한 선택 항목을 반환하지 않았습니다."
|
msgstr "OpenAI가 텍스트에 대한 선택 항목을 반환하지 않았습니다."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "OpenAI 통합"
|
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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr "위치"
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr "제공"
|
msgstr "제공"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr "<0>간단한 아이콘으로</0> 구동"
|
msgstr "<0>간단한 아이콘으로</0> 구동"
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr "리액티브 이력서는 활기찬 커뮤니티 덕분에 번창하고
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "다시 실행"
|
msgstr "다시 실행"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "제거"
|
msgstr "제거"
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr "페이지 제거"
|
msgstr "페이지 제거"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr "가격이 아닌 기능이 풍부합니다."
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr "둥근"
|
msgstr "둥근"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "변경 사항 저장"
|
msgstr "변경 사항 저장"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr "테마"
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr "브라우저에 연결하는 동안 오류가 발생했습니다. '크롬'이 실행 중이고 연결 가능한 상태인지 확인하세요."
|
msgstr "브라우저에 연결하는 동안 오류가 발생했습니다. '크롬'이 실행 중이고 연결 가능한 상태인지 확인하세요."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr "플로팅 툴바에서 실행 취소 버튼을 클릭하면 이 작업을 되돌릴 수 있습니다."
|
msgstr "플로팅 툴바에서 실행 취소 버튼을 클릭하면 이 작업을 되돌릴 수 있습니다."
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr "실행 취소"
|
msgstr "실행 취소"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr "이력서를 잠금 해제하면 이력서를 다시 변경할 수 있
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr "확인되지 않음"
|
msgstr "확인되지 않음"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr "기존 항목 업데이트"
|
msgstr "기존 항목 업데이트"
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr "사용자에게 연결된 '비밀' 레코드가 없습니다. 이 문제는 GitHub에서 신고해 주세요."
|
msgstr "사용자에게 연결된 '비밀' 레코드가 없습니다. 이 문제는 GitHub에서 신고해 주세요."
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr "사용자 이름"
|
msgstr "사용자 이름"
|
||||||
@ -1610,7 +1609,7 @@ msgstr "유효성 검사"
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr "유효성 검사"
|
msgstr "유효성 검사"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "가치"
|
msgstr "가치"
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr "버전 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "조회수"
|
msgstr "조회수"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "가시성"
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr "비밀번호를 잊어버린 경우 비밀번호 재설정 링크를 보낼 수 있도록 하기 위해서만 이메일 주소를 확인합니다."
|
msgstr "비밀번호를 잊어버린 경우 비밀번호 재설정 링크를 보낼 수 있도록 하기 위해서만 이메일 주소를 확인합니다."
|
||||||
@ -1648,7 +1651,7 @@ msgstr "비밀번호를 잊어버린 경우 비밀번호 재설정 링크를 보
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr "웹사이트"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "최신 버전의 새로운 기능"
|
msgstr "최신 버전의 새로운 기능"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "쉼표로 구분하거나 Enter 키를 눌러 여러 개의 키워드를 추가할 수 있습니다."
|
msgstr "쉼표로 구분하거나 Enter 키를 눌러 여러 개의 키워드를 추가할 수 있습니다."
|
||||||
@ -1672,11 +1675,11 @@ msgstr "쉼표로 구분하거나 Enter 키를 눌러 여러 개의 키워드를
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "사용자 아이디를 입력할 수도 있습니다."
|
msgstr "사용자 아이디를 입력할 수도 있습니다."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
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를 사용하여 콘텐츠를 생성하거나 이력서를 작성하는 동안 글쓰기를 개선할 수 있습니다."
|
msgstr "OpenAI API를 사용하여 콘텐츠를 생성하거나 이력서를 작성하는 동안 글쓰기를 개선할 수 있습니다."
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr "OpenAI API를 사용하여 콘텐츠를 생성하거나 이력서를 작
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "공개 공유를 활성화하여 이력서가 조회된 횟수 또는 이력서를 다운로드한 사람의 수를 추적할 수 있습니다."
|
msgstr "공개 공유를 활성화하여 이력서가 조회된 횟수 또는 이력서를 다운로드한 사람의 수를 추적할 수 있습니다."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "자신만의 <0>OpenAI API 키를 얻을</0> 수 있는 옵션이 있습니다. 이 키를 사용하면 원하는 대로 API를 활용할 수 있습니다. 또는 반응형 이력서에서 AI 기능을 완전히 비활성화하려면 설정에서 키를 제거하기만 하면 됩니다."
|
msgstr "자신만의 <0>OpenAI API 키를 얻을</0> 수 있는 옵션이 있습니다. 이 키를 사용하면 원하는 대로 API를 활용할 수 있습니다. 또는 반응형 이력서에서 AI 기능을 완전히 비활성화하려면 설정에서 키를 제거하기만 하면 됩니다."
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr "메일이 도착했습니다!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "계정과 모든 데이터가 성공적으로 삭제되었습니다. 안녕히 계세요!"
|
msgstr "계정과 모든 데이터가 성공적으로 삭제되었습니다. 안녕히 계세요!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "API 키는 브라우저의 로컬 저장소에 안전하게 저장되며 공식 SDK를 통해 OpenAI에 요청할 때만 활용됩니다. OpenAI의 서비스와 상호작용할 때를 제외하고는 키가 외부 서버로 전송되지 않으니 안심하세요."
|
msgstr "API 키는 브라우저의 로컬 저장소에 안전하게 저장되며 공식 SDK를 통해 OpenAI에 요청할 때만 활용됩니다. OpenAI의 서비스와 상호작용할 때를 제외하고는 키가 외부 서버로 전송되지 않으니 안심하세요."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: lt\n"
|
"Language: lt\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:13\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Lithuanian\n"
|
"Language-Team: Lithuanian\n"
|
||||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && (n%100>19 || n%100<11) ? 0 : (n%10>=2 && n%10<=9) && (n%100>19 || n%100<11) ? 1 : n%1!=0 ? 2: 3);\n"
|
"Plural-Forms: nplurals=4; plural=(n%10==1 && (n%100>19 || n%100<11) ? 0 : (n%10>=2 && n%10<=9) && (n%100>19 || n%100<11) ? 1 : n%1!=0 ? 2: 3);\n"
|
||||||
@ -38,7 +38,7 @@ msgstr "<0>\"Reactive Resume\" sukūriau daugiausia vienas, laisvalaikiu, daug p
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr "<0>Esu įsitikinęs, kad programa nėra tobula, bet norėčiau, kad ji tokia būtų.</0><1>Jei kurdami gyvenimo aprašymą susidūrėte su kokiomis nors problemomis arba turite idėją, kuri padėtų jums ir kitiems naudotojams lengviau kurti gyvenimo aprašymą, parašykite apie tai saugykloje arba atsiųskite man el. laišką.</1>"
|
msgstr "<0>Esu įsitikinęs, kad programa nėra tobula, bet norėčiau, kad ji tokia būtų.</0><1>Jei kurdami gyvenimo aprašymą susidūrėte su kokiomis nors problemomis arba turite idėją, kuri padėtų jums ir kitiems naudotojams lengviau kurti gyvenimo aprašymą, parašykite apie tai saugykloje arba atsiųskite man el. laišką.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr "<0>Pastaba: </0>naudodamiesi \"OpenAI\" API pripažįstate ir sutinkate su \"OpenAI\" nustatytomis <1>naudojimo sąlygomis</1> ir <2>privatumo politika</2>. Atkreipkite dėmesį, kad \"Reactive Resume\" neprisiima jokios atsakomybės už netinkamą ar neleistiną paslaugos naudojimą, o bet kokios iš to kylančios pasekmės ar atsakomybė tenka tik naudotojui."
|
msgstr "<0>Pastaba: </0>naudodamiesi \"OpenAI\" API pripažįstate ir sutinkate su \"OpenAI\" nustatytomis <1>naudojimo sąlygomis</1> ir <2>privatumo politika</2>. Atkreipkite dėmesį, kad \"Reactive Resume\" neprisiima jokios atsakomybės už netinkamą ar neleistiną paslaugos naudojimą, o bet kokios iš to kylančios pasekmės ar atsakomybė tenka tik naudotojui."
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr "Priimami tik {accept} failai"
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr "Paskyra"
|
msgstr "Paskyra"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr "Pridėti pasirinktinį lauką"
|
msgstr "Pridėti pasirinktinį lauką"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Pridėti naują elementą"
|
msgstr "Pridėti naują elementą"
|
||||||
@ -146,7 +146,7 @@ msgstr "Bet kuris nuorodą turintis asmuo gali peržiūrėti ir atsisiųsti gyve
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr "Kiekvienas, pasinaudojęs šia nuoroda, gali peržiūrėti ir atsisiųsti gyvenimo aprašymą. Pasidalykite juo savo profilyje arba su įdarbintojais."
|
msgstr "Kiekvienas, pasinaudojęs šia nuoroda, gali peržiūrėti ir atsisiųsti gyvenimo aprašymą. Pasidalykite juo savo profilyje arba su įdarbintojais."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr "Ar tikrai norite ištrinti šį elementą?"
|
msgstr "Ar tikrai norite ištrinti šį elementą?"
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr "Atsarginis kodas"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Atsarginius kodus gali sudaryti tik mažosios raidės arba skaičiai, juos turi sudaryti tiksliai 10 simbolių."
|
msgstr "Atsarginius kodus gali sudaryti tik mažosios raidės arba skaičiai, juos turi sudaryti tiksliai 10 simbolių."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr "Pastatytas su"
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr "Bendruomenės ir bendruomenei."
|
msgstr "Bendruomenės ir bendruomenei."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr "Patvirtinti naują slaptažodį"
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Tęsti"
|
msgstr "Tęsti"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Kopijuoti"
|
msgstr "Kopijuoti"
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr "Nukopijuokite nuorodą į gyvenimo aprašymą"
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr "Kopijuoti į iškarpinę"
|
msgstr "Kopijuoti į iškarpinę"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr "Sukurti"
|
msgstr "Sukurti"
|
||||||
@ -328,7 +328,7 @@ msgstr "Sukurti"
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr "Sukurti naują paskyrą"
|
msgstr "Sukurti naują paskyrą"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr "Sukurti naują elementą"
|
msgstr "Sukurti naują elementą"
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr "Data"
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Data arba datos intervalas"
|
msgstr "Data arba datos intervalas"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr "Atsisiųsti PDF"
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr "Atsisiuntimai"
|
msgstr "Atsisiuntimai"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr "Dublikatas"
|
msgstr "Dublikatas"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr "Dubliuoti esamą elementą"
|
msgstr "Dubliuoti esamą elementą"
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr "Dubliuoti esamą elementą"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Dubliuoti esamą gyvenimo aprašymą"
|
msgstr "Dubliuoti esamą gyvenimo aprašymą"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Redaguoti"
|
msgstr "Redaguoti"
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr "Šrifto variantai"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "Pavyzdžiui, čia galima įrašyti informaciją apie tai, kurioms įmonėms siuntėte šį gyvenimo aprašymą, arba nuorodas į darbo aprašymus."
|
msgstr "Pavyzdžiui, čia galima įrašyti informaciją apie tai, kurioms įmonėms siuntėte šį gyvenimo aprašymą, arba nuorodas į darbo aprašymus."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Pamirškite"
|
msgstr "Pamirškite"
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr "Čia galite atnaujinti savo paskyros informaciją, pvz., profilio nuotra
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr "Čia galite atnaujinti savo profilį, kad pritaikytumėte ir suasmenintumėte savo patirtį."
|
msgstr "Čia galite atnaujinti savo profilį, kad pritaikytumėte ir suasmenintumėte savo patirtį."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Paslėptas"
|
msgstr "Paslėptas"
|
||||||
@ -690,7 +690,7 @@ msgstr "Viešai talpinkite savo gyvenimo aprašymą"
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr "Visada džiaugiuosi galėdamas išgirsti \"Reactive Resume\" naudotojų atsiliepimus ar paramą. Štai keletas iš gautų žinučių. Jei turite kokių nors atsiliepimų, nedvejodami rašykite man el. paštu <0>{email}</0>."
|
msgstr "Visada džiaugiuosi galėdamas išgirsti \"Reactive Resume\" naudotojų atsiliepimus ar paramą. Štai keletas iš gautų žinučių. Jei turite kokių nors atsiliepimų, nedvejodami rašykite man el. paštu <0>{email}</0>."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr "Ikona"
|
msgstr "Ikona"
|
||||||
@ -793,9 +793,9 @@ msgstr "jonas.jonaitis@pavyzdys.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Raktiniai žodžiai"
|
msgstr "Raktiniai žodžiai"
|
||||||
@ -809,7 +809,7 @@ msgstr "Etiketė"
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Kalba"
|
msgstr "Kalba"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr "Paskutinį kartą atnaujinta {lastUpdated}"
|
msgstr "Paskutinį kartą atnaujinta {lastUpdated}"
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr "Vieta"
|
msgstr "Vieta"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr "2023 m. kovo mėn. - dabartis"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Paraštė"
|
msgstr "Paraštė"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "MIT licencija"
|
msgstr "MIT licencija"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Vardas"
|
msgstr "Vardas"
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Vardas"
|
msgstr "Vardas"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Tinklas"
|
msgstr "Tinklas"
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr "Pastaba: dėl to jūsų paskyra taps mažiau saugi."
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Pastabos"
|
msgstr "Pastabos"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr "Vienkartinis slaptažodis"
|
msgstr "Vienkartinis slaptažodis"
|
||||||
@ -984,7 +980,7 @@ msgstr "Vienkartinis slaptažodis"
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr "Oi, serveris grąžino klaidą."
|
msgstr "Oi, serveris grąžino klaidą."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr "Atviras"
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr "Atviro kodo"
|
msgstr "Atviro kodo"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr "\"OpenAI\" nepateikė jokių jūsų teksto pasirinkimų."
|
msgstr "\"OpenAI\" nepateikė jokių jūsų teksto pasirinkimų."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "\"OpenAI\" integracija"
|
msgstr "\"OpenAI\" integracija"
|
||||||
|
|
||||||
|
#: 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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr "Pozicija"
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr "Sukurta naudojant"
|
msgstr "Sukurta naudojant"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr "Sukurta naudojant <0>Simple Icons</0>"
|
msgstr "Sukurta naudojant <0>Simple Icons</0>"
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr "\"Reactive Resume\" klesti dėl savo gyvybingos bendruomenės. Šis proj
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Grąžinti"
|
msgstr "Grąžinti"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Pašalinti"
|
msgstr "Pašalinti"
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr "Pašalinti puslapį"
|
msgstr "Pašalinti puslapį"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr "Turtingas funkcijomis, bet ne kainomis."
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr "Suapvalintas"
|
msgstr "Suapvalintas"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Išsaugoti pakeitimus"
|
msgstr "Išsaugoti pakeitimus"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr "Tema"
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr "Įvyko prisijungimo prie naršyklės klaida. Įsitikinkite, kad 'chrome' veikia ir yra pasiekiama."
|
msgstr "Įvyko prisijungimo prie naršyklės klaida. Įsitikinkite, kad 'chrome' veikia ir yra pasiekiama."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr "Šį veiksmą galima atšaukti slankiojoje įrankių juostoje spustelėjus anuliavimo mygtuką."
|
msgstr "Šį veiksmą galima atšaukti slankiojoje įrankių juostoje spustelėjus anuliavimo mygtuką."
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr "Anuliuoti"
|
msgstr "Anuliuoti"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr "Atrakinę gyvenimo aprašymą galėsite vėl jį keisti."
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr "Nepatikrintas"
|
msgstr "Nepatikrintas"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr "Atnaujinti esamą elementą"
|
msgstr "Atnaujinti esamą elementą"
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr "Vartotojas neturi susieto „paslapčių“ įrašo. Praneškite apie šią problemą GitHub platformoje."
|
msgstr "Vartotojas neturi susieto „paslapčių“ įrašo. Praneškite apie šią problemą GitHub platformoje."
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr "Vartotojo vardas"
|
msgstr "Vartotojo vardas"
|
||||||
@ -1610,7 +1609,7 @@ msgstr "Patvirtinti"
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr "Patvirtinta"
|
msgstr "Patvirtinta"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Vertė"
|
msgstr "Vertė"
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr "4 versija"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Peržiūros"
|
msgstr "Peržiūros"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Matomas"
|
msgstr "Matomas"
|
||||||
|
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr "Jūsų el. pašto adresą tikriname tik tam, kad galėtume atsiųsti slaptažodžio atstatymo nuorodą, jei pamirštumėte slaptažodį."
|
msgstr "Jūsų el. pašto adresą tikriname tik tam, kad galėtume atsiųsti slaptažodžio atstatymo nuorodą, jei pamirštumėte slaptažodį."
|
||||||
@ -1648,7 +1651,7 @@ msgstr "Jūsų el. pašto adresą tikriname tik tam, kad galėtume atsiųsti sla
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr "Tinklalapis"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Kas naujo naujausioje versijoje"
|
msgstr "Kas naujo naujausioje versijoje"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Galite pridėti kelis raktinius žodžius, atskirdami juos kableliu arba paspausdami enter."
|
msgstr "Galite pridėti kelis raktinius žodžius, atskirdami juos kableliu arba paspausdami enter."
|
||||||
@ -1672,11 +1675,11 @@ msgstr "Galite pridėti kelis raktinius žodžius, atskirdami juos kableliu arba
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Taip pat galite įvesti savo vartotojo vardą."
|
msgstr "Taip pat galite įvesti savo vartotojo vardą."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
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."
|
msgstr "Galite naudoti OpenAI API, kad padėtumėte generuoti turinį arba patobulinti savo rašymą kurdami savo CV."
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr "Galite naudoti OpenAI API, kad padėtumėte generuoti turinį arba patob
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Įjungę viešą bendrinimą galite stebėti, kiek peržiūrų sulaukė jūsų gyvenimo aprašymas arba kiek žmonių jį atsisiuntė."
|
msgstr "Įjungę viešą bendrinimą galite stebėti, kiek peržiūrų sulaukė jūsų gyvenimo aprašymas arba kiek žmonių jį atsisiuntė."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "Galite <0>gauti savo \"OpenAI\" API raktą</0>. Šis raktas suteikia jums teisę naudoti API, kaip jums atrodo tinkama. Arba, jei norite visiškai išjungti dirbtinio intelekto funkcijas programoje \"Reactive Resume\", galite tiesiog pašalinti raktą iš savo nustatymų."
|
msgstr "Galite <0>gauti savo \"OpenAI\" API raktą</0>. Šis raktas suteikia jums teisę naudoti API, kaip jums atrodo tinkama. Arba, jei norite visiškai išjungti dirbtinio intelekto funkcijas programoje \"Reactive Resume\", galite tiesiog pašalinti raktą iš savo nustatymų."
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr "Gavote laišką!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Jūsų paskyra ir visi duomenys buvo sėkmingai ištrinti. Viso gero!"
|
msgstr "Jūsų paskyra ir visi duomenys buvo sėkmingai ištrinti. Viso gero!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "Jūsų API raktas saugiai saugomas naršyklės vietinėje saugykloje ir naudojamas tik teikiant užklausas \"OpenAI\" per oficialų SDK. Galite būti tikri, kad jūsų raktas nėra perduodamas jokiam išoriniam serveriui, išskyrus atvejus, kai sąveikaujama su \"OpenAI\" paslaugomis."
|
msgstr "Jūsų API raktas saugiai saugomas naršyklės vietinėje saugykloje ir naudojamas tik teikiant užklausas \"OpenAI\" per oficialų SDK. Galite būti tikri, kad jūsų raktas nėra perduodamas jokiam išoriniam serveriui, išskyrus atvejus, kai sąveikaujama su \"OpenAI\" paslaugomis."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: lv\n"
|
"Language: lv\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:13\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Latvian\n"
|
"Language-Team: Latvian\n"
|
||||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n"
|
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n"
|
||||||
@ -38,7 +38,7 @@ msgstr "<0>Reactive Resume izveidoju galvenokārt pats savā brīvajā laikā, a
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr "<0>Esmu pārliecināts, ka lietotne nav perfekta, bet es gribētu, lai tā tāda būtu.</0><1>Ja, veidojot CV, saskārāties ar kādām problēmām vai jums ir ideja, kas palīdzētu jums un citiem lietotājiem vieglāk veidot CV, ierakstiet par to jautājumu repozitorijā vai sūtiet man e-pastu.</1>"
|
msgstr "<0>Esmu pārliecināts, ka lietotne nav perfekta, bet es gribētu, lai tā tāda būtu.</0><1>Ja, veidojot CV, saskārāties ar kādām problēmām vai jums ir ideja, kas palīdzētu jums un citiem lietotājiem vieglāk veidot CV, ierakstiet par to jautājumu repozitorijā vai sūtiet man e-pastu.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr "<0>Piezīme: </0>Izmantojot OpenAI API, jūs atzīstat un piekrītat OpenAI noteiktajiem <1>lietošanas noteikumiem</1> un <2>privātuma politikai</2>. Lūdzu, ņemiet vērā, ka Reactive Resume neuzņemas nekādu atbildību par jebkādu nepareizu vai neatļautu pakalpojuma izmantošanu, un visas no tā izrietošās sekas vai atbildība gulstas tikai uz lietotāju."
|
msgstr "<0>Piezīme: </0>Izmantojot OpenAI API, jūs atzīstat un piekrītat OpenAI noteiktajiem <1>lietošanas noteikumiem</1> un <2>privātuma politikai</2>. Lūdzu, ņemiet vērā, ka Reactive Resume neuzņemas nekādu atbildību par jebkādu nepareizu vai neatļautu pakalpojuma izmantošanu, un visas no tā izrietošās sekas vai atbildība gulstas tikai uz lietotāju."
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr "Pieņem tikai {accept} failus"
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr "Konts"
|
msgstr "Konts"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr "Pielāgotā lauka pievienošana"
|
msgstr "Pielāgotā lauka pievienošana"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Pievienot jaunu elementu"
|
msgstr "Pievienot jaunu elementu"
|
||||||
@ -146,7 +146,7 @@ msgstr "Ikviens, kam ir saite, var apskatīt un lejupielādēt CV."
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr "Ikviens, kam ir šī saite, var apskatīt un lejupielādēt CV. Kopīgojiet to savā profilā vai ar personāla atlases speciālistiem."
|
msgstr "Ikviens, kam ir šī saite, var apskatīt un lejupielādēt CV. Kopīgojiet to savā profilā vai ar personāla atlases speciālistiem."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr "Vai esat pārliecināts, ka vēlaties dzēst šo objektu?"
|
msgstr "Vai esat pārliecināts, ka vēlaties dzēst šo objektu?"
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr "Rezerves kopijas kods"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Rezerves kopiju kodos drīkst būt tikai mazie burti vai cipari, un tiem jābūt tieši 10 rakstzīmēm."
|
msgstr "Rezerves kopiju kodos drīkst būt tikai mazie burti vai cipari, un tiem jābūt tieši 10 rakstzīmēm."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr "Izgatavots ar"
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr "Sabiedrība - sabiedrībai un sabiedrībai."
|
msgstr "Sabiedrība - sabiedrībai un sabiedrībai."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr "Jaunās paroles apstiprināšana"
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Turpināt"
|
msgstr "Turpināt"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Kopēt"
|
msgstr "Kopēt"
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr "Kopēt saiti uz CV"
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr "Kopēt uz starpliktuvi"
|
msgstr "Kopēt uz starpliktuvi"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr "Izveidot"
|
msgstr "Izveidot"
|
||||||
@ -328,7 +328,7 @@ msgstr "Izveidot"
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr "Izveidot jaunu kontu"
|
msgstr "Izveidot jaunu kontu"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr "Izveidot jaunu elementu"
|
msgstr "Izveidot jaunu elementu"
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr "Datums"
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Datums vai datuma diapazons"
|
msgstr "Datums vai datuma diapazons"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr "Lejupielādēt PDF"
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr "Lejupielādes"
|
msgstr "Lejupielādes"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr "Dublikāts"
|
msgstr "Dublikāts"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr "Esoša vienuma dublēšana"
|
msgstr "Esoša vienuma dublēšana"
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr "Esoša vienuma dublēšana"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Esoša CV dublēšana"
|
msgstr "Esoša CV dublēšana"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Rediģēt"
|
msgstr "Rediģēt"
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr "Fontu varianti"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "Piemēram, šeit var norādīt informāciju par to, kuriem uzņēmumiem nosūtījāt šo CV, vai saites uz darba aprakstiem."
|
msgstr "Piemēram, šeit var norādīt informāciju par to, kuriem uzņēmumiem nosūtījāt šo CV, vai saites uz darba aprakstiem."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Aizmirstiet"
|
msgstr "Aizmirstiet"
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr "Šeit varat atjaunināt konta informāciju, piemēram, profila attēlu,
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr "Šeit varat atjaunināt savu profilu, lai pielāgotu un personalizētu savu pieredzi."
|
msgstr "Šeit varat atjaunināt savu profilu, lai pielāgotu un personalizētu savu pieredzi."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Slēptais"
|
msgstr "Slēptais"
|
||||||
@ -690,7 +690,7 @@ msgstr "Publiski izvietojiet savu CV"
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr "Man vienmēr patīk saņemt atsauksmes vai atbalstu no Reactive Resume lietotājiem. Šeit ir daži no saņemtajiem ziņojumiem. Ja jums ir kādas atsauksmes, rakstiet man uz e-pasta adresi <0>{email}</0>."
|
msgstr "Man vienmēr patīk saņemt atsauksmes vai atbalstu no Reactive Resume lietotājiem. Šeit ir daži no saņemtajiem ziņojumiem. Ja jums ir kādas atsauksmes, rakstiet man uz e-pasta adresi <0>{email}</0>."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr "Ikona"
|
msgstr "Ikona"
|
||||||
@ -793,9 +793,9 @@ msgstr "john.doe@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Atslēgas vārdi"
|
msgstr "Atslēgas vārdi"
|
||||||
@ -809,7 +809,7 @@ msgstr "Etiķete"
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Valoda"
|
msgstr "Valoda"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr "Pēdējo reizi atjaunināts {lastUpdated}"
|
msgstr "Pēdējo reizi atjaunināts {lastUpdated}"
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr "Atrašanās vieta"
|
msgstr "Atrašanās vieta"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr "2023. gada marts - klāt"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Rezerve"
|
msgstr "Rezerve"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "MIT licence"
|
msgstr "MIT licence"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nosaukums"
|
msgstr "Nosaukums"
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nosaukums"
|
msgstr "Nosaukums"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Tīkls"
|
msgstr "Tīkls"
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr "Piezīme: Tādējādi jūsu konts kļūs mazāk drošs."
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Piezīmes"
|
msgstr "Piezīmes"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr "Vienreizēja parole"
|
msgstr "Vienreizēja parole"
|
||||||
@ -984,7 +980,7 @@ msgstr "Vienreizēja parole"
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr "Ak, serveris atdeva kļūdu."
|
msgstr "Ak, serveris atdeva kļūdu."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr "Atvērt"
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr "Atvērtā pirmkoda programmatūra"
|
msgstr "Atvērtā pirmkoda programmatūra"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr "OpenAI neatgrieza nevienu jūsu teksta izvēli."
|
msgstr "OpenAI neatgrieza nevienu jūsu teksta izvēli."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "OpenAI integrācija"
|
msgstr "OpenAI integrācija"
|
||||||
|
|
||||||
|
#: 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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr "Pozīcija"
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr "Powered by"
|
msgstr "Powered by"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr "Darbojas ar <0>vienkāršām ikonām</0>"
|
msgstr "Darbojas ar <0>vienkāršām ikonām</0>"
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr "Reactive Resume plaukst, pateicoties tā dinamiskajai kopienai. Šis pro
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Pārtaisīt"
|
msgstr "Pārtaisīt"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Noņemt"
|
msgstr "Noņemt"
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr "Noņemt lapu"
|
msgstr "Noņemt lapu"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr "Bagātīgas funkcijas, bet ne cenas."
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr "Noapaļots"
|
msgstr "Noapaļots"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Izmaiņu saglabāšana"
|
msgstr "Izmaiņu saglabāšana"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr "Tēma"
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr "Notika kļūda, savienojoties ar pārlūkprogrammu. Lūdzu, pārliecinieties, vai darbojas \"chrome\" un vai tas ir sasniedzams."
|
msgstr "Notika kļūda, savienojoties ar pārlūkprogrammu. Lūdzu, pārliecinieties, vai darbojas \"chrome\" un vai tas ir sasniedzams."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr "Šo darbību var atcelt, noklikšķinot uz pogas atsaukt peldošajā rīkjoslā."
|
msgstr "Šo darbību var atcelt, noklikšķinot uz pogas atsaukt peldošajā rīkjoslā."
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr "Atcelt"
|
msgstr "Atcelt"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr "Atbloķējot CV, tajā atkal varēsiet veikt izmaiņas."
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr "Nepārbaudīts"
|
msgstr "Nepārbaudīts"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr "Atjaunināt esošu elementu"
|
msgstr "Atjaunināt esošu elementu"
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr "Lietotājam nav saistītā ieraksta \"noslēpumi\". Lūdzu, ziņojiet par šo problēmu GitHub."
|
msgstr "Lietotājam nav saistītā ieraksta \"noslēpumi\". Lūdzu, ziņojiet par šo problēmu GitHub."
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr "Lietotājvārds"
|
msgstr "Lietotājvārds"
|
||||||
@ -1610,7 +1609,7 @@ msgstr "Apstiprināt"
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr "Apstiprināts"
|
msgstr "Apstiprināts"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Vērtība"
|
msgstr "Vērtība"
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr "Versija 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Skati"
|
msgstr "Skati"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Redzams"
|
msgstr "Redzams"
|
||||||
|
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr "Mēs pārbaudām jūsu e-pasta adresi tikai tādēļ, lai nodrošinātu, ka varam jums nosūtīt paroles atiestatīšanas saiti gadījumā, ja esat aizmirsis paroli."
|
msgstr "Mēs pārbaudām jūsu e-pasta adresi tikai tādēļ, lai nodrošinātu, ka varam jums nosūtīt paroles atiestatīšanas saiti gadījumā, ja esat aizmirsis paroli."
|
||||||
@ -1648,7 +1651,7 @@ 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/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr "Tīmekļa vietne"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Jaunumi jaunākajā versijā"
|
msgstr "Jaunumi jaunākajā versijā"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Varat pievienot vairākus atslēgvārdus, atdalot tos ar komatu vai nospiežot enter."
|
msgstr "Varat pievienot vairākus atslēgvārdus, atdalot tos ar komatu vai nospiežot enter."
|
||||||
@ -1672,11 +1675,11 @@ msgstr "Varat pievienot vairākus atslēgvārdus, atdalot tos ar komatu vai nosp
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Varat arī ievadīt savu lietotājvārdu."
|
msgstr "Varat arī ievadīt savu lietotājvārdu."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
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."
|
msgstr "Varat izmantot OpenAI API, lai palīdzētu jums ģenerēt saturu vai uzlabot rakstīšanu, veidojot CV."
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr "Varat izmantot OpenAI API, lai palīdzētu jums ģenerēt saturu vai uzl
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Iespējot publisko kopīgošanu, varat sekot līdzi tam, cik skatījumu ir saņemts jūsu CV vai cik daudz cilvēku ir lejupielādējuši CV."
|
msgstr "Iespējot publisko kopīgošanu, varat sekot līdzi tam, cik skatījumu ir saņemts jūsu CV vai cik daudz cilvēku ir lejupielādējuši CV."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "Jums ir iespēja <0>iegūt savu OpenAI API atslēgu</0>. Šī atslēga ļauj jums izmantot API pēc saviem ieskatiem. Ja vēlaties pilnībā atslēgt mākslīgā intelekta funkcijas Reactive Resume, varat arī vienkārši no iestatījumiem noņemt atslēgu."
|
msgstr "Jums ir iespēja <0>iegūt savu OpenAI API atslēgu</0>. Šī atslēga ļauj jums izmantot API pēc saviem ieskatiem. Ja vēlaties pilnībā atslēgt mākslīgā intelekta funkcijas Reactive Resume, varat arī vienkārši no iestatījumiem noņemt atslēgu."
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr "Jūs esat saņēmis pastu!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Jūsu konts un visi dati ir veiksmīgi dzēsti. Uz redzēšanos!"
|
msgstr "Jūsu konts un visi dati ir veiksmīgi dzēsti. Uz redzēšanos!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "Jūsu API atslēga tiek droši glabāta pārlūkprogrammas lokālajā atmiņā un tiek izmantota tikai tad, kad tiek veikti pieprasījumi OpenAI, izmantojot oficiālo SDK. Esiet droši, ka jūsu atslēga netiek pārsūtīta nevienam ārējam serverim, izņemot gadījumus, kad notiek mijiedarbība ar OpenAI pakalpojumiem."
|
msgstr "Jūsu API atslēga tiek droši glabāta pārlūkprogrammas lokālajā atmiņā un tiek izmantota tikai tad, kad tiek veikti pieprasījumi OpenAI, izmantojot oficiālo SDK. Esiet droši, ka jūsu atslēga netiek pārsūtīta nevienam ārējam serverim, izņemot gadījumus, kad notiek mijiedarbība ar OpenAI pakalpojumiem."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: ml\n"
|
"Language: ml\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:13\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Malayalam\n"
|
"Language-Team: Malayalam\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -38,7 +38,7 @@ msgstr ""
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr ""
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -146,7 +146,7 @@ msgstr ""
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr ""
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr ""
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr ""
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr ""
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -328,7 +328,7 @@ msgstr ""
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr ""
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr ""
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr ""
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr ""
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr ""
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -690,7 +690,7 @@ msgstr ""
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -793,9 +793,9 @@ msgstr ""
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -809,7 +809,7 @@ msgstr ""
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr ""
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr ""
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -984,7 +980,7 @@ msgstr ""
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr ""
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: 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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr ""
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr ""
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr ""
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr ""
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr ""
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1610,7 +1609,7 @@ msgstr ""
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr ""
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr ""
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1648,7 +1651,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr ""
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1672,11 +1675,11 @@ msgstr ""
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr ""
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr ""
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: mr\n"
|
"Language: mr\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:13\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Marathi\n"
|
"Language-Team: Marathi\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -38,7 +38,7 @@ msgstr ""
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr "केवळ {accept} फाइल स्वीकारल्या ज
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr "खाते"
|
msgstr "खाते"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr "सानुकूल रकाना जोडा"
|
msgstr "सानुकूल रकाना जोडा"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "नवीन वस्तू जोडा"
|
msgstr "नवीन वस्तू जोडा"
|
||||||
@ -146,7 +146,7 @@ msgstr "ही लिंक ज्यांच्याकडे असेल
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr "तुम्हाला ही वस्तू नक्की काढून टाकायची आहे का?"
|
msgstr "तुम्हाला ही वस्तू नक्की काढून टाकायची आहे का?"
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr "बॅकअप कोड"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "पायाभूत URL"
|
msgstr "पायाभूत URL"
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr "याने बनवले:"
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr "समाजाने, समाजासाठी."
|
msgstr "समाजाने, समाजासाठी."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr ""
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "पुढे"
|
msgstr "पुढे"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "कॉपी करा"
|
msgstr "कॉपी करा"
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr "रेझ्युमेची लिंक कॉपी करा"
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr "क्लिपबोर्डवर कॉपी करा"
|
msgstr "क्लिपबोर्डवर कॉपी करा"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr "बनवा"
|
msgstr "बनवा"
|
||||||
@ -328,7 +328,7 @@ msgstr "बनवा"
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr "नवीन खाते बनवा"
|
msgstr "नवीन खाते बनवा"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr "नवीन वस्तू बनवा"
|
msgstr "नवीन वस्तू बनवा"
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr "तारीख"
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "तारीख किंवा तारीख श्रेणी"
|
msgstr "तारीख किंवा तारीख श्रेणी"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr "PDF डाउनलोड करा"
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr "डाउनलोड"
|
msgstr "डाउनलोड"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr "नक्कल"
|
msgstr "नक्कल"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr "अस्तित्वात असलेल्या वस्तूची नक्कल करा"
|
msgstr "अस्तित्वात असलेल्या वस्तूची नक्कल करा"
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr "अस्तित्वात असलेल्या वस्तू
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "अस्तित्वात असलेल्या रेझ्युमेची नक्कल करा"
|
msgstr "अस्तित्वात असलेल्या रेझ्युमेची नक्कल करा"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "संपादित करा"
|
msgstr "संपादित करा"
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr "फाँट प्रतिरूप"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "विसरा"
|
msgstr "विसरा"
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr ""
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "लपवलेले"
|
msgstr "लपवलेले"
|
||||||
@ -690,7 +690,7 @@ msgstr "सार्वजनिकरित्या आपला रेझ्
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr "आयकन"
|
msgstr "आयकन"
|
||||||
@ -793,9 +793,9 @@ msgstr "john.doe@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "कीवर्ड"
|
msgstr "कीवर्ड"
|
||||||
@ -809,7 +809,7 @@ msgstr "लेबल"
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "भाषा"
|
msgstr "भाषा"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr "याआधी {lastUpdated} ला अपडेट केले"
|
msgstr "याआधी {lastUpdated} ला अपडेट केले"
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr "स्थान"
|
msgstr "स्थान"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr "मार्च २०२३ - वर्तमान"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "सर्वाधिक टोकन"
|
msgstr "सर्वाधिक टोकन"
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr "सर्वाधिक टोकन"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "एमआयटी परवाना"
|
msgstr "एमआयटी परवाना"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "मॉडेल"
|
msgstr "मॉडेल"
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr "मॉडेल"
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "नाव"
|
msgstr "नाव"
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "नाव"
|
msgstr "नाव"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "नेटवर्क"
|
msgstr "नेटवर्क"
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr "टीप: याने आपले खाते कमी सुरक
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "टिपा"
|
msgstr "टिपा"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr "वन-टाइम पासवर्ड"
|
msgstr "वन-टाइम पासवर्ड"
|
||||||
@ -984,7 +980,7 @@ msgstr "वन-टाइम पासवर्ड"
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr "अरेरे, सर्व्हरला त्रुटी आढळली."
|
msgstr "अरेरे, सर्व्हरला त्रुटी आढळली."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr "उघडा"
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr "मुक्त स्रोत"
|
msgstr "मुक्त स्रोत"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: 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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr ""
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr ""
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "पुन्हा करा"
|
msgstr "पुन्हा करा"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "काढून टाका"
|
msgstr "काढून टाका"
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr "पान काढून टाका"
|
msgstr "पान काढून टाका"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr ""
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr "गोलाकार केलेले"
|
msgstr "गोलाकार केलेले"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "बदल सेव्ह करा"
|
msgstr "बदल सेव्ह करा"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "सेव्ह केले"
|
msgstr "सेव्ह केले"
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr "थीम"
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr "पूर्ववत करा"
|
msgstr "पूर्ववत करा"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr "रेझ्युमेचा कुलूप उघडून आपण
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr "अस्तित्वातील वस्तू अपडेट करा"
|
msgstr "अस्तित्वातील वस्तू अपडेट करा"
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr "वापरकर्तानाव"
|
msgstr "वापरकर्तानाव"
|
||||||
@ -1610,7 +1609,7 @@ msgstr ""
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "मूल्य"
|
msgstr "मूल्य"
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr "आवृत्ती ४"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "दृश्ये"
|
msgstr "दृश्ये"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "दृश्यमान"
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1648,7 +1651,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr "संकेतस्थळ"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "नवीनतम आवृत्तीत नवीन काय"
|
msgstr "नवीनतम आवृत्तीत नवीन काय"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1672,11 +1675,11 @@ msgstr ""
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "तुम्ही तुमचे युझरनेमसुद्धा प्रविष्ट करू शकता."
|
msgstr "तुम्ही तुमचे युझरनेमसुद्धा प्रविष्ट करू शकता."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr ""
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr "तुम्हाला मेल पाठवले आहे!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: ms\n"
|
"Language: ms\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:13\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Malay\n"
|
"Language-Team: Malay\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
@ -38,7 +38,7 @@ msgstr "<0>Saya membina Reaktif Resume kebanyakannya sendiri semasa masa lapang
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr "<0>Saya yakin aplikasi ini tidak sempurna, tetapi saya ingin ia menjadi sempurna.</0><1>Jika anda menghadapi sebarang isu semasa membuat resume anda, atau mempunyai idea yang boleh membantu anda dan pengguna lain dalam membuat resume anda dengan lebih mudah, sila berikan isu di repository atau hantar saya emel mengenainya.</1>"
|
msgstr "<0>Saya yakin aplikasi ini tidak sempurna, tetapi saya ingin ia menjadi sempurna.</0><1>Jika anda menghadapi sebarang isu semasa membuat resume anda, atau mempunyai idea yang boleh membantu anda dan pengguna lain dalam membuat resume anda dengan lebih mudah, sila berikan isu di repository atau hantar saya emel mengenainya.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr "<0>Nota: </0>Dengan menggunakan API OpenAI, anda mengakui dan menerima <1>terma penggunaan</1> dan <2>dasar privasi</2> yang digariskan oleh OpenAI. Sila ambil perhatian bahawa Reactive Resume tidak bertanggungjawab atas sebarang penggunaan perkhidmatan yang tidak betul atau tidak dibenarkan, dan sebarang akibat atau liabiliti yang timbul semata-mata bergantung kepada pengguna."
|
msgstr "<0>Nota: </0>Dengan menggunakan API OpenAI, anda mengakui dan menerima <1>terma penggunaan</1> dan <2>dasar privasi</2> yang digariskan oleh OpenAI. Sila ambil perhatian bahawa Reactive Resume tidak bertanggungjawab atas sebarang penggunaan perkhidmatan yang tidak betul atau tidak dibenarkan, dan sebarang akibat atau liabiliti yang timbul semata-mata bergantung kepada pengguna."
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr "Hanya menerima fail {accept}"
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr "Akaun"
|
msgstr "Akaun"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr "Tambahkan medan tersuai"
|
msgstr "Tambahkan medan tersuai"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Tambah item baru"
|
msgstr "Tambah item baru"
|
||||||
@ -146,7 +146,7 @@ msgstr "Sesiapa yang mempunyai pautan boleh melihat dan muat turun resume."
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr "Sesiapa dengan pautan ini boleh melihat dan memuat turun resume. Kongsi pada profil anda atau dengan perekrut."
|
msgstr "Sesiapa dengan pautan ini boleh melihat dan memuat turun resume. Kongsi pada profil anda atau dengan perekrut."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr "Adakah anda pasti ingin memadamkan item ini?"
|
msgstr "Adakah anda pasti ingin memadamkan item ini?"
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr "Kod Sandaran"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Kod Sandaran mungkin mengandungi huruf kecil atau nombor sahaja, dan mesti tepat 10 aksara."
|
msgstr "Kod Sandaran mungkin mengandungi huruf kecil atau nombor sahaja, dan mesti tepat 10 aksara."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "Pautan Asas"
|
msgstr "Pautan Asas"
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr "Dibina dengan"
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr "Oleh komuniti, untuk komuniti."
|
msgstr "Oleh komuniti, untuk komuniti."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr "Sahkan Kata Laluan Baru"
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Teruskan"
|
msgstr "Teruskan"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Salin"
|
msgstr "Salin"
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr "Salin Pautan ke Resume"
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr "Salin ke Papan Keratan"
|
msgstr "Salin ke Papan Keratan"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr "Cipta"
|
msgstr "Cipta"
|
||||||
@ -328,7 +328,7 @@ msgstr "Cipta"
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr "Cipta akaun baru"
|
msgstr "Cipta akaun baru"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr "Cipta item baru"
|
msgstr "Cipta item baru"
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr "Tarikh"
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Tarikh atau Julat Tarikh"
|
msgstr "Tarikh atau Julat Tarikh"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr "Muat turun PDF"
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr "Muat turun"
|
msgstr "Muat turun"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr "Duplikat"
|
msgstr "Duplikat"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr "Duplikat item yang sedia ada"
|
msgstr "Duplikat item yang sedia ada"
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr "Duplikat item yang sedia ada"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Duplikat resume sedia ada"
|
msgstr "Duplikat resume sedia ada"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Edit"
|
msgstr "Edit"
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr "Varian Fon"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "Sebagai contoh, maklumat mengenai syarikat-syarikat yang anda hantar resume ini atau pautan-pautan ke huraian pekerjaan boleh dicatatkan di sini."
|
msgstr "Sebagai contoh, maklumat mengenai syarikat-syarikat yang anda hantar resume ini atau pautan-pautan ke huraian pekerjaan boleh dicatatkan di sini."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Lupakan"
|
msgstr "Lupakan"
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr "Di sini, anda boleh mengemaskini maklumat akaun anda seperti gambar prof
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr "Di sini, anda boleh mengemaskini profil anda untuk menyesuaikan dan memperibadikan pengalaman anda."
|
msgstr "Di sini, anda boleh mengemaskini profil anda untuk menyesuaikan dan memperibadikan pengalaman anda."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Tersembunyi"
|
msgstr "Tersembunyi"
|
||||||
@ -690,7 +690,7 @@ msgstr "Menyimpan resume anda secara awam"
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr "Saya sentiasa sukakan mendengar dari pengguna-pengguna Reactive Resume dengan maklum balas atau sokongan. Berikut adalah beberapa mesej yang saya terima. Jika anda mempunyai sebarang maklum balas, jangan ragu untuk menghantar emel kepada saya di <0>{email}</0>."
|
msgstr "Saya sentiasa sukakan mendengar dari pengguna-pengguna Reactive Resume dengan maklum balas atau sokongan. Berikut adalah beberapa mesej yang saya terima. Jika anda mempunyai sebarang maklum balas, jangan ragu untuk menghantar emel kepada saya di <0>{email}</0>."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr "Ikon"
|
msgstr "Ikon"
|
||||||
@ -793,9 +793,9 @@ msgstr "john.doe@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Kata Kunci"
|
msgstr "Kata Kunci"
|
||||||
@ -809,7 +809,7 @@ msgstr "Label"
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Bahasa"
|
msgstr "Bahasa"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr "Terakhir dikemaskini {lastUpdated}"
|
msgstr "Terakhir dikemaskini {lastUpdated}"
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr "Lokasi"
|
msgstr "Lokasi"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr "Mac 2023 - Sekarang"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Margin"
|
msgstr "Margin"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "Tanda-tanda terbesar"
|
msgstr "Tanda-tanda terbesar"
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr "Tanda-tanda terbesar"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "Lesen MIT"
|
msgstr "Lesen MIT"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "Modal"
|
msgstr "Modal"
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr "Modal"
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nama"
|
msgstr "Nama"
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nama"
|
msgstr "Nama"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Rangkaian"
|
msgstr "Rangkaian"
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr "Nota: Ini akan menjadikan akaun anda kurang selamat."
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Nota"
|
msgstr "Nota"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr "Penggabung Ollama"
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr "Kata Laluan Sekali"
|
msgstr "Kata Laluan Sekali"
|
||||||
@ -984,7 +980,7 @@ msgstr "Kata Laluan Sekali"
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr "Ups, pelayan mengembalikan ralat."
|
msgstr "Ups, pelayan mengembalikan ralat."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr "Buka"
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr "Sumber Terbuka"
|
msgstr "Sumber Terbuka"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr "Kunci OpenAI/ Ollama"
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr "OpenAI tidak mengembalikan pilihan apa pun untuk teks anda."
|
msgstr "OpenAI tidak mengembalikan pilihan apa pun untuk teks anda."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "Integrasi OpenAI"
|
msgstr "Integrasi 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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr "Kedudukan"
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr "Dikuasakan oleh"
|
msgstr "Dikuasakan oleh"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr "Dikuasakan oleh <0>Simple Icons</0>"
|
msgstr "Dikuasakan oleh <0>Simple Icons</0>"
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr "Reactive Resume berkembang pesat berkat komuniti yang aktif. Projek ini
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Buat semula"
|
msgstr "Buat semula"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Keluarkan"
|
msgstr "Keluarkan"
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr "Buang Halaman"
|
msgstr "Buang Halaman"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr "Kaya dengan ciri-ciri, bukan harga."
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr "Bulat"
|
msgstr "Bulat"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Simpan Perubahan"
|
msgstr "Simpan Perubahan"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "Simpan di dalam computer"
|
msgstr "Simpan di dalam computer"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Disimpan"
|
msgstr "Disimpan"
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr "Tema"
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr "Terdapat ralat semasa menyambung ke pelayar. Sila pastikan 'chrome' sedang berfungsi dan boleh dihubungi."
|
msgstr "Terdapat ralat semasa menyambung ke pelayar. Sila pastikan 'chrome' sedang berfungsi dan boleh dihubungi."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr "Tindakan ini boleh dikembalikan dengan mengklik butang batal di toolbar terapung."
|
msgstr "Tindakan ini boleh dikembalikan dengan mengklik butang batal di toolbar terapung."
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr "Undurkan"
|
msgstr "Undurkan"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr "Membuka semula resume akan membolehkan anda membuat perubahan padanya se
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr "Belum disahkan"
|
msgstr "Belum disahkan"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr "Kemas kini item yang sedia ada"
|
msgstr "Kemas kini item yang sedia ada"
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr "Pengguna tidak mempunyai rekod 'rahsia' yang berkaitan. Sila laporkan isu ini di GitHub."
|
msgstr "Pengguna tidak mempunyai rekod 'rahsia' yang berkaitan. Sila laporkan isu ini di GitHub."
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr "Nama pengguna"
|
msgstr "Nama pengguna"
|
||||||
@ -1610,7 +1609,7 @@ msgstr "Sahkan"
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr "Disahkan"
|
msgstr "Disahkan"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Nilai"
|
msgstr "Nilai"
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr "Versi 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Pandangan"
|
msgstr "Pandangan"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Kelihatan"
|
msgstr "Kelihatan"
|
||||||
|
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr "Kami mengesahkan alamat emel anda hanya untuk memastikan bahawa kami boleh menghantar pautan set semula kata laluan jika anda lupa kata laluan anda."
|
msgstr "Kami mengesahkan alamat emel anda hanya untuk memastikan bahawa kami boleh menghantar pautan set semula kata laluan jika anda lupa kata laluan anda."
|
||||||
@ -1648,7 +1651,7 @@ msgstr "Kami mengesahkan alamat emel anda hanya untuk memastikan bahawa kami bol
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr "Laman web"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Apakah yang baru dalam versi terkini"
|
msgstr "Apakah yang baru dalam versi terkini"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Anda boleh menambah beberapa kata kunci dengan memisahkan mereka dengan koma atau menekan enter."
|
msgstr "Anda boleh menambah beberapa kata kunci dengan memisahkan mereka dengan koma atau menekan enter."
|
||||||
@ -1672,11 +1675,11 @@ msgstr "Anda boleh menambah beberapa kata kunci dengan memisahkan mereka dengan
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Anda juga boleh memasukkan nama pengguna anda."
|
msgstr "Anda juga boleh memasukkan nama pengguna anda."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 "Kamu boleh menggabungkan Ollama dengan tetapkan kunci API dan Pantan Asas ke Pautan Ollama cth. `http://localhost:11434/v1`. Kamu boleh ambil dan pilih modal sambil tetapkan jumlah tanda-tanda terbesar."
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
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."
|
msgstr "Anda boleh menggunakan API OpenAI untuk membantu anda menghasilkan kandungan, atau meningkatkan penulisan anda semasa menyusun resume anda."
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr "Anda boleh menggunakan API OpenAI untuk membantu anda menghasilkan kandu
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Anda boleh mengesan jumlah paparan resume anda telah diterima, atau berapa ramai orang yang telah memuat turun resume dengan membolehkan perkongsian awam."
|
msgstr "Anda boleh mengesan jumlah paparan resume anda telah diterima, atau berapa ramai orang yang telah memuat turun resume dengan membolehkan perkongsian awam."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "Anda mempunyai pilihan untuk <0>mendapatkan kunci API OpenAI anda sendiri</0>. Kunci ini membolehkan anda menggunakan API sebagaimana yang anda lihat sesuai. Atau, jika anda ingin menyahdayakan ciri-ciri KI dalam Resume Reaktif sepenuhnya, anda boleh membuang kunci itu dari tetapan anda."
|
msgstr "Anda mempunyai pilihan untuk <0>mendapatkan kunci API OpenAI anda sendiri</0>. Kunci ini membolehkan anda menggunakan API sebagaimana yang anda lihat sesuai. Atau, jika anda ingin menyahdayakan ciri-ciri KI dalam Resume Reaktif sepenuhnya, anda boleh membuang kunci itu dari tetapan anda."
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr "Anda telah menerima emel!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Akaun dan semua data anda telah berjaya dipadam. Selamat tinggal!"
|
msgstr "Akaun dan semua data anda telah berjaya dipadam. Selamat tinggal!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "Kunci API anda disimpan dengan selamat dalam storan tempatan pelayar dan hanya digunakan apabila membuat permintaan kepada OpenAI melalui SDK rasmi mereka. Kita yakin bahawa kunci anda tidak dihantar ke mana-mana pelayan luar kecuali semasa berinteraksi dengan perkhidmatan OpenAI."
|
msgstr "Kunci API anda disimpan dengan selamat dalam storan tempatan pelayar dan hanya digunakan apabila membuat permintaan kepada OpenAI melalui SDK rasmi mereka. Kita yakin bahawa kunci anda tidak dihantar ke mana-mana pelayan luar kecuali semasa berinteraksi dengan perkhidmatan OpenAI."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: ne\n"
|
"Language: ne\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:13\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Nepali\n"
|
"Language-Team: Nepali\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -38,7 +38,7 @@ msgstr ""
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr ""
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -146,7 +146,7 @@ msgstr ""
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr ""
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr ""
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr ""
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr ""
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -328,7 +328,7 @@ msgstr ""
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr ""
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr ""
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr ""
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr ""
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr ""
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -690,7 +690,7 @@ msgstr ""
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -793,9 +793,9 @@ msgstr ""
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -809,7 +809,7 @@ msgstr ""
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr ""
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr ""
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -984,7 +980,7 @@ msgstr ""
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr ""
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: 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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr ""
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr ""
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr ""
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr ""
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr ""
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1610,7 +1609,7 @@ msgstr ""
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr ""
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr ""
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1648,7 +1651,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr ""
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1672,11 +1675,11 @@ msgstr ""
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr ""
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr ""
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: nl\n"
|
"Language: nl\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:13\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Dutch\n"
|
"Language-Team: Dutch\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -38,7 +38,7 @@ msgstr "<0>Ik heb Reactive Resume grotendeels zelf gebouwd in mijn vrije tijd, m
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr "<0>Ik weet zeker dat de app niet perfect is, maar dat zou ik wel graag willen.</0><1>Als u problemen ondervond bij het maken van uw cv, of een idee hebt dat u en andere gebruikers zou helpen bij het gemakkelijker maken van uw cv, stuur dan een bericht naar de repository of stuur mij een e-mail hierover.</1>"
|
msgstr "<0>Ik weet zeker dat de app niet perfect is, maar dat zou ik wel graag willen.</0><1>Als u problemen ondervond bij het maken van uw cv, of een idee hebt dat u en andere gebruikers zou helpen bij het gemakkelijker maken van uw cv, stuur dan een bericht naar de repository of stuur mij een e-mail hierover.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr "<0>Opmerking: </0>Door gebruik te maken van de OpenAI API, erkent en aanvaardt u de <1>gebruiksvoorwaarden</1> en <2>het privacybeleid</2> van OpenAI. Houd er rekening mee dat Reactive Resume geen verantwoordelijkheid draagt voor onjuist of ongeautoriseerd gebruik van de service, en dat alle daaruit voortvloeiende gevolgen of aansprakelijkheden uitsluitend op de gebruiker rusten."
|
msgstr "<0>Opmerking: </0>Door gebruik te maken van de OpenAI API, erkent en aanvaardt u de <1>gebruiksvoorwaarden</1> en <2>het privacybeleid</2> van OpenAI. Houd er rekening mee dat Reactive Resume geen verantwoordelijkheid draagt voor onjuist of ongeautoriseerd gebruik van de service, en dat alle daaruit voortvloeiende gevolgen of aansprakelijkheden uitsluitend op de gebruiker rusten."
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr "Accepteert alleen {accept} bestanden"
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr "Account"
|
msgstr "Account"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr "Aangepast veld toevoegen"
|
msgstr "Aangepast veld toevoegen"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Een nieuw item toevoegen"
|
msgstr "Een nieuw item toevoegen"
|
||||||
@ -146,7 +146,7 @@ msgstr "Iedereen met de link kan het CV bekijken en downloaden."
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr "Iedereen met deze link kan het CV bekijken en downloaden. Deel het op je profiel of met recruiters."
|
msgstr "Iedereen met deze link kan het CV bekijken en downloaden. Deel het op je profiel of met recruiters."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr "Weet u zeker dat u dit item wilt verwijderen?"
|
msgstr "Weet u zeker dat u dit item wilt verwijderen?"
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr "Back-up code"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Back-upcodes mogen alleen kleine letters of cijfers bevatten en moeten exact 10 tekens lang zijn."
|
msgstr "Back-upcodes mogen alleen kleine letters of cijfers bevatten en moeten exact 10 tekens lang zijn."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "Basis URL"
|
msgstr "Basis URL"
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr "Ontwikkeld met"
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr "Door de gemeenschap, voor de gemeenschap."
|
msgstr "Door de gemeenschap, voor de gemeenschap."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr "Nieuw Wachtwoord Bevestigen"
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Hervatten"
|
msgstr "Hervatten"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Kopiëren"
|
msgstr "Kopiëren"
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr "Link naar CV Kopiëren"
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr "Naar Klembord Kopiëren"
|
msgstr "Naar Klembord Kopiëren"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr "Aanmaken"
|
msgstr "Aanmaken"
|
||||||
@ -328,7 +328,7 @@ msgstr "Aanmaken"
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr "Maak een nieuw account aan"
|
msgstr "Maak een nieuw account aan"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr "Maak een nieuw item aan"
|
msgstr "Maak een nieuw item aan"
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr "Datum"
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Datum of Datumbereik"
|
msgstr "Datum of Datumbereik"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr "Download PDF"
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr "Downloads"
|
msgstr "Downloads"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr "Dupliceer"
|
msgstr "Dupliceer"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr "Een bestaand item dupliceren"
|
msgstr "Een bestaand item dupliceren"
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr "Een bestaand item dupliceren"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Een bestaand cv dupliceren"
|
msgstr "Een bestaand cv dupliceren"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Wijzigen"
|
msgstr "Wijzigen"
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr "Lettertypevarianten"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "Hier kunt u bijvoorbeeld informatie noteren over naar welke bedrijven u deze CV hebt gestuurd, of de links naar de functiebeschrijvingen."
|
msgstr "Hier kunt u bijvoorbeeld informatie noteren over naar welke bedrijven u deze CV hebt gestuurd, of de links naar de functiebeschrijvingen."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Vergeten"
|
msgstr "Vergeten"
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr "Hier kunt u uw account informatie bijwerken, zoals uw profielfoto, naam
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr "Hier kunt u uw profiel bijwerken om uw ervaring aan te passen en te personaliseren."
|
msgstr "Hier kunt u uw profiel bijwerken om uw ervaring aan te passen en te personaliseren."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Verborgen"
|
msgstr "Verborgen"
|
||||||
@ -690,7 +690,7 @@ msgstr "Publiceer uw CV"
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr "Ik hoor altijd graag feedback of ondersteuning van de gebruikers van Reactive Resume. Hier zijn enkele berichten die ik heb ontvangen. Als u feedback hebt, stuur mij dan een e-mail op <0>{email}</0>."
|
msgstr "Ik hoor altijd graag feedback of ondersteuning van de gebruikers van Reactive Resume. Hier zijn enkele berichten die ik heb ontvangen. Als u feedback hebt, stuur mij dan een e-mail op <0>{email}</0>."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr "Pictogram"
|
msgstr "Pictogram"
|
||||||
@ -793,9 +793,9 @@ msgstr "jan.janssen@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Sleutelwoorden"
|
msgstr "Sleutelwoorden"
|
||||||
@ -809,7 +809,7 @@ msgstr "Label"
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Taal"
|
msgstr "Taal"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr "Laatst bijgewerkt {lastUpdated}"
|
msgstr "Laatst bijgewerkt {lastUpdated}"
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr "Locatie"
|
msgstr "Locatie"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr "maart 2023 - Heden"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Marge"
|
msgstr "Marge"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "Maximum aantal tokens"
|
msgstr "Maximum aantal tokens"
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr "Maximum aantal tokens"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "MIT Licentie"
|
msgstr "MIT Licentie"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "Model"
|
msgstr "Model"
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr "Model"
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Naam"
|
msgstr "Naam"
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Naam"
|
msgstr "Naam"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Netwerk"
|
msgstr "Netwerk"
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr "Let op: Dit maakt uw account minder veilig."
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Aantekeningen"
|
msgstr "Aantekeningen"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr "Ollama integratie"
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr "Eenmalig Wachtwoord"
|
msgstr "Eenmalig Wachtwoord"
|
||||||
@ -984,7 +980,7 @@ msgstr "Eenmalig Wachtwoord"
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr "Oeps, de server gaf een fout."
|
msgstr "Oeps, de server gaf een fout."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr "Open"
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr "Open Source"
|
msgstr "Open Source"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr "OpenAI / Ollama API-sleutel"
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr "OpenAI gaf geen keuzen voor uw text."
|
msgstr "OpenAI gaf geen keuzen voor uw text."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "OpenAI-Integratie"
|
msgstr "OpenAI-Integratie"
|
||||||
|
|
||||||
|
#: 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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr "Positie"
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr "Mogelijk gemaakt door"
|
msgstr "Mogelijk gemaakt door"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr "Mogelijk gemaakt door <0>Simple Icons</0>"
|
msgstr "Mogelijk gemaakt door <0>Simple Icons</0>"
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr "Reactive Resume is succesvol dankzij de levendige gemeenschap. Dit proje
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Opnieuw"
|
msgstr "Opnieuw"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Verwijderen"
|
msgstr "Verwijderen"
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr "Pagina verwijderen"
|
msgstr "Pagina verwijderen"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr "Rijk aan functies, niet aan prijzen."
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr "Afgeronde hoeken"
|
msgstr "Afgeronde hoeken"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Wijzigingen Opslaan"
|
msgstr "Wijzigingen Opslaan"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "Lokaal opslaan"
|
msgstr "Lokaal opslaan"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Opgeslagen"
|
msgstr "Opgeslagen"
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr "Thema"
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr "Er is een fout opgetreden bij het verbinden met de browser. Zorg ervoor dat 'chrome' actief en bereikbaar is."
|
msgstr "Er is een fout opgetreden bij het verbinden met de browser. Zorg ervoor dat 'chrome' actief en bereikbaar is."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr "Deze actie kan u terugdraaien door op de knop 'Ongedaan maken' in de zwevende werkbalk te klikken."
|
msgstr "Deze actie kan u terugdraaien door op de knop 'Ongedaan maken' in de zwevende werkbalk te klikken."
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr "Ongedaan maken"
|
msgstr "Ongedaan maken"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr "Als je een CV ontgrendelt, kun je er opnieuw wijzigingen in aanbrengen."
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr "Niet geverifiëerd"
|
msgstr "Niet geverifiëerd"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr "Een bestaand item bijwerken"
|
msgstr "Een bestaand item bijwerken"
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr "De gebruiker heeft geen geassocieerde 'secrets' record. Gelieve dit probleem te rapporteren op GitHub."
|
msgstr "De gebruiker heeft geen geassocieerde 'secrets' record. Gelieve dit probleem te rapporteren op GitHub."
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr "Gebruikersnaam"
|
msgstr "Gebruikersnaam"
|
||||||
@ -1610,7 +1609,7 @@ msgstr "Valideren"
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr "Gevalideerd"
|
msgstr "Gevalideerd"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Waarde"
|
msgstr "Waarde"
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr "Versie 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Weergaven"
|
msgstr "Weergaven"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Zichtbaar"
|
msgstr "Zichtbaar"
|
||||||
|
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr "Wij verifiëren uw e-mailadres enkel om ervoor te zorgen dat wij u een link kunnen sturen om uw wachtwoord opnieuw in te stellen, mocht u uw wachtwoord vergeten zijn."
|
msgstr "Wij verifiëren uw e-mailadres enkel om ervoor te zorgen dat wij u een link kunnen sturen om uw wachtwoord opnieuw in te stellen, mocht u uw wachtwoord vergeten zijn."
|
||||||
@ -1648,7 +1651,7 @@ msgstr "Wij verifiëren uw e-mailadres enkel om ervoor te zorgen dat wij u een l
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr "Website"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Wat is er nieuw in de laatste versie"
|
msgstr "Wat is er nieuw in de laatste versie"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "U kunt meerdere trefwoorden toevoegen door ze te scheiden met een komma of door op enter te drukken."
|
msgstr "U kunt meerdere trefwoorden toevoegen door ze te scheiden met een komma of door op enter te drukken."
|
||||||
@ -1672,11 +1675,11 @@ msgstr "U kunt meerdere trefwoorden toevoegen door ze te scheiden met een komma
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "U kunt ook uw gebruikersnaam invoeren."
|
msgstr "U kunt ook uw gebruikersnaam invoeren."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 "U kunt met Ollama integreren door de API-sleutel simpelweg in te stellen op `sk-1234567890abcdef` en de basis-URL naar uw Ollama-URL, i.. `http://localhost:11434/v1`. Je kunt ook modellen kiezen en de max tokens instellen."
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||||
msgstr "U kunt gebruik maken van de OpenAI API om tekst te genereren, of om uw schrijfvaardigheid te verbeteren bij het opstellen van uw CV."
|
msgstr "U kunt gebruik maken van de OpenAI API om tekst te genereren, of om uw schrijfvaardigheid te verbeteren bij het opstellen van uw CV."
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr "U kunt gebruik maken van de OpenAI API om tekst te genereren, of om uw s
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Door openbaar delen in te schakelen, kunt u bijhouden hoeveel keer uw cv is bekeken en hoeveel mensen uw cv gedownload hebben."
|
msgstr "Door openbaar delen in te schakelen, kunt u bijhouden hoeveel keer uw cv is bekeken en hoeveel mensen uw cv gedownload hebben."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "U heeft de mogelijkheid om <0>uw eigen OpenAI API-sleutel te verkrijgen</0>. Met deze sleutel kunt u de API naar eigen inzicht gebruiken. Als u de AI-functies in Reactive Resume helemaal wilt uitschakelen, kunt u de sleutel ook gewoon uit uw instellingen verwijderen."
|
msgstr "U heeft de mogelijkheid om <0>uw eigen OpenAI API-sleutel te verkrijgen</0>. Met deze sleutel kunt u de API naar eigen inzicht gebruiken. Als u de AI-functies in Reactive Resume helemaal wilt uitschakelen, kunt u de sleutel ook gewoon uit uw instellingen verwijderen."
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr "Je hebt een mail ontvangen!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Uw account en al uw gegevens zijn succesvol verwijderd. Tot ziens!"
|
msgstr "Uw account en al uw gegevens zijn succesvol verwijderd. Tot ziens!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "Uw API-sleutel wordt veilig opgeslagen in de lokale opslag van de browser en wordt alleen gebruikt bij het doen van verzoeken aan OpenAI via hun officiële SDK. U kunt erop vertrouwen dat uw sleutel niet naar een externe server wordt verzonden, behalve tijdens interactie met diensten van OpenAI."
|
msgstr "Uw API-sleutel wordt veilig opgeslagen in de lokale opslag van de browser en wordt alleen gebruikt bij het doen van verzoeken aan OpenAI via hun officiële SDK. U kunt erop vertrouwen dat uw sleutel niet naar een externe server wordt verzonden, behalve tijdens interactie met diensten van OpenAI."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: no\n"
|
"Language: no\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:13\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Norwegian\n"
|
"Language-Team: Norwegian\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -38,7 +38,7 @@ msgstr "<0>Jeg bygde Reactive Resume for det meste alene på fritiden, med mye h
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr "<0>Jeg er sikker på at appen ikke er perfekt, men jeg vil gjerne at den skal være det.</0><1>Hvis du har møtt på noen problemer mens du lagde CV-en din, eller har en idé som ville hjulpet deg selv eller andre brukere med å lage CV-en din mer enkelt, legg inn et problem på GitHub Repository eller send meg en e-post om det.</1>"
|
msgstr "<0>Jeg er sikker på at appen ikke er perfekt, men jeg vil gjerne at den skal være det.</0><1>Hvis du har møtt på noen problemer mens du lagde CV-en din, eller har en idé som ville hjulpet deg selv eller andre brukere med å lage CV-en din mer enkelt, legg inn et problem på GitHub Repository eller send meg en e-post om det.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr "<0>Merk:</0> Ved å bruke OpenAI API, erkjenner og godtar du <1>bruksvilkårene</1> og <2>personvernreglene</2> skissert av OpenAI. Vær oppmerksom på at Reactive Resume ikke har noe ansvar for feil eller uautorisert bruk av tjenesten, og eventuelle følgevirkninger eller ansvar hviler utelukkende på brukeren."
|
msgstr "<0>Merk:</0> Ved å bruke OpenAI API, erkjenner og godtar du <1>bruksvilkårene</1> og <2>personvernreglene</2> skissert av OpenAI. Vær oppmerksom på at Reactive Resume ikke har noe ansvar for feil eller uautorisert bruk av tjenesten, og eventuelle følgevirkninger eller ansvar hviler utelukkende på brukeren."
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr "Godtar kun {accept} filer"
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr "Konto"
|
msgstr "Konto"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr "Legg til egendefinert felt"
|
msgstr "Legg til egendefinert felt"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Legg til nytt element"
|
msgstr "Legg til nytt element"
|
||||||
@ -146,7 +146,7 @@ msgstr "Alle med linken kan se og laste ned CV-en."
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr "Alle som har denne lenken kan se og laste ned CVen. Del den på profilen din eller med rekrutterere."
|
msgstr "Alle som har denne lenken kan se og laste ned CVen. Del den på profilen din eller med rekrutterere."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr "Er du sikker på at du vil slette dette elementet?"
|
msgstr "Er du sikker på at du vil slette dette elementet?"
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr "Sikkerhetskopi-kode"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Sikkerhetskopi-koder kan bare inneholde små bokstaver eller tall, og må være nøyaktig 10 tegn."
|
msgstr "Sikkerhetskopi-koder kan bare inneholde små bokstaver eller tall, og må være nøyaktig 10 tegn."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "Basis-URL"
|
msgstr "Basis-URL"
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr "Bygget med"
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr "Av fellesskapet, for fellesskapet."
|
msgstr "Av fellesskapet, for fellesskapet."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr "Bekreft Nytt Passord"
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Fortsett"
|
msgstr "Fortsett"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Kopier"
|
msgstr "Kopier"
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr "Kopier Lenke til CV"
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr "Kopier til utklipstavlen"
|
msgstr "Kopier til utklipstavlen"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr "Opprett"
|
msgstr "Opprett"
|
||||||
@ -328,7 +328,7 @@ msgstr "Opprett"
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr "Opprett ny konto"
|
msgstr "Opprett ny konto"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr "Opprett nytt element"
|
msgstr "Opprett nytt element"
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr "Dato"
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Dato eller Datoperiode"
|
msgstr "Dato eller Datoperiode"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr "Last ned PDF"
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr "Nedlastinger"
|
msgstr "Nedlastinger"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr "Dupliser"
|
msgstr "Dupliser"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr "Dupliser et eksisterende element"
|
msgstr "Dupliser et eksisterende element"
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr "Dupliser et eksisterende element"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Dupliser en eksisterende CV"
|
msgstr "Dupliser en eksisterende CV"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Rediger"
|
msgstr "Rediger"
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr "Skriftvarianter"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "For eksempel kan du notere informasjon om hvilke selskaper du har sendt denne CV-en til eller lenkene til stillingsbeskrivelsene her."
|
msgstr "For eksempel kan du notere informasjon om hvilke selskaper du har sendt denne CV-en til eller lenkene til stillingsbeskrivelsene her."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Glem"
|
msgstr "Glem"
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr "Her kan du oppdatere kontoinformasjonen din, som profilbildet, navnet og
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr "Her kan du oppdatere profilen din for å tilpasse og personliggjøre opplevelsen din."
|
msgstr "Her kan du oppdatere profilen din for å tilpasse og personliggjøre opplevelsen din."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Skjult"
|
msgstr "Skjult"
|
||||||
@ -690,7 +690,7 @@ msgstr "Publiser CV-en din offentlig"
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr "Jeg elsker alltid å høre fra brukerne av Reactive Resume med tilbakemeldinger eller støtte. Her er noen av tilbakemeldingene jeg har mottatt. Hvis du har en tilbakemelding, send meg gjerne en e-post på <0>{email}</0>."
|
msgstr "Jeg elsker alltid å høre fra brukerne av Reactive Resume med tilbakemeldinger eller støtte. Her er noen av tilbakemeldingene jeg har mottatt. Hvis du har en tilbakemelding, send meg gjerne en e-post på <0>{email}</0>."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr "Ikon"
|
msgstr "Ikon"
|
||||||
@ -793,9 +793,9 @@ msgstr "ola.nordmann@eksempel.no"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Nøkkelord"
|
msgstr "Nøkkelord"
|
||||||
@ -809,7 +809,7 @@ msgstr "Merke"
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Språk"
|
msgstr "Språk"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr "Sist oppdatert {lastUpdated}"
|
msgstr "Sist oppdatert {lastUpdated}"
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr "Sted"
|
msgstr "Sted"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr "Mars 2023 - Nåværende"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Margin"
|
msgstr "Margin"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "Maks antall tegn"
|
msgstr "Maks antall tegn"
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr "Maks antall tegn"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "MIT-lisens"
|
msgstr "MIT-lisens"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "Modell"
|
msgstr "Modell"
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr "Modell"
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Navn"
|
msgstr "Navn"
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Navn"
|
msgstr "Navn"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Nettverk"
|
msgstr "Nettverk"
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr "Merk: Dette vil gjøre kontoen din mindre sikker."
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Notater"
|
msgstr "Notater"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr "Ollama integrasjon"
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr "Engangspassord"
|
msgstr "Engangspassord"
|
||||||
@ -984,7 +980,7 @@ msgstr "Engangspassord"
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr "Oops, serveren returnerte en feil."
|
msgstr "Oops, serveren returnerte en feil."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr "Åpen"
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr "Åpen Kildekode"
|
msgstr "Åpen Kildekode"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr "OpenAI / Ollama API nøkkel"
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr "OpenAI returnerte ingen valg for teksten din."
|
msgstr "OpenAI returnerte ingen valg for teksten din."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "OpenAI-integrasjon"
|
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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr "Posisjon"
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr "Drevet av"
|
msgstr "Drevet av"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr "Drevet av <0>Simple Icons</0>"
|
msgstr "Drevet av <0>Simple Icons</0>"
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr "Reactive Resume trives takket være sitt pulserende fellesskap. Dette pr
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Gjør om"
|
msgstr "Gjør om"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Fjern"
|
msgstr "Fjern"
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr "Fjern Side"
|
msgstr "Fjern Side"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr "Rik på funksjoner, ikke på pris."
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr "Avrundet"
|
msgstr "Avrundet"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Lagre Endringer"
|
msgstr "Lagre Endringer"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "Lagre lokalt"
|
msgstr "Lagre lokalt"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Lagret"
|
msgstr "Lagret"
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr "Tema"
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr "Det oppsto en feil ved tilkobling til nettleseren. Sørg for at 'chrome' kjører og er tilgjengelig."
|
msgstr "Det oppsto en feil ved tilkobling til nettleseren. Sørg for at 'chrome' kjører og er tilgjengelig."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr "Denne handlingen kan angres ved å klikke på tilbakestill-knappen i den flytende verktøylinjen."
|
msgstr "Denne handlingen kan angres ved å klikke på tilbakestill-knappen i den flytende verktøylinjen."
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr "Angre"
|
msgstr "Angre"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr "Å låse opp en CV vil tillate deg å gjøre endringer i den igjen."
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr "Ubekreftet"
|
msgstr "Ubekreftet"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr "Oppdater et eksisterende element"
|
msgstr "Oppdater et eksisterende element"
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr "Brukeren har ikke tilknyttet en 'secrets' oppføring. Vennligst rapporter dette problemet på GitHub."
|
msgstr "Brukeren har ikke tilknyttet en 'secrets' oppføring. Vennligst rapporter dette problemet på GitHub."
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr "Brukernavn"
|
msgstr "Brukernavn"
|
||||||
@ -1610,7 +1609,7 @@ msgstr "Valider"
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr "Validert"
|
msgstr "Validert"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Verdi"
|
msgstr "Verdi"
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr "Versjon 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Visninger"
|
msgstr "Visninger"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Synlig"
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr "Vi bekrefter e-postadressen din kun for å sikre at vi kan sende deg en lenke for tilbakestilling av passord i tilfelle du glemmer passordet ditt."
|
msgstr "Vi bekrefter e-postadressen din kun for å sikre at vi kan sende deg en lenke for tilbakestilling av passord i tilfelle du glemmer passordet ditt."
|
||||||
@ -1648,7 +1651,7 @@ msgstr "Vi bekrefter e-postadressen din kun for å sikre at vi kan sende deg en
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr "Nettsted"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Hva er nytt i den nyeste versjonen"
|
msgstr "Hva er nytt i den nyeste versjonen"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Du kan legge til flere nøkkelord ved å skille dem med et komma eller trykke enter."
|
msgstr "Du kan legge til flere nøkkelord ved å skille dem med et komma eller trykke enter."
|
||||||
@ -1672,11 +1675,11 @@ msgstr "Du kan legge til flere nøkkelord ved å skille dem med et komma eller t
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Du kan også skrive inn brukernavnet ditt."
|
msgstr "Du kan også skrive inn brukernavnet ditt."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 integrere med Ollama ved å sette API nøkkelen til `sk-1234567890abcdef` og Basis-lenken til Ollama lenken din, f.eks. `http://localhost:11434/v1`. Du kan også velge modeller og sette maks antall tegn."
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
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."
|
msgstr "Du kan bruke OpenAI API for å hjelpe deg med å generere innhold, eller forbedre skrivingen din mens du skriver din CV."
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr "Du kan bruke OpenAI API for å hjelpe deg med å generere innhold, eller
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Du kan spore antall visninger CV-en din har mottatt, eller hvor mange personer som har lastet ned CV-en ved å aktivere offentlig deling."
|
msgstr "Du kan spore antall visninger CV-en din har mottatt, eller hvor mange personer som har lastet ned CV-en ved å aktivere offentlig deling."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "Du har muligheten til å <0>skaffe din egen OpenAI API-nøkkel</0>. Denne nøkkelen gir deg mulighet til å utnytte API-en slik det passer deg. Alternativt, hvis du ønsker å deaktivere KI-funksjonene i Reactive Resume helt, kan du ganske enkelt fjerne nøkkelen fra innstillingene dine."
|
msgstr "Du har muligheten til å <0>skaffe din egen OpenAI API-nøkkel</0>. Denne nøkkelen gir deg mulighet til å utnytte API-en slik det passer deg. Alternativt, hvis du ønsker å deaktivere KI-funksjonene i Reactive Resume helt, kan du ganske enkelt fjerne nøkkelen fra innstillingene dine."
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr "Du har fått e-post!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Kontoen din og alle dataene dine er slettet. Ha det bra!"
|
msgstr "Kontoen din og alle dataene dine er slettet. Ha det bra!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "API-nøkkelen din er trygt lagret i nettleserens lokale lagring og brukes kun når du sender forespørsler til OpenAI via deres offisielle SDK. Du kan være trygg på at nøkkelen din ikke overføres til noen ekstern server bortsett fra når du samhandler med OpenAI's tjenester."
|
msgstr "API-nøkkelen din er trygt lagret i nettleserens lokale lagring og brukes kun når du sender forespørsler til OpenAI via deres offisielle SDK. Du kan være trygg på at nøkkelen din ikke overføres til noen ekstern server bortsett fra når du samhandler med OpenAI's tjenester."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: or\n"
|
"Language: or\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:13\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Odia\n"
|
"Language-Team: Odia\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -38,7 +38,7 @@ msgstr ""
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr ""
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -146,7 +146,7 @@ msgstr ""
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr ""
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr ""
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr ""
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr ""
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -328,7 +328,7 @@ msgstr ""
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr ""
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr ""
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr ""
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr ""
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr ""
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -690,7 +690,7 @@ msgstr ""
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -793,9 +793,9 @@ msgstr ""
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -809,7 +809,7 @@ msgstr ""
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr ""
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr ""
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -984,7 +980,7 @@ msgstr ""
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr ""
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: 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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr ""
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr ""
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr ""
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr ""
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr ""
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1610,7 +1609,7 @@ msgstr ""
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr ""
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr ""
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1648,7 +1651,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr ""
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1672,11 +1675,11 @@ msgstr ""
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr ""
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr ""
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: pl\n"
|
"Language: pl\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:13\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Polish\n"
|
"Language-Team: Polish\n"
|
||||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||||
@ -38,7 +38,7 @@ msgstr "<0>Zbudowałem Reactive Resume głównie sam w wolnym czasie, z dużą p
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr "<0>Jestem pewny, że aplikacja nie jest idealna, ale chciałbym, aby taka była.</0><1>Jeśli wystąpią jakiekolwiek problemy podczas tworzenia CV lub masz pomysł, który pomógłby Tobie i innym użytkownikom w łatwiejszym tworzeniu CV, zgłoś problem w repozytorium lub wyślij mi e-mail w tej sprawie.</1>"
|
msgstr "<0>Jestem pewny, że aplikacja nie jest idealna, ale chciałbym, aby taka była.</0><1>Jeśli wystąpią jakiekolwiek problemy podczas tworzenia CV lub masz pomysł, który pomógłby Tobie i innym użytkownikom w łatwiejszym tworzeniu CV, zgłoś problem w repozytorium lub wyślij mi e-mail w tej sprawie.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr "<0>Uwaga: </0>Korzystając z interfejsu API OpenAI, użytkownik przyjmuje do wiadomości i akceptuje <1>warunki użytkowania</1> i <2>politykę prywatności</2> określone przez OpenAI. Pamiętaj, że Reactive Resume nie ponosi żadnej odpowiedzialności za niewłaściwe lub nieautoryzowane korzystanie z usługi, a wszelkie wynikające z tego reperkusje lub zobowiązania spoczywają wyłącznie na użytkowniku."
|
msgstr "<0>Uwaga: </0>Korzystając z interfejsu API OpenAI, użytkownik przyjmuje do wiadomości i akceptuje <1>warunki użytkowania</1> i <2>politykę prywatności</2> określone przez OpenAI. Pamiętaj, że Reactive Resume nie ponosi żadnej odpowiedzialności za niewłaściwe lub nieautoryzowane korzystanie z usługi, a wszelkie wynikające z tego reperkusje lub zobowiązania spoczywają wyłącznie na użytkowniku."
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr "Akceptuje tylko pliki {accept}"
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr "Konto"
|
msgstr "Konto"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr "Dodaj niestandardowe pole"
|
msgstr "Dodaj niestandardowe pole"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Dodaj nowy element"
|
msgstr "Dodaj nowy element"
|
||||||
@ -146,7 +146,7 @@ msgstr "Każda osoba posiadająca link może wyświetlić i pobrać CV."
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr "Każda osoba posiadająca ten link może wyświetlić i pobrać CV. Udostępnij go na swoim profilu lub wyślij rekruterom."
|
msgstr "Każda osoba posiadająca ten link może wyświetlić i pobrać CV. Udostępnij go na swoim profilu lub wyślij rekruterom."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr "Czy na pewno chcesz usunąć ten element?"
|
msgstr "Czy na pewno chcesz usunąć ten element?"
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr "Kod Zapasowy"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Kody Zapasowe mogą zawierać wyłącznie małe litery lub cyfry i muszą mieć dokładnie 10 znaków."
|
msgstr "Kody Zapasowe mogą zawierać wyłącznie małe litery lub cyfry i muszą mieć dokładnie 10 znaków."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr "Wykorzystane technologie"
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr "Zbudowane przez społeczność dla społeczności."
|
msgstr "Zbudowane przez społeczność dla społeczności."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr "Potwierdź Nowe Hasło"
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Dalej"
|
msgstr "Dalej"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Kopiuj"
|
msgstr "Kopiuj"
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr "Skopiuj link do CV"
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr "Skopiuj do Schowka"
|
msgstr "Skopiuj do Schowka"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr "Stwórz"
|
msgstr "Stwórz"
|
||||||
@ -328,7 +328,7 @@ msgstr "Stwórz"
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr "Stwórz nowe konto"
|
msgstr "Stwórz nowe konto"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr "Stwórz nowy element"
|
msgstr "Stwórz nowy element"
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr "Data"
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Data lub zakres dat"
|
msgstr "Data lub zakres dat"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr "Pobierz PDF"
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr "Pliki do pobrania"
|
msgstr "Pliki do pobrania"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr "Duplikat"
|
msgstr "Duplikat"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr "Duplikuj istniejący element"
|
msgstr "Duplikuj istniejący element"
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr "Duplikuj istniejący element"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Zduplikuj istniejące CV"
|
msgstr "Zduplikuj istniejące CV"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Edytuj"
|
msgstr "Edytuj"
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr "Wariant Czcionki"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "Można tu na przykład zapisać informacje o firmach, do których wysłałeś to CV, lub linki do opisów stanowisk."
|
msgstr "Można tu na przykład zapisać informacje o firmach, do których wysłałeś to CV, lub linki do opisów stanowisk."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Zapomnij"
|
msgstr "Zapomnij"
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr "Tutaj możesz zaktualizować informacje o swoim koncie, takie jak zdjęc
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr "Tutaj możesz zaktualizować swój profil, aby dostosować i spersonalizować swoje doświadczenia."
|
msgstr "Tutaj możesz zaktualizować swój profil, aby dostosować i spersonalizować swoje doświadczenia."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Ukryte"
|
msgstr "Ukryte"
|
||||||
@ -690,7 +690,7 @@ msgstr "Udostępnij swoje CV publicznie"
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr "Uwielbiam otrzymywać opinie lub feedback od użytkowników Reactive Resume. Oto niektóre wiadomości, które otrzymałem. Jeśli masz jakieś uwagi, napisz do mnie e-mail na adres <0>{email}</0>."
|
msgstr "Uwielbiam otrzymywać opinie lub feedback od użytkowników Reactive Resume. Oto niektóre wiadomości, które otrzymałem. Jeśli masz jakieś uwagi, napisz do mnie e-mail na adres <0>{email}</0>."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr "Ikona"
|
msgstr "Ikona"
|
||||||
@ -793,9 +793,9 @@ msgstr "jan.kowalski@przyklad.pl"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Słowa Kluczowe"
|
msgstr "Słowa Kluczowe"
|
||||||
@ -809,7 +809,7 @@ msgstr "Etykieta"
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Język"
|
msgstr "Język"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr "Ostatnio zaktualizowane {lastUpdated}"
|
msgstr "Ostatnio zaktualizowane {lastUpdated}"
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr "Lokalizacja"
|
msgstr "Lokalizacja"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr "Marzec 2023 – obecnie"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Marginesy"
|
msgstr "Marginesy"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "Licencja MIT"
|
msgstr "Licencja MIT"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nazwa"
|
msgstr "Nazwa"
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nazwa"
|
msgstr "Nazwa"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Sieć"
|
msgstr "Sieć"
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr "Uwaga: Spowoduje to zmniejszenie bezpieczeństwa Twojego konta."
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Notatki"
|
msgstr "Notatki"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr "Integracja z Ollama"
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr "Jednorazowe hasło"
|
msgstr "Jednorazowe hasło"
|
||||||
@ -984,7 +980,7 @@ msgstr "Jednorazowe hasło"
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr "Ups, serwer zwrócił błąd."
|
msgstr "Ups, serwer zwrócił błąd."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr "Otwórz"
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr "Open Source"
|
msgstr "Open Source"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr "OpenAI nie zwróciło żadnych wyborów dla Twojego tekstu."
|
msgstr "OpenAI nie zwróciło żadnych wyborów dla Twojego tekstu."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "Integracja z OpenAI"
|
msgstr "Integracja z 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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr "Stanowisko"
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr "Napędzane przez"
|
msgstr "Napędzane przez"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr "Napędzane przez <0>Simple Icons</0>"
|
msgstr "Napędzane przez <0>Simple Icons</0>"
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr "Reactive Resume rozwija się dzięki tętniącej życiem społeczności.
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Ponów"
|
msgstr "Ponów"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Usuń"
|
msgstr "Usuń"
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr "Usuń Stronę"
|
msgstr "Usuń Stronę"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr "Bogaty w funkcjonalności, nie w rozbudowany cennik."
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr "Zaokrąklony"
|
msgstr "Zaokrąklony"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Zapisz Zmiany"
|
msgstr "Zapisz Zmiany"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr "Motyw"
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr "Wystąpił błąd podczas łączenia się z przeglądarką. Upewnij się, że „Chrome” jest uruchomiony i dostępny."
|
msgstr "Wystąpił błąd podczas łączenia się z przeglądarką. Upewnij się, że „Chrome” jest uruchomiony i dostępny."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr "Tę czynność można cofnąć, klikając przycisk cofania na pływającym pasku narzędzi."
|
msgstr "Tę czynność można cofnąć, klikając przycisk cofania na pływającym pasku narzędzi."
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr "Cofnij"
|
msgstr "Cofnij"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr "Odblokowanie CV umożliwi ponowne wprowadzenie w nim zmian."
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr "Niezweryfikowany"
|
msgstr "Niezweryfikowany"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr "Zaktualizuj istniejący element"
|
msgstr "Zaktualizuj istniejący element"
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr "Użytkownik nie ma powiązanego rekordu \"secrets\". Proszę zgłosić ten błąd na GitHub."
|
msgstr "Użytkownik nie ma powiązanego rekordu \"secrets\". Proszę zgłosić ten błąd na GitHub."
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr "Nazwa Użytkownika"
|
msgstr "Nazwa Użytkownika"
|
||||||
@ -1610,7 +1609,7 @@ msgstr "Zweryfikuj"
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr "Zatwierdzone"
|
msgstr "Zatwierdzone"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Wartość"
|
msgstr "Wartość"
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr "Wersja 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Wyświetlenia"
|
msgstr "Wyświetlenia"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Widoczny"
|
msgstr "Widoczny"
|
||||||
|
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr "Weryfikujemy Twój adres e-mail tylko po to, aby mieć pewność, że będziemy mogli wysłać Ci link do resetowania hasła w przypadku, gdy zapomnisz hasła."
|
msgstr "Weryfikujemy Twój adres e-mail tylko po to, aby mieć pewność, że będziemy mogli wysłać Ci link do resetowania hasła w przypadku, gdy zapomnisz hasła."
|
||||||
@ -1648,7 +1651,7 @@ msgstr "Weryfikujemy Twój adres e-mail tylko po to, aby mieć pewność, że b
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr "Strona"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Co nowego w najnowszej wersji"
|
msgstr "Co nowego w najnowszej wersji"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Możesz dodać wiele słów kluczowych, oddzielając je przecinkiem lub naciskając klawisz Enter."
|
msgstr "Możesz dodać wiele słów kluczowych, oddzielając je przecinkiem lub naciskając klawisz Enter."
|
||||||
@ -1672,11 +1675,11 @@ msgstr "Możesz dodać wiele słów kluczowych, oddzielając je przecinkiem lub
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Możesz także wpisać swoją nazwę użytkownika."
|
msgstr "Możesz także wpisać swoją nazwę użytkownika."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
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."
|
msgstr "Możesz skorzystać z interfejsu API OpenAI, aby pomóc w generowaniu treści lub ulepszaniu pisania podczas tworzenia CV."
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr "Możesz skorzystać z interfejsu API OpenAI, aby pomóc w generowaniu tr
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Możesz śledzić liczbę wyświetleń Twojego CV lub liczbę osób, które pobrały CV, włączając udostępnianie publiczne."
|
msgstr "Możesz śledzić liczbę wyświetleń Twojego CV lub liczbę osób, które pobrały CV, włączając udostępnianie publiczne."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "Masz możliwość <0>uzyskania własnego klucza API OpenAI</0>. Ten klucz umożliwia wykorzystanie interfejsu API według własnego uznania. Alternatywnie, jeśli chcesz całkowicie wyłączyć funkcje AI w Reactive Resume, możesz po prostu usunąć klucz ze swoich ustawień."
|
msgstr "Masz możliwość <0>uzyskania własnego klucza API OpenAI</0>. Ten klucz umożliwia wykorzystanie interfejsu API według własnego uznania. Alternatywnie, jeśli chcesz całkowicie wyłączyć funkcje AI w Reactive Resume, możesz po prostu usunąć klucz ze swoich ustawień."
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr "Wysłaliśmy do Ciebie e-mail!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Twoje konto i wszystkie dane zostały pomyślnie usunięte. Trzymaj się!"
|
msgstr "Twoje konto i wszystkie dane zostały pomyślnie usunięte. Trzymaj się!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "Twój klucz API jest bezpiecznie przechowywany w lokalnej pamięci przeglądarki i jest używany tylko podczas wysyłania żądań do OpenAI za pośrednictwem oficjalnego pakietu SDK. Możesz mieć pewność, że Twój klucz nie zostanie przesłany do żadnego serwera zewnętrznego, z wyjątkiem interakcji z usługami OpenAI."
|
msgstr "Twój klucz API jest bezpiecznie przechowywany w lokalnej pamięci przeglądarki i jest używany tylko podczas wysyłania żądań do OpenAI za pośrednictwem oficjalnego pakietu SDK. Możesz mieć pewność, że Twój klucz nie zostanie przesłany do żadnego serwera zewnętrznego, z wyjątkiem interakcji z usługami OpenAI."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: pt\n"
|
"Language: pt\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:13\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Portuguese, Brazilian\n"
|
"Language-Team: Portuguese, Brazilian\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -38,7 +38,7 @@ msgstr "<0>Eu criei o Reactive Resume basicamente sozinho durante meu tempo livr
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr "<0>Tenho certeza de que o aplicativo não é perfeito, mas gostaria que fosse.</0> <1>Se você enfrentou algum problema ao criar seu currículo ou tem uma ideia que ajudaria você e outros usuários a criar seu currículo com mais facilidade, deixe um problema no repositório ou envie-me um e-mail sobre isso.</1>"
|
msgstr "<0>Tenho certeza de que o aplicativo não é perfeito, mas gostaria que fosse.</0> <1>Se você enfrentou algum problema ao criar seu currículo ou tem uma ideia que ajudaria você e outros usuários a criar seu currículo com mais facilidade, deixe um problema no repositório ou envie-me um e-mail sobre isso.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr "<0>Nota:</0> Ao utilizar a API OpenAI, você reconhece e aceita os <1>termos de uso</1> e <2>política de privacidade</2> definidos pela OpenAI. Observe que o Reactive Resume não se responsabiliza por qualquer utilização inadequada ou não autorizada do serviço, e quaisquer repercussões ou responsabilidades resultantes são exclusivamente do usuário."
|
msgstr "<0>Nota:</0> Ao utilizar a API OpenAI, você reconhece e aceita os <1>termos de uso</1> e <2>política de privacidade</2> definidos pela OpenAI. Observe que o Reactive Resume não se responsabiliza por qualquer utilização inadequada ou não autorizada do serviço, e quaisquer repercussões ou responsabilidades resultantes são exclusivamente do usuário."
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr "Aceito apenas {accept} arquivos"
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr "Conta"
|
msgstr "Conta"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr "Adicionar campo customizado"
|
msgstr "Adicionar campo customizado"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Adicionar novo item"
|
msgstr "Adicionar novo item"
|
||||||
@ -146,7 +146,7 @@ msgstr "Qualquer pessoa com o link pode visualizar e baixar o currículo."
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr "Qualquer pessoa com este link pode visualizar e baixar o currículo. Compartilhe seu perfil ou com recrutadores."
|
msgstr "Qualquer pessoa com este link pode visualizar e baixar o currículo. Compartilhe seu perfil ou com recrutadores."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr "Tem certeza de que deseja excluir este item?"
|
msgstr "Tem certeza de que deseja excluir este item?"
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr "Código de Segurança"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Os códigos de segurança só podem conter letras minúsculas ou números, e devem ter exatamente 10 caracteres."
|
msgstr "Os códigos de segurança só podem conter letras minúsculas ou números, e devem ter exatamente 10 caracteres."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "URL Base"
|
msgstr "URL Base"
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr "Construído com"
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr "Construída pela comunidade para a comunidade."
|
msgstr "Construída pela comunidade para a comunidade."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr "Confirmar Nova Senha"
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Continuar"
|
msgstr "Continuar"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Copiar"
|
msgstr "Copiar"
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr "Copiar link para currículo"
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr "Copiar para Área de Transferência"
|
msgstr "Copiar para Área de Transferência"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr "Criar"
|
msgstr "Criar"
|
||||||
@ -328,7 +328,7 @@ msgstr "Criar"
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr "Criar uma nova conta"
|
msgstr "Criar uma nova conta"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr "Criar um novo item"
|
msgstr "Criar um novo item"
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr "Data"
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Data ou intervalo de datas"
|
msgstr "Data ou intervalo de datas"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr "Baixar PDF"
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr "Downloads"
|
msgstr "Downloads"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr "Duplicar"
|
msgstr "Duplicar"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr "Duplicar um item existente"
|
msgstr "Duplicar um item existente"
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr "Duplicar um item existente"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Duplicar um currículo existente"
|
msgstr "Duplicar um currículo existente"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Editar"
|
msgstr "Editar"
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr "Variante da Fonte"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "Por exemplo, informações sobre quais empresas você enviou este currículo ou os links para as descrições do trabalho podem ser anotadas aqui."
|
msgstr "Por exemplo, informações sobre quais empresas você enviou este currículo ou os links para as descrições do trabalho podem ser anotadas aqui."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Esquecer"
|
msgstr "Esquecer"
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr "Aqui, você pode atualizar as informações da sua conta, como foto do p
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr "Aqui, você pode atualizar seu perfil para customizar e personalizar sua experiência."
|
msgstr "Aqui, você pode atualizar seu perfil para customizar e personalizar sua experiência."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Oculto"
|
msgstr "Oculto"
|
||||||
@ -690,7 +690,7 @@ msgstr "Hospede seu currículo publicamente"
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr "Sempre gosto de receber comentários ou suporte dos usuários do Reactive Resume. Aqui estão algumas das mensagens que recebi. Se você tiver algum comentário, sinta-se à vontade para enviar um e-mail para <0>{email}</0>."
|
msgstr "Sempre gosto de receber comentários ou suporte dos usuários do Reactive Resume. Aqui estão algumas das mensagens que recebi. Se você tiver algum comentário, sinta-se à vontade para enviar um e-mail para <0>{email}</0>."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr "Ícone"
|
msgstr "Ícone"
|
||||||
@ -793,9 +793,9 @@ msgstr "joao.silva@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Palavras-chave"
|
msgstr "Palavras-chave"
|
||||||
@ -809,7 +809,7 @@ msgstr "Rótulo"
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Idioma"
|
msgstr "Idioma"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr "Última atualização {lastUpdated}"
|
msgstr "Última atualização {lastUpdated}"
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr "Localização"
|
msgstr "Localização"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr "Março de 2023 - Presente"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Margem"
|
msgstr "Margem"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "Máximo de Tokens"
|
msgstr "Máximo de Tokens"
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr "Máximo de Tokens"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "Licença MIT"
|
msgstr "Licença MIT"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "Modelo"
|
msgstr "Modelo"
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr "Modelo"
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nome"
|
msgstr "Nome"
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nome"
|
msgstr "Nome"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Rede"
|
msgstr "Rede"
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr "Observação: Esta ação tornará sua conta menos segura."
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Anotações"
|
msgstr "Anotações"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr "Integração com Ollama"
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr "Senha de uso único"
|
msgstr "Senha de uso único"
|
||||||
@ -984,7 +980,7 @@ msgstr "Senha de uso único"
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr "Oops, o servidor retornou um erro."
|
msgstr "Oops, o servidor retornou um erro."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr "Abrir"
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr "Código Aberto"
|
msgstr "Código Aberto"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr "Chave de API da OpenAI / Ollama"
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr "OpenAI não retornou nenhuma opção para o seu texto."
|
msgstr "OpenAI não retornou nenhuma opção para o seu texto."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "Integração com OpenAI"
|
msgstr "Integração com OpenAI"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
||||||
|
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/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr "Posição"
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr "Desenvolvido por"
|
msgstr "Desenvolvido por"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr "Desenvolvido por <0>Simple Icons</0>"
|
msgstr "Desenvolvido por <0>Simple Icons</0>"
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr "O Reactive Resume só dá certo graças à sua comunidade vibrante. Este
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Refazer"
|
msgstr "Refazer"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Remover"
|
msgstr "Remover"
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr "Remover Página"
|
msgstr "Remover Página"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr "Rico em recursos, não em preços."
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr "Arredondado"
|
msgstr "Arredondado"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Salvar Alterações"
|
msgstr "Salvar Alterações"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "Salvar localmente"
|
msgstr "Salvar localmente"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Salvo"
|
msgstr "Salvo"
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr "Tema"
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr "Ocorreu um erro ao conectar-se ao navegador. Certifique-se de que o 'chrome' esteja funcionando."
|
msgstr "Ocorreu um erro ao conectar-se ao navegador. Certifique-se de que o 'chrome' esteja funcionando."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr "Essa ação pode ser revertida clicando no botão desfazer na barra de ferramentas flutuante."
|
msgstr "Essa ação pode ser revertida clicando no botão desfazer na barra de ferramentas flutuante."
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr "Desfazer"
|
msgstr "Desfazer"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr "Desbloquear um currículo permitirá que você faça alterações nele n
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr "Não verificado"
|
msgstr "Não verificado"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr "Atualizar um item existente"
|
msgstr "Atualizar um item existente"
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr "O usuário não tem um registro \"secrets\" associado. Por favor, relate esse problema no GitHub."
|
msgstr "O usuário não tem um registro \"secrets\" associado. Por favor, relate esse problema no GitHub."
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr "Nome de usuário"
|
msgstr "Nome de usuário"
|
||||||
@ -1610,7 +1609,7 @@ msgstr "Confirmar"
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr "Validado"
|
msgstr "Validado"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Valor"
|
msgstr "Valor"
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr "Versão 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Visualizações"
|
msgstr "Visualizações"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Visível"
|
msgstr "Visível"
|
||||||
|
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr "Verificamos seu endereço de e-mail apenas para garantir que possamos enviar-lhe um link de redefinição de senha, caso esqueça sua senha."
|
msgstr "Verificamos seu endereço de e-mail apenas para garantir que possamos enviar-lhe um link de redefinição de senha, caso esqueça sua senha."
|
||||||
@ -1648,7 +1651,7 @@ msgstr "Verificamos seu endereço de e-mail apenas para garantir que possamos en
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr "Site"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "O que há de novo na versão mais recente"
|
msgstr "O que há de novo na versão mais recente"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Você pode adicionar várias palavras-chave separando-as com vírgula ou pressionando Enter."
|
msgstr "Você pode adicionar várias palavras-chave separando-as com vírgula ou pressionando Enter."
|
||||||
@ -1672,11 +1675,11 @@ msgstr "Você pode adicionar várias palavras-chave separando-as com vírgula ou
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Você também pode inserir seu nome de usuário."
|
msgstr "Você também pode inserir seu nome de usuário."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 "Você pode integrar com o Ollama simplesmente definindo a chave de API para `sk-1234567890abcdef` e a URL Base para a URL do seu Ollama, ex: `http://localhost:11434/v1`. Você também pode escolher modelos e definir os tokens máximos."
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
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."
|
msgstr "Você pode usar a API OpenAI para ajudá-lo a gerar conteúdo ou melhorar seus textos ao escrever seu currículo."
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr "Você pode usar a API OpenAI para ajudá-lo a gerar conteúdo ou melhora
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Você pode acompanhar o número de visualizações que seu currículo recebeu ou quantas pessoas baixaram o currículo ativando o compartilhamento público."
|
msgstr "Você pode acompanhar o número de visualizações que seu currículo recebeu ou quantas pessoas baixaram o currículo ativando o compartilhamento público."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "Você tem a opção de <0>obter sua própria chave de API da OpenAI</0>. Essa chave permite que você aproveite a API como achar melhor. Se desejar desativar completamente os recursos de IA no Reactive Resume, basta remover a chave de suas configurações."
|
msgstr "Você tem a opção de <0>obter sua própria chave de API da OpenAI</0>. Essa chave permite que você aproveite a API como achar melhor. Se desejar desativar completamente os recursos de IA no Reactive Resume, basta remover a chave de suas configurações."
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr "Você recebeu um e-mail!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Sua conta e todos os seus dados foram excluídos com sucesso. Adeus!"
|
msgstr "Sua conta e todos os seus dados foram excluídos com sucesso. Adeus!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "Sua chave de API é armazenada com segurança no armazenamento local do navegador e só é utilizada ao fazer solicitações à OpenAI por meio do SDK oficial. Você pode ter certeza de que sua chave não é transmitida a nenhum servidor externo, exceto ao interagir com os serviços da OpenAI."
|
msgstr "Sua chave de API é armazenada com segurança no armazenamento local do navegador e só é utilizada ao fazer solicitações à OpenAI por meio do SDK oficial. Você pode ter certeza de que sua chave não é transmitida a nenhum servidor externo, exceto ao interagir com os serviços da OpenAI."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: pt\n"
|
"Language: pt\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:13\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Portuguese\n"
|
"Language-Team: Portuguese\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -38,7 +38,7 @@ msgstr "<0>Eu criei o Reactive Resume principalmente sozinho durante o meu tempo
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr "<0>Tenho noção de que a aplicação não é perfeita, mas gostaria que fosse.</0> <1>Se encontrou algum problema ao criar o seu currículo ou tem uma ideia que ajudá-lo-ia a você e outros utilizadores a criar o seu currículo com mais facilidade, abra uma questão no repositório ou envie-me um e-mail.</1>"
|
msgstr "<0>Tenho noção de que a aplicação não é perfeita, mas gostaria que fosse.</0> <1>Se encontrou algum problema ao criar o seu currículo ou tem uma ideia que ajudá-lo-ia a você e outros utilizadores a criar o seu currículo com mais facilidade, abra uma questão no repositório ou envie-me um e-mail.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr "<0>Nota: </0>Ao utilizar a API da OpenAI, reconhece e aceita os <1>termos de utilização</1> e <2>a política de privacidade</2> delineados pela OpenAI. Tenha em atenção que a Reactive Resume não assume qualquer responsabilidade por qualquer utilização imprópria ou não autorizada do serviço, e quaisquer repercussões ou responsabilidades resultantes recaem exclusivamente sobre o utilizador."
|
msgstr "<0>Nota: </0>Ao utilizar a API da OpenAI, reconhece e aceita os <1>termos de utilização</1> e <2>a política de privacidade</2> delineados pela OpenAI. Tenha em atenção que a Reactive Resume não assume qualquer responsabilidade por qualquer utilização imprópria ou não autorizada do serviço, e quaisquer repercussões ou responsabilidades resultantes recaem exclusivamente sobre o utilizador."
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr "Apenas aceita ficheiros {accept}"
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr "Conta"
|
msgstr "Conta"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr "Adicionar um campo personalizado"
|
msgstr "Adicionar um campo personalizado"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Adicionar um novo item"
|
msgstr "Adicionar um novo item"
|
||||||
@ -146,7 +146,7 @@ msgstr "Qualquer pessoa com o link pode ver e descarregar o currículo."
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr "Qualquer pessoa com o link pode ver e descarregar o currículo. Partilhe no seu perfil ou com recrutadores."
|
msgstr "Qualquer pessoa com o link pode ver e descarregar o currículo. Partilhe no seu perfil ou com recrutadores."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr "Tem a certeza de que pretende eliminar este item?"
|
msgstr "Tem a certeza de que pretende eliminar este item?"
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr "Código de backup"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Os códigos de backup apenas podem conter letras minúsculas ou números e devem ter exatamente 10 caracteres."
|
msgstr "Os códigos de backup apenas podem conter letras minúsculas ou números e devem ter exatamente 10 caracteres."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr "Construído com"
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr "Pela comunidade, para a comunidade."
|
msgstr "Pela comunidade, para a comunidade."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr "Confirme a nova senha"
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Continuar"
|
msgstr "Continuar"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Copiar"
|
msgstr "Copiar"
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr "Copiar link para o currículo"
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr "Copiar para a Área de Transferência"
|
msgstr "Copiar para a Área de Transferência"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr "Criar"
|
msgstr "Criar"
|
||||||
@ -328,7 +328,7 @@ msgstr "Criar"
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr "Criar conta"
|
msgstr "Criar conta"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr "Criar um item"
|
msgstr "Criar um item"
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr "Data"
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Data ou intervalo de datas"
|
msgstr "Data ou intervalo de datas"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr "Baixar PDF"
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr "Downloads"
|
msgstr "Downloads"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr "Duplicar"
|
msgstr "Duplicar"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr "Duplicar um item existente"
|
msgstr "Duplicar um item existente"
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr "Duplicar um item existente"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Duplicar um currículo existente"
|
msgstr "Duplicar um currículo existente"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Editar"
|
msgstr "Editar"
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr "Variantes da fonte"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "Por exemplo, informações sobre as empresas para as quais enviou este currículo ou os links para os anúncios de emprego podem ser anotadas aqui."
|
msgstr "Por exemplo, informações sobre as empresas para as quais enviou este currículo ou os links para os anúncios de emprego podem ser anotadas aqui."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Esquecer"
|
msgstr "Esquecer"
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr "Aqui, pode atualizar as informações da sua conta, como foto do perfil,
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr "Aqui, pode atualizar o seu perfil para personalizar a sua experiência."
|
msgstr "Aqui, pode atualizar o seu perfil para personalizar a sua experiência."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Oculto"
|
msgstr "Oculto"
|
||||||
@ -690,7 +690,7 @@ msgstr "Publique o seu currículo publicamente"
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr "Gosto sempre de receber comentários ou apoio dos utilizadores do Reactive Resume. Aqui estão algumas das mensagens que recebi. Se tiver algum feedback, não hesite em enviar-me um e-mail para <0>{email}</0>."
|
msgstr "Gosto sempre de receber comentários ou apoio dos utilizadores do Reactive Resume. Aqui estão algumas das mensagens que recebi. Se tiver algum feedback, não hesite em enviar-me um e-mail para <0>{email}</0>."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr "Ícone"
|
msgstr "Ícone"
|
||||||
@ -793,9 +793,9 @@ msgstr "joao.silva@exemplo.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Palavras-chave"
|
msgstr "Palavras-chave"
|
||||||
@ -809,7 +809,7 @@ msgstr "Rótulo"
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Idioma"
|
msgstr "Idioma"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr "Última atualização {lastUpdated}"
|
msgstr "Última atualização {lastUpdated}"
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr "Localização"
|
msgstr "Localização"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr "Março de 2023 - presente"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Margem"
|
msgstr "Margem"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "Máximo de Tokens"
|
msgstr "Máximo de Tokens"
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr "Máximo de Tokens"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "Licença MIT"
|
msgstr "Licença MIT"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "Modelo"
|
msgstr "Modelo"
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr "Modelo"
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nome"
|
msgstr "Nome"
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nome"
|
msgstr "Nome"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Rede Social"
|
msgstr "Rede Social"
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr "Observação: isso tornará sua conta menos segura."
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Notas"
|
msgstr "Notas"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr "Integração Ollama"
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr "Senha de uso único"
|
msgstr "Senha de uso único"
|
||||||
@ -984,7 +980,7 @@ msgstr "Senha de uso único"
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr "Desculpe, o servidor relatou um erro."
|
msgstr "Desculpe, o servidor relatou um erro."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr "Abrir"
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr "Código Aberto"
|
msgstr "Código Aberto"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr "Chave da API OpenAI / Ollama"
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr "OpenAI não retornou nenhuma escolha para o seu texto."
|
msgstr "OpenAI não retornou nenhuma escolha para o seu texto."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "Integração com OpenAI"
|
msgstr "Integração com OpenAI"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
||||||
|
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/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr "Cargo"
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr "Desenvolvido em"
|
msgstr "Desenvolvido em"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr "Desenvolvido em <0>Simple Icons</0>"
|
msgstr "Desenvolvido em <0>Simple Icons</0>"
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr "O Reactive Resume prospera graças à sua comunidade vibrante. Este proj
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Refazer"
|
msgstr "Refazer"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Remover"
|
msgstr "Remover"
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr "Remover página"
|
msgstr "Remover página"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr "Rico em funcionalidades, não em custo."
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr "Arredondado"
|
msgstr "Arredondado"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Salvar Alterações"
|
msgstr "Salvar Alterações"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "Guardar Localmente"
|
msgstr "Guardar Localmente"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Guardado"
|
msgstr "Guardado"
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr "Tema"
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr "Houve um erro na conexão com o navegador. Certifique-se de que o 'chrome' está a funcionar e acessível."
|
msgstr "Houve um erro na conexão com o navegador. Certifique-se de que o 'chrome' está a funcionar e acessível."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr "Esta ação pode ser revertida clicando no botão \"desfazer\" na barra de ferramentas flutuante."
|
msgstr "Esta ação pode ser revertida clicando no botão \"desfazer\" na barra de ferramentas flutuante."
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr "Desfazer"
|
msgstr "Desfazer"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr "Desbloquear um currículo permitirá que você faça alterações nele n
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr "Não verificado"
|
msgstr "Não verificado"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr "Atualizar um item existente"
|
msgstr "Atualizar um item existente"
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr "O usuário não possui um registro de 'segredos' associado. Por favor, relate este problema no GitHub."
|
msgstr "O usuário não possui um registro de 'segredos' associado. Por favor, relate este problema no GitHub."
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr "Nome de usuário"
|
msgstr "Nome de usuário"
|
||||||
@ -1610,7 +1609,7 @@ msgstr "Validar"
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr "Validado"
|
msgstr "Validado"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Valor"
|
msgstr "Valor"
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr "Versão 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Visualizações"
|
msgstr "Visualizações"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Visível"
|
msgstr "Visível"
|
||||||
|
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr "Verificamos seu endereço de e-mail apenas para garantir que possamos enviar um link de redefinição de senha caso você esqueça sua senha."
|
msgstr "Verificamos seu endereço de e-mail apenas para garantir que possamos enviar um link de redefinição de senha caso você esqueça sua senha."
|
||||||
@ -1648,7 +1651,7 @@ msgstr "Verificamos seu endereço de e-mail apenas para garantir que possamos en
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr "Site"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "O que há de novo na versão mais recente"
|
msgstr "O que há de novo na versão mais recente"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Você pode adicionar várias palavras-chave separando-as com vírgula ou pressionando Enter."
|
msgstr "Você pode adicionar várias palavras-chave separando-as com vírgula ou pressionando Enter."
|
||||||
@ -1672,11 +1675,11 @@ msgstr "Você pode adicionar várias palavras-chave separando-as com vírgula ou
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Você também pode inserir seu nome de usuário."
|
msgstr "Você também pode inserir seu nome de usuário."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 "Pode integrar com o Ollama simplesmente definindo a chave API para `sk-1234567890abcdef` e o URL base para o URL do Ollama, exemplo: `http://localhost:11434/v1`. Também pode escolher modelos e definir o máximo de tokens."
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
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."
|
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."
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr "Você pode usar a API da OpenAI para ajudá-lo a gerar conteúdo ou melh
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Você pode acompanhar o número de visualizações que seu currículo recebeu ou quantas pessoas baixaram o currículo ativando o compartilhamento público."
|
msgstr "Você pode acompanhar o número de visualizações que seu currículo recebeu ou quantas pessoas baixaram o currículo ativando o compartilhamento público."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "Você tem a opção de <0>obter sua própria chave de API na OpenAI</0>. Essa chave permite que você use a API conforme achar adequado. Alternativamente, se desejar desativar completamente os recursos de IA no Reactive Resume, você pode simplesmente remover a chave de suas configurações."
|
msgstr "Você tem a opção de <0>obter sua própria chave de API na OpenAI</0>. Essa chave permite que você use a API conforme achar adequado. Alternativamente, se desejar desativar completamente os recursos de IA no Reactive Resume, você pode simplesmente remover a chave de suas configurações."
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr "Você recebeu um email!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Sua conta e todos os seus dados foram excluídos com sucesso. Até outra hora!"
|
msgstr "Sua conta e todos os seus dados foram excluídos com sucesso. Até outra hora!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "Sua chave API é armazenada com segurança no armazenamento local do navegador e só é utilizada ao fazer solicitações à OpenAI por meio de seu SDK oficial. Fique ciente de que sua chave não será transmitida a nenhum servidor externo, exceto ao interagir com os serviços da OpenAI."
|
msgstr "Sua chave API é armazenada com segurança no armazenamento local do navegador e só é utilizada ao fazer solicitações à OpenAI por meio de seu SDK oficial. Fique ciente de que sua chave não será transmitida a nenhum servidor externo, exceto ao interagir com os serviços da OpenAI."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: ro\n"
|
"Language: ro\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:13\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Romanian\n"
|
"Language-Team: Romanian\n"
|
||||||
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);\n"
|
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);\n"
|
||||||
@ -38,7 +38,7 @@ msgstr "<0>Am construit Reactive Resume în mare parte de unul singur, în timpu
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr "<0>Sunt sigur că aplicația nu este perfectă, dar aș vrea să fie. /0><1>Dacă v-ați confruntat cu probleme în timp ce creați reluarea, sau aveți o idee care v-ar ajuta pe voi și pe alți utilizatori să vă creați mai ușor reluarea, plasează o problemă în depozit sau trimite-mi un e-mail despre ea. /1>"
|
msgstr "<0>Sunt sigur că aplicația nu este perfectă, dar aș vrea să fie. /0><1>Dacă v-ați confruntat cu probleme în timp ce creați reluarea, sau aveți o idee care v-ar ajuta pe voi și pe alți utilizatori să vă creați mai ușor reluarea, plasează o problemă în depozit sau trimite-mi un e-mail despre ea. /1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr "<0>Notă: </0>Utilizând API-ul OpenAI, confirmaţi şi acceptaţi termenii de utilizare </1> şi <2>politica de confidenţialitate</2> subliniaţi de OpenAI. Vă rugăm să reţineţi că Resume Reactiv nu are nici o responsabilitate pentru utilizarea incorectă sau neautorizată a serviciului, şi orice repercusiuni sau pasive care decurg exclusiv din acestea sunt suportate de utilizator."
|
msgstr "<0>Notă: </0>Utilizând API-ul OpenAI, confirmaţi şi acceptaţi termenii de utilizare </1> şi <2>politica de confidenţialitate</2> subliniaţi de OpenAI. Vă rugăm să reţineţi că Resume Reactiv nu are nici o responsabilitate pentru utilizarea incorectă sau neautorizată a serviciului, şi orice repercusiuni sau pasive care decurg exclusiv din acestea sunt suportate de utilizator."
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr "Acceptă doar fișiere {accept}"
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr "Cont"
|
msgstr "Cont"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr "Adăugarea unui câmp particularizat"
|
msgstr "Adăugarea unui câmp particularizat"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Adaugă un element nou"
|
msgstr "Adaugă un element nou"
|
||||||
@ -146,7 +146,7 @@ msgstr "Oricine are linkul poate vizualiza și descărca CV-ul."
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr "Oricine are acest link poate vizualiza și descărca CV-ul. Distribuiți-l pe profilul dvs. sau cu recrutorii."
|
msgstr "Oricine are acest link poate vizualiza și descărca CV-ul. Distribuiți-l pe profilul dvs. sau cu recrutorii."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr "Sunteţi sigur că doriţi să ștergeți acest element?"
|
msgstr "Sunteţi sigur că doriţi să ștergeți acest element?"
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr "Cod de rezervă"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Codurile de rezervă pot conține doar litere mici sau cifre și trebuie să aibă exact 10 caractere."
|
msgstr "Codurile de rezervă pot conține doar litere mici sau cifre și trebuie să aibă exact 10 caractere."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr "Construit cu"
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr "Construit de comunitate, pentru comunitate."
|
msgstr "Construit de comunitate, pentru comunitate."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr "Confirmare parolă nouă"
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Continuă"
|
msgstr "Continuă"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Copiază"
|
msgstr "Copiază"
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr "Copiază link-ul pentru a relua"
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr "Copiază în clipboard"
|
msgstr "Copiază în clipboard"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr "Creează"
|
msgstr "Creează"
|
||||||
@ -328,7 +328,7 @@ msgstr "Creează"
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr "Creează un cont nou"
|
msgstr "Creează un cont nou"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr "Creați un element nou"
|
msgstr "Creați un element nou"
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr "Dată"
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Interval dată sau dată"
|
msgstr "Interval dată sau dată"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr "Descarcă PDF-ul"
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr "Descărcări"
|
msgstr "Descărcări"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr "Duplică"
|
msgstr "Duplică"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr "Duplicați un element existent"
|
msgstr "Duplicați un element existent"
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr "Duplicați un element existent"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Duplicați un CV existent"
|
msgstr "Duplicați un CV existent"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Editare"
|
msgstr "Editare"
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr "Variante de font"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "De exemplu, informații cu privire la companiile cărora le-ați trimis acest CV sau link-urile către fișele posturilor pot fi notate aici."
|
msgstr "De exemplu, informații cu privire la companiile cărora le-ați trimis acest CV sau link-urile către fișele posturilor pot fi notate aici."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Uită"
|
msgstr "Uită"
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr "Aici, poți actualiza informațiile contului tău, cum ar fi imaginea de
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr "Aici, vă puteți actualiza profilul pentru a vă personaliza experiența."
|
msgstr "Aici, vă puteți actualiza profilul pentru a vă personaliza experiența."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Ascuns"
|
msgstr "Ascuns"
|
||||||
@ -690,7 +690,7 @@ msgstr "Găzduiește-ți CV-ul în mod public"
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr "Mereu îmi place să aud de la utilizatorii Reactive Resume cu feedback sau suport. Iată câteva dintre mesajele pe care le-am primit. Dacă aveți feedback, nu ezitați să îmi trimiteți un e-mail la <0>{email}</0>."
|
msgstr "Mereu îmi place să aud de la utilizatorii Reactive Resume cu feedback sau suport. Iată câteva dintre mesajele pe care le-am primit. Dacă aveți feedback, nu ezitați să îmi trimiteți un e-mail la <0>{email}</0>."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr "Iconiță"
|
msgstr "Iconiță"
|
||||||
@ -793,9 +793,9 @@ msgstr "john.doe@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Cuvinte cheie"
|
msgstr "Cuvinte cheie"
|
||||||
@ -809,7 +809,7 @@ msgstr "Etichetă"
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Limbă"
|
msgstr "Limbă"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr "Ultima actualizare {lastUpdated}"
|
msgstr "Ultima actualizare {lastUpdated}"
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr "Locație"
|
msgstr "Locație"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr "Martie 2023 - Prezent"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Margine"
|
msgstr "Margine"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "Licență MIT"
|
msgstr "Licență MIT"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nume"
|
msgstr "Nume"
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nume"
|
msgstr "Nume"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Rețea"
|
msgstr "Rețea"
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr "Notă: acest lucru va face contul dumneavoastră mai puțin sigur."
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Notițe"
|
msgstr "Notițe"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr "Parolă unică"
|
msgstr "Parolă unică"
|
||||||
@ -984,7 +980,7 @@ msgstr "Parolă unică"
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr "Hopa, serverul a returnat o eroare."
|
msgstr "Hopa, serverul a returnat o eroare."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr "Deschis"
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr "Sursă Publică"
|
msgstr "Sursă Publică"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr "OpenAI nu a returnat nicio alegere pentru textul dvs."
|
msgstr "OpenAI nu a returnat nicio alegere pentru textul dvs."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "Integrare OpenAI"
|
msgstr "Integrare 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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr "Poziție"
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr "Oferit de"
|
msgstr "Oferit de"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr "Oferit de <0>Icons-ul simplu</0>"
|
msgstr "Oferit de <0>Icons-ul simplu</0>"
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr "Reactiv Resume prosperă datorită comunității sale dinamice. Acest pr
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Reface"
|
msgstr "Reface"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Elimină"
|
msgstr "Elimină"
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr "Elimină pagina"
|
msgstr "Elimină pagina"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr "Bogat în caracteristici, nu în prețuri."
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr "Rotunjit"
|
msgstr "Rotunjit"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Salvează Modificările"
|
msgstr "Salvează Modificările"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr "Temă"
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr "A apărut o eroare la conectarea la browser. Asigurați-vă că „chrome” rulează și este accesibil."
|
msgstr "A apărut o eroare la conectarea la browser. Asigurați-vă că „chrome” rulează și este accesibil."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr "Această acțiune poate fi anulată făcând clic pe butonul de anulare din bara de instrumente plutitoare."
|
msgstr "Această acțiune poate fi anulată făcând clic pe butonul de anulare din bara de instrumente plutitoare."
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr "Anulează"
|
msgstr "Anulează"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr "Deblocarea unui CV vă va permite să-i faceți din nou modificări."
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr "Neverificat"
|
msgstr "Neverificat"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr "Actualizarea unui element existent"
|
msgstr "Actualizarea unui element existent"
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr "Utilizatorul nu are o înregistrare asociată 'secrete'. Vă rugăm să raportați această problemă pe GitHub."
|
msgstr "Utilizatorul nu are o înregistrare asociată 'secrete'. Vă rugăm să raportați această problemă pe GitHub."
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr "Nume utilizator"
|
msgstr "Nume utilizator"
|
||||||
@ -1610,7 +1609,7 @@ msgstr "Validează"
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr "Validat"
|
msgstr "Validat"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Valoare"
|
msgstr "Valoare"
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr "Versiunea 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Vizualizări"
|
msgstr "Vizualizări"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Vizibil"
|
msgstr "Vizibil"
|
||||||
|
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr "Vă verificăm adresa de e-mail numai pentru a ne asigura că vă putem trimite un link de resetare a parolei în cazul în care uitați parola."
|
msgstr "Vă verificăm adresa de e-mail numai pentru a ne asigura că vă putem trimite un link de resetare a parolei în cazul în care uitați parola."
|
||||||
@ -1648,7 +1651,7 @@ msgstr "Vă verificăm adresa de e-mail numai pentru a ne asigura că vă putem
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr "Website"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Ce este nou în cea mai recentă versiune"
|
msgstr "Ce este nou în cea mai recentă versiune"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Puteți adăuga mai multe cuvinte cheie separându-le cu o virgulă sau apăsând enter."
|
msgstr "Puteți adăuga mai multe cuvinte cheie separându-le cu o virgulă sau apăsând enter."
|
||||||
@ -1672,11 +1675,11 @@ msgstr "Puteți adăuga mai multe cuvinte cheie separându-le cu o virgulă sau
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Poți, de asemenea, să introduci numele de utilizator."
|
msgstr "Poți, de asemenea, să introduci numele de utilizator."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
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."
|
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."
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr "Puteți folosi API-ul OpenAI pentru a vă ajuta să generați conținut
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Puteți urmări numărul de vizualizări pe care le-a primit CV-ul dvs. sau câte persoane au descărcat CV-ul activând partajarea publică."
|
msgstr "Puteți urmări numărul de vizualizări pe care le-a primit CV-ul dvs. sau câte persoane au descărcat CV-ul activând partajarea publică."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "Aveți opțiunea de a vă obține propria cheie API OpenAI. Această cheie vă permite să utilizați API-ul după cum doriți. Alternativ, dacă doriţi să dezactivaţi caracteristicile AI în Reactiv Resume complet, puteţi pur şi simplu elimina cheia din setări."
|
msgstr "Aveți opțiunea de a vă obține propria cheie API OpenAI. Această cheie vă permite să utilizați API-ul după cum doriți. Alternativ, dacă doriţi să dezactivaţi caracteristicile AI în Reactiv Resume complet, puteţi pur şi simplu elimina cheia din setări."
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr "Ai primit e-mail!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Contul și toate datele dvs. au fost șterse cu succes. La revedere!"
|
msgstr "Contul și toate datele dvs. au fost șterse cu succes. La revedere!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "API-ul dvs. este stocat în siguranță în spațiul de stocare local al browser-ului și este utilizat numai atunci când faceți cereri către OpenAI prin intermediul SDK-ului lor oficial. Asigurați-vă că cheia dvs. nu este transmisă către niciun server extern cu excepția cazului în care interacționați cu serviciile OpenAI."
|
msgstr "API-ul dvs. este stocat în siguranță în spațiul de stocare local al browser-ului și este utilizat numai atunci când faceți cereri către OpenAI prin intermediul SDK-ului lor oficial. Asigurați-vă că cheia dvs. nu este transmisă către niciun server extern cu excepția cazului în care interacționați cu serviciile OpenAI."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: ru\n"
|
"Language: ru\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:13\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Russian\n"
|
"Language-Team: Russian\n"
|
||||||
"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n"
|
"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n"
|
||||||
@ -38,7 +38,7 @@ msgstr "<0>Я создавал Reactive Resume в основном сам, в с
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr "<0>Я уверен, что приложение не идеально, но мне бы хотелось, чтобы оно было.</0> <1>Если вы столкнулись с какими-либо проблемами при создании своего резюме или у вас есть идея, которая поможет вам и другим пользователям упростить создание резюме, оставьте проблему в репозитории или отправьте мне эл. письмо об этом.</1>"
|
msgstr "<0>Я уверен, что приложение не идеально, но мне бы хотелось, чтобы оно было.</0> <1>Если вы столкнулись с какими-либо проблемами при создании своего резюме или у вас есть идея, которая поможет вам и другим пользователям упростить создание резюме, оставьте проблему в репозитории или отправьте мне эл. письмо об этом.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr "<0>Примечание:</0> Используя API OpenAI, вы подтверждаете и принимаете <1>условия использования.</1> и <2>политику конфиденциальности</2> изложенные OpenAI. Обратите внимание, что Reactive Resume не несет ответственности за любое ненадлежащее или несанкционированное использование услуги, и любые возникающие в результате последствия или ответственность возлагаются исключительно на пользователя."
|
msgstr "<0>Примечание:</0> Используя API OpenAI, вы подтверждаете и принимаете <1>условия использования.</1> и <2>политику конфиденциальности</2> изложенные OpenAI. Обратите внимание, что Reactive Resume не несет ответственности за любое ненадлежащее или несанкционированное использование услуги, и любые возникающие в результате последствия или ответственность возлагаются исключительно на пользователя."
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr "Принимает только файлы {accept}"
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr "Аккаунт"
|
msgstr "Аккаунт"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr "Добавьте настраиваемое поле"
|
msgstr "Добавьте настраиваемое поле"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Добавить новый элемент"
|
msgstr "Добавить новый элемент"
|
||||||
@ -146,7 +146,7 @@ msgstr "Любой человек, получивший ссылку, может
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr "Любой человек, имеющий эту ссылку, может просмотреть и скачать резюме. Поделитесь им в своем профиле или с рекрутерами."
|
msgstr "Любой человек, имеющий эту ссылку, может просмотреть и скачать резюме. Поделитесь им в своем профиле или с рекрутерами."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr "Вы уверены, что хотите удалить этот элемент?"
|
msgstr "Вы уверены, что хотите удалить этот элемент?"
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr "Резервный код"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Резервные коды могут содержать только строчные буквы или цифры и должны состоять ровно из 10 символов."
|
msgstr "Резервные коды могут содержать только строчные буквы или цифры и должны состоять ровно из 10 символов."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "Базовый URL"
|
msgstr "Базовый URL"
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr "Сделано при помощи"
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr "Продукт сообщества для сообщества."
|
msgstr "Продукт сообщества для сообщества."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr "Подтвердить новый пароль"
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Продолжить"
|
msgstr "Продолжить"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Скопировать"
|
msgstr "Скопировать"
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr "Скопировать ссылку на резюме"
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr "Скопировать в буфер"
|
msgstr "Скопировать в буфер"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr "Создать"
|
msgstr "Создать"
|
||||||
@ -328,7 +328,7 @@ msgstr "Создать"
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr "Создать новый аккаунт"
|
msgstr "Создать новый аккаунт"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr "Создать новый элемент"
|
msgstr "Создать новый элемент"
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr "Дата"
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Дата или Диапазон Дат"
|
msgstr "Дата или Диапазон Дат"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr "Скачать PDF"
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr "Загрузки"
|
msgstr "Загрузки"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr "Дублировать"
|
msgstr "Дублировать"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr "Дублировать существующий элемент"
|
msgstr "Дублировать существующий элемент"
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr "Дублировать существующий элемент"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Дублировать существующее резюме"
|
msgstr "Дублировать существующее резюме"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Изменить"
|
msgstr "Изменить"
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr "Вариант шрифта"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "Например, здесь можно записать информацию о том, в какие компании вы отправили это резюме, или ссылки на описания вакансий."
|
msgstr "Например, здесь можно записать информацию о том, в какие компании вы отправили это резюме, или ссылки на описания вакансий."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Удалить"
|
msgstr "Удалить"
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr "Здесь вы можете обновить информацию о с
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr "Здесь вы можете обновить свой профиль, чтобы настроить и персонализировать свой опыт."
|
msgstr "Здесь вы можете обновить свой профиль, чтобы настроить и персонализировать свой опыт."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Скрытый"
|
msgstr "Скрытый"
|
||||||
@ -690,7 +690,7 @@ msgstr "Размещение резюме в открытом доступе"
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr "Мне всегда нравится получать отзывы и поддержку от пользователей Reactive Resume. Вот некоторые из полученных мною сообщений. Если вы хотите оставить отзыв, не стесняйтесь написать мне по адресу <0>{email}</0>."
|
msgstr "Мне всегда нравится получать отзывы и поддержку от пользователей Reactive Resume. Вот некоторые из полученных мною сообщений. Если вы хотите оставить отзыв, не стесняйтесь написать мне по адресу <0>{email}</0>."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr "Иконка"
|
msgstr "Иконка"
|
||||||
@ -793,9 +793,9 @@ msgstr "ivan.ivanovich@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Ключевые слова"
|
msgstr "Ключевые слова"
|
||||||
@ -809,7 +809,7 @@ msgstr "Заголовок"
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Язык"
|
msgstr "Язык"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr "Последнее обновление {lastUpdated}"
|
msgstr "Последнее обновление {lastUpdated}"
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr "Местоположение"
|
msgstr "Местоположение"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr "Март 2023 - настоящее время"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Отступ"
|
msgstr "Отступ"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "Максимум токенов"
|
msgstr "Максимум токенов"
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr "Максимум токенов"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "Лицензия MIT"
|
msgstr "Лицензия MIT"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "Модель"
|
msgstr "Модель"
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr "Модель"
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Имя"
|
msgstr "Имя"
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Имя"
|
msgstr "Имя"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Сеть"
|
msgstr "Сеть"
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr "Примечание: Это сделает вашу учетную за
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Заметки"
|
msgstr "Заметки"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr "Интеграция Ollama"
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr "Одноразовый пароль"
|
msgstr "Одноразовый пароль"
|
||||||
@ -984,7 +980,7 @@ msgstr "Одноразовый пароль"
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr "Упс, сервер выдал ошибку."
|
msgstr "Упс, сервер выдал ошибку."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr "Открыть"
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr "Открытый исходный код"
|
msgstr "Открытый исходный код"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr "Ключ API OpenAI / Ollama"
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr "OpenAI не вернул никаких вариантов для вашего текста."
|
msgstr "OpenAI не вернул никаких вариантов для вашего текста."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "Интеграция OpenAI"
|
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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr "Позиция"
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr "Разработан с помощью"
|
msgstr "Разработан с помощью"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr "Разработано с помощью <0>Simple Icons</0>"
|
msgstr "Разработано с помощью <0>Simple Icons</0>"
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr "Reactive Resume процветает благодаря своему а
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Повторить"
|
msgstr "Повторить"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Удалить"
|
msgstr "Удалить"
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr "Удалить страницу"
|
msgstr "Удалить страницу"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr "Богатый функционал, а не цена."
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr "Скруглённая"
|
msgstr "Скруглённая"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Сохранить изменения"
|
msgstr "Сохранить изменения"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "Сохранить локально"
|
msgstr "Сохранить локально"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Сохранено"
|
msgstr "Сохранено"
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr "Тема"
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr "Произошла ошибка при подключении к браузеру. Пожалуйста, убедитесь, что 'chrome' запущен и доступен."
|
msgstr "Произошла ошибка при подключении к браузеру. Пожалуйста, убедитесь, что 'chrome' запущен и доступен."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr "Это действие можно отменить, нажав на кнопку \"Отменить\" на плавающей панели инструментов."
|
msgstr "Это действие можно отменить, нажав на кнопку \"Отменить\" на плавающей панели инструментов."
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr "Отменить"
|
msgstr "Отменить"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr "Разблокировка резюме позволит вам снов
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr "Не подтверждена"
|
msgstr "Не подтверждена"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr "Обновить существующий элемент"
|
msgstr "Обновить существующий элемент"
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr "У пользователя нет связанной с ним записи 'secrets'. Пожалуйста, сообщите об этой проблеме на GitHub."
|
msgstr "У пользователя нет связанной с ним записи 'secrets'. Пожалуйста, сообщите об этой проблеме на GitHub."
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr "Имя пользователя"
|
msgstr "Имя пользователя"
|
||||||
@ -1610,7 +1609,7 @@ msgstr "Проверить"
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr "Проверено"
|
msgstr "Проверено"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Значение"
|
msgstr "Значение"
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr "Версия 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Просмотры"
|
msgstr "Просмотры"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Видимый"
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr "Мы подтверждаем ваш адрес эл. почты, только чтобы убедиться, что мы можем отправить ссылку для сброса пароля, если вы его забудете."
|
msgstr "Мы подтверждаем ваш адрес эл. почты, только чтобы убедиться, что мы можем отправить ссылку для сброса пароля, если вы его забудете."
|
||||||
@ -1648,7 +1651,7 @@ msgstr "Мы подтверждаем ваш адрес эл. почты, тол
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr "Сайт"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Что нового в последней версии"
|
msgstr "Что нового в последней версии"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Вы можете добавить несколько ключевых слов, разделив их запятой или нажав Enter."
|
msgstr "Вы можете добавить несколько ключевых слов, разделив их запятой или нажав Enter."
|
||||||
@ -1672,11 +1675,11 @@ msgstr "Вы можете добавить несколько ключевых
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Вы также можете ввести свое имя пользователя."
|
msgstr "Вы также можете ввести свое имя пользователя."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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`. Вы также можете выбирать модели и устанавливать максимальное количество токенов."
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
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, чтобы сгенерировать контент или улучшить текст при составлении резюме."
|
msgstr "Вы можете использовать API OpenAI, чтобы сгенерировать контент или улучшить текст при составлении резюме."
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr "Вы можете использовать API OpenAI, чтобы сге
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Вы можете отслеживать количество просмотров вашего резюме и количество людей, скачавших его, включив общий доступ."
|
msgstr "Вы можете отслеживать количество просмотров вашего резюме и количество людей, скачавших его, включив общий доступ."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "У вас есть возможность <0>получить свой собственный ключ API OpenAI</0>. Этот ключ позволит использовать API по своему усмотрению. В качестве альтернативы, если вы хотите полностью отключить AI функции в Reactive Resume, вы можете просто удалить ключ из своих настроек."
|
msgstr "У вас есть возможность <0>получить свой собственный ключ API OpenAI</0>. Этот ключ позволит использовать API по своему усмотрению. В качестве альтернативы, если вы хотите полностью отключить AI функции в Reactive Resume, вы можете просто удалить ключ из своих настроек."
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr "Вы получили письмо!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Учетная запись и все ваши данные были успешно удалены. До свидания!"
|
msgstr "Учетная запись и все ваши данные были успешно удалены. До свидания!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "Ваш ключ API надежно хранится в локальном хранилище браузера и используется только при запросах к OpenAI через их официальный SDK. Будьте уверены, в том, что ключ не передается ни на какой внешний сервер, за исключением случаев взаимодействия с сервисами OpenAI."
|
msgstr "Ваш ключ API надежно хранится в локальном хранилище браузера и используется только при запросах к OpenAI через их официальный SDK. Будьте уверены, в том, что ключ не передается ни на какой внешний сервер, за исключением случаев взаимодействия с сервисами OpenAI."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: sq\n"
|
"Language: sq\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:13\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Albanian\n"
|
"Language-Team: Albanian\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -38,7 +38,7 @@ msgstr ""
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr "Prano vetëm skedarët {accept}"
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr "Llogaria"
|
msgstr "Llogaria"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr "Shto një fushë të personalizuar"
|
msgstr "Shto një fushë të personalizuar"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Shto një vlerë të re"
|
msgstr "Shto një vlerë të re"
|
||||||
@ -146,7 +146,7 @@ msgstr "Çdokush që ka linkun mund të shikojë dhe shkarkojë CV-në."
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr "Çdokush që ka këtë link mund ta shikojë dhe shkarkojë CV-në. Shprëndani atë në profilin tuaj ose me rekrutuesit."
|
msgstr "Çdokush që ka këtë link mund ta shikojë dhe shkarkojë CV-në. Shprëndani atë në profilin tuaj ose me rekrutuesit."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr "Jeni i sigurt se dëshironi të fshini këtë vlerë?"
|
msgstr "Jeni i sigurt se dëshironi të fshini këtë vlerë?"
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr "Kodi rezervë"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Kodet rezervë mund të përmbajnë vetëm shkronja të vogla ose numra dhe duhet të kenë saktësisht 10 karaktere."
|
msgstr "Kodet rezervë mund të përmbajnë vetëm shkronja të vogla ose numra dhe duhet të kenë saktësisht 10 karaktere."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr "E ndërtuar me"
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr "Nga komuniteti, për komunitetin."
|
msgstr "Nga komuniteti, për komunitetin."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr "Konfirmo fjalëkalimin e ri"
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Vazhdo"
|
msgstr "Vazhdo"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Kopjo"
|
msgstr "Kopjo"
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr "Kopjo linkun e CV-së"
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr "Kopjo në Clipboard"
|
msgstr "Kopjo në Clipboard"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr "Krijo"
|
msgstr "Krijo"
|
||||||
@ -328,7 +328,7 @@ msgstr "Krijo"
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr "Krijo një llogari të re"
|
msgstr "Krijo një llogari të re"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr "Krijo një vlerë të re"
|
msgstr "Krijo një vlerë të re"
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr "Data"
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Data ose intervali"
|
msgstr "Data ose intervali"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr "Shkarko PDF"
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr "Shkarkimet"
|
msgstr "Shkarkimet"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr "Dyfisho"
|
msgstr "Dyfisho"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr "Dupliko një vlerë ekzistuese"
|
msgstr "Dupliko një vlerë ekzistuese"
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr "Dupliko një vlerë ekzistuese"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Dyfisho një CV ekzistuese"
|
msgstr "Dyfisho një CV ekzistuese"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Përpuno"
|
msgstr "Përpuno"
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr "Varianti i germave"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Harro"
|
msgstr "Harro"
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr "Këtu mund të përditësoni informacionin e llogarisë suaj, si fotogra
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr "Këtu mund të përditësoni profilin tuaj për të personalizuar përvojën tuaj."
|
msgstr "Këtu mund të përditësoni profilin tuaj për të personalizuar përvojën tuaj."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "E fshehur"
|
msgstr "E fshehur"
|
||||||
@ -690,7 +690,7 @@ msgstr "Bëjeni CV-në tuaj publike"
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr "Ikona"
|
msgstr "Ikona"
|
||||||
@ -793,9 +793,9 @@ msgstr "filan.fisteku@shembull.al"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Fjalët kyçe"
|
msgstr "Fjalët kyçe"
|
||||||
@ -809,7 +809,7 @@ msgstr "Etiketa"
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Gjuha"
|
msgstr "Gjuha"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr "Përditësuar së fundmi me {lastUpdated}"
|
msgstr "Përditësuar së fundmi me {lastUpdated}"
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr "Vendndodhja"
|
msgstr "Vendndodhja"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr "Mars 2023 - tani"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Largësia e kufinjëve"
|
msgstr "Largësia e kufinjëve"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "Licenca MIT"
|
msgstr "Licenca MIT"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Emri"
|
msgstr "Emri"
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Emri"
|
msgstr "Emri"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Rrjeti"
|
msgstr "Rrjeti"
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr "Kujdes: Kjo mund ta zvoglojë sigurinë e llogarisë tuaj."
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Shënime"
|
msgstr "Shënime"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr "Fjalkalim njëpërdorimësh"
|
msgstr "Fjalkalim njëpërdorimësh"
|
||||||
@ -984,7 +980,7 @@ msgstr "Fjalkalim njëpërdorimësh"
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr "Serveri hasi në një problem."
|
msgstr "Serveri hasi në një problem."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr "Hap"
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr "Open Source"
|
msgstr "Open Source"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr "OpenAI nuk gjeti asnjë zgjedhje për tekstin tuaj."
|
msgstr "OpenAI nuk gjeti asnjë zgjedhje për tekstin tuaj."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "Integrimi me OpenAI"
|
msgstr "Integrimi me 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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr "Pozicioni"
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr "Mundësuar nga"
|
msgstr "Mundësuar nga"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr "Mundësuar nga <0>Simple Icons</0>"
|
msgstr "Mundësuar nga <0>Simple Icons</0>"
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr ""
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Ribëj"
|
msgstr "Ribëj"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Fshi"
|
msgstr "Fshi"
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr "Fshi faqen"
|
msgstr "Fshi faqen"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr "I pasura në veçori, jo në çmim."
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr "E rrumbullakësuar"
|
msgstr "E rrumbullakësuar"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Ruaj ndryshimet"
|
msgstr "Ruaj ndryshimet"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr "Tema"
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr "Diçka dështoi gjatë lidhjes me shfletuesin. Sigurohu që \"chrome\" po funksionon dhe është i arritshëm."
|
msgstr "Diçka dështoi gjatë lidhjes me shfletuesin. Sigurohu që \"chrome\" po funksionon dhe është i arritshëm."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr "Zhbëj"
|
msgstr "Zhbëj"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr "Shkyçja e një CV-je ju lejon të bëni ndryshime në të përsëri."
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr "I paverifikuar"
|
msgstr "I paverifikuar"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr "Përditëso një vlerë ekzistuese"
|
msgstr "Përditëso një vlerë ekzistuese"
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr "Emri i përdoruesit"
|
msgstr "Emri i përdoruesit"
|
||||||
@ -1610,7 +1609,7 @@ msgstr "Valido"
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr "U validua"
|
msgstr "U validua"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Vlera"
|
msgstr "Vlera"
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr "Versioni 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Shikime"
|
msgstr "Shikime"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "E dukshme"
|
msgstr "E dukshme"
|
||||||
|
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr "Ne e verifikojmë adresën tuaj të emailit vetëm për t'u siguruar që mund t'ju dërgojmë linkun për rivendosje të fjalëkalimit në rast se harroni fjalëkalimin tuaj."
|
msgstr "Ne e verifikojmë adresën tuaj të emailit vetëm për t'u siguruar që mund t'ju dërgojmë linkun për rivendosje të fjalëkalimit në rast se harroni fjalëkalimin tuaj."
|
||||||
@ -1648,7 +1651,7 @@ 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/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr "Faqja e internetit"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Çfarë ka të re në versionin e fundit"
|
msgstr "Çfarë ka të re në versionin e fundit"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Mund të shtoni fjalë kyçe duke i ndarë me presje ose duke shtypur enter."
|
msgstr "Mund të shtoni fjalë kyçe duke i ndarë me presje ose duke shtypur enter."
|
||||||
@ -1672,11 +1675,11 @@ msgstr "Mund të shtoni fjalë kyçe duke i ndarë me presje ose duke shtypur en
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Ju gjithashtu mund të jepni emrin tuaj të përdoruesit."
|
msgstr "Ju gjithashtu mund të jepni emrin tuaj të përdoruesit."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
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."
|
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."
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr "Ju mund të përdorni OpenAI API për t'ju ndihmuar të krijoni përmbaj
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Ju mund të gjurmoni numrin e shikimeve dhe shkarkimeve që ka marrë CV-ja juaj duke e shpërndarë atë me publikun."
|
msgstr "Ju mund të gjurmoni numrin e shikimeve dhe shkarkimeve që ka marrë CV-ja juaj duke e shpërndarë atë me publikun."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr "Keni mesazhe të palexuara!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Llogaria juaj dhe të gjitha të dhënat tuaja janë fshirë me sukses."
|
msgstr "Llogaria juaj dhe të gjitha të dhënat tuaja janë fshirë me sukses."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: sr\n"
|
"Language: sr\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:13\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Serbian (Cyrillic)\n"
|
"Language-Team: Serbian (Cyrillic)\n"
|
||||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||||
@ -38,7 +38,7 @@ msgstr ""
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr ""
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -146,7 +146,7 @@ msgstr ""
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr ""
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr ""
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr "Од заједнице, за заједницу."
|
msgstr "Од заједнице, за заједницу."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr ""
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr ""
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr "Копирај у клипборд"
|
msgstr "Копирај у клипборд"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr "Направи"
|
msgstr "Направи"
|
||||||
@ -328,7 +328,7 @@ msgstr "Направи"
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr "Креирајте нови налог"
|
msgstr "Креирајте нови налог"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr "Креирајте нову ставку"
|
msgstr "Креирајте нову ставку"
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr "Датум"
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Датум или опсег датума"
|
msgstr "Датум или опсег датума"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr "Преузми PDF"
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr "Преузимања"
|
msgstr "Преузимања"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr "Дупликат"
|
msgstr "Дупликат"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr "Дуплирај постојећу ставку"
|
msgstr "Дуплирај постојећу ставку"
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr "Дуплирај постојећу ставку"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Дуплирај постојећи резиме"
|
msgstr "Дуплирај постојећи резиме"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Измени"
|
msgstr "Измени"
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr ""
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr "Овде можете ажурирати информације о св
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr "Овде можете ажурирати свој профил да бисте прилагодили и персонализовали своје корисничко искуство."
|
msgstr "Овде можете ажурирати свој профил да бисте прилагодили и персонализовали своје корисничко искуство."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Сакривено"
|
msgstr "Сакривено"
|
||||||
@ -690,7 +690,7 @@ msgstr "Хостујте свој резиме јавно"
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr "Иконица"
|
msgstr "Иконица"
|
||||||
@ -793,9 +793,9 @@ msgstr ""
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -809,7 +809,7 @@ msgstr ""
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr ""
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr ""
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -984,7 +980,7 @@ msgstr ""
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr ""
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: 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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr ""
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr ""
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr ""
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr ""
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr ""
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1610,7 +1609,7 @@ msgstr ""
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr ""
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr ""
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1648,7 +1651,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr ""
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1672,11 +1675,11 @@ msgstr ""
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr ""
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr ""
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: sv\n"
|
"Language: sv\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:14\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Swedish\n"
|
"Language-Team: Swedish\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -38,7 +38,7 @@ msgstr "<0>Jag byggde Reactive Resume mestadels själv på min fritid, med mycke
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr "<0>Jag är säker på att appen inte är perfekt, men jag vill att den ska vara det.</0> <1>Om du stötte på några problem när du skapade ditt CV, eller har en idé som skulle hjälpa dig och andra användare att skapa ditt CV enklare, släpp ett problem på repo:t eller skicka ett e-postmeddelande till mig om det.</1>"
|
msgstr "<0>Jag är säker på att appen inte är perfekt, men jag vill att den ska vara det.</0> <1>Om du stötte på några problem när du skapade ditt CV, eller har en idé som skulle hjälpa dig och andra användare att skapa ditt CV enklare, släpp ett problem på repo:t eller skicka ett e-postmeddelande till mig om det.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr "<0>Obs! </0>Genom att använda OpenAI API:et, godkänner och accepterar du <1>användarvillkoren</1> och <2>integritetspolicyn</2> som beskrivs av OpenAI. Observera att Reactive Resume inte bär något ansvar för felaktigt eller obehörigt utnyttjande av tjänsten, och eventuella återverkningar eller ansvar vilar enbart på användaren."
|
msgstr "<0>Obs! </0>Genom att använda OpenAI API:et, godkänner och accepterar du <1>användarvillkoren</1> och <2>integritetspolicyn</2> som beskrivs av OpenAI. Observera att Reactive Resume inte bär något ansvar för felaktigt eller obehörigt utnyttjande av tjänsten, och eventuella återverkningar eller ansvar vilar enbart på användaren."
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr "Accepterar endast {accept} filer"
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr "Konto"
|
msgstr "Konto"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr "Lägga till ett anpassat fält"
|
msgstr "Lägga till ett anpassat fält"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Lägg till ett nytt objekt"
|
msgstr "Lägg till ett nytt objekt"
|
||||||
@ -146,7 +146,7 @@ msgstr "Alla som har länken kan se och ladda ner CV:t."
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr "Alla som har den här länken kan se och ladda ner CV:t. Dela det på din profil eller med rekryterare."
|
msgstr "Alla som har den här länken kan se och ladda ner CV:t. Dela det på din profil eller med rekryterare."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr "Är du säker på att du vill ta bort detta objekt?"
|
msgstr "Är du säker på att du vill ta bort detta objekt?"
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr "Reservkod"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Säkerhetskopieringskoder får endast innehålla små bokstäver eller siffror och måste bestå av exakt 10 tecken."
|
msgstr "Säkerhetskopieringskoder får endast innehålla små bokstäver eller siffror och måste bestå av exakt 10 tecken."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "Bas-URL"
|
msgstr "Bas-URL"
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr "Byggt med"
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr "Av gemenskapen, för gemenskapen."
|
msgstr "Av gemenskapen, för gemenskapen."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr "Bekräfta nytt lösenord"
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Fortsätt"
|
msgstr "Fortsätt"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Kopiera"
|
msgstr "Kopiera"
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr "Kopiera länken till CV:t"
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr "Kopiera till urklipp"
|
msgstr "Kopiera till urklipp"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr "Skapa"
|
msgstr "Skapa"
|
||||||
@ -328,7 +328,7 @@ msgstr "Skapa"
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr "Skapa ett nytt konto"
|
msgstr "Skapa ett nytt konto"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr "Skapa ett nytt objekt"
|
msgstr "Skapa ett nytt objekt"
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr "Datum"
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Datum eller datumintervall"
|
msgstr "Datum eller datumintervall"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr "Ladda ner PDF"
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr "Nedladdningar"
|
msgstr "Nedladdningar"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr "Duplicera"
|
msgstr "Duplicera"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr "Duplicera ett befintligt objekt"
|
msgstr "Duplicera ett befintligt objekt"
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr "Duplicera ett befintligt objekt"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Duplicera ett befintligt CV"
|
msgstr "Duplicera ett befintligt CV"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Redigera"
|
msgstr "Redigera"
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr "Typsnittsvarianter"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "Exempelvis kan information om vilka företag du skickat detta CV till eller länkarna till jobbeskrivningarna noteras här."
|
msgstr "Exempelvis kan information om vilka företag du skickat detta CV till eller länkarna till jobbeskrivningarna noteras här."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Glöm"
|
msgstr "Glöm"
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr "Här kan du uppdatera din kontoinformation såsom din profilbild, namn o
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr "Här kan du uppdatera din profil för att anpassa och personifiera din upplevelse."
|
msgstr "Här kan du uppdatera din profil för att anpassa och personifiera din upplevelse."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Dolt"
|
msgstr "Dolt"
|
||||||
@ -690,7 +690,7 @@ msgstr "Gör ditt CV offentligt tillgängligt"
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr "Jag älskar alltid att höra från användarna av Reactive Resume med feedback eller stöd. Här är några av meddelandena jag har fått. Om du har feedback får du gärna skicka ett mejl till mig på <0>{email}</0>."
|
msgstr "Jag älskar alltid att höra från användarna av Reactive Resume med feedback eller stöd. Här är några av meddelandena jag har fått. Om du har feedback får du gärna skicka ett mejl till mig på <0>{email}</0>."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr "Ikon"
|
msgstr "Ikon"
|
||||||
@ -793,9 +793,9 @@ msgstr "sven.svensson@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Nyckelord"
|
msgstr "Nyckelord"
|
||||||
@ -809,7 +809,7 @@ msgstr "Etikett"
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Språk"
|
msgstr "Språk"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr "Senast uppdaterad {lastUpdated}"
|
msgstr "Senast uppdaterad {lastUpdated}"
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr "Plats"
|
msgstr "Plats"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr "mars 2023 - nutid"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Marginal"
|
msgstr "Marginal"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "Högsta antal tokens"
|
msgstr "Högsta antal tokens"
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr "Högsta antal tokens"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "MIT-licens"
|
msgstr "MIT-licens"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "Modell"
|
msgstr "Modell"
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr "Modell"
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Namn"
|
msgstr "Namn"
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Namn"
|
msgstr "Namn"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Nätverk"
|
msgstr "Nätverk"
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr "Obs! Detta kommer att göra ditt konto mindre säkert."
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Anteckningar"
|
msgstr "Anteckningar"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr "Ollama-integration"
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr "Engångslösenord"
|
msgstr "Engångslösenord"
|
||||||
@ -984,7 +980,7 @@ msgstr "Engångslösenord"
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr "Hoppsan, servern returnerade ett fel."
|
msgstr "Hoppsan, servern returnerade ett fel."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr "Öppna"
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr "Öppen källkod"
|
msgstr "Öppen källkod"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr "OpenAI / Ollama API-nyckel"
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr "OpenAI returnerade inga val för din text."
|
msgstr "OpenAI returnerade inga val för din text."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "OpenAI-integration"
|
msgstr "OpenAI-integration"
|
||||||
|
|
||||||
|
#: 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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr "Position"
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr "Drivs av"
|
msgstr "Drivs av"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr "Drivs av <0>Simple Icons</0>"
|
msgstr "Drivs av <0>Simple Icons</0>"
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr "Reactive Resume trivs tack vare sin livfulla gemenskap. Projektet har m
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Gör om"
|
msgstr "Gör om"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Ta bort"
|
msgstr "Ta bort"
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr "Ta bort sida"
|
msgstr "Ta bort sida"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr "Rik på funktioner, inte på priser."
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr "Avrundad"
|
msgstr "Avrundad"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Spara ändringar"
|
msgstr "Spara ändringar"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "Spara lokalt"
|
msgstr "Spara lokalt"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Sparad"
|
msgstr "Sparad"
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr "Tema"
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr "Det gick inte att ansluta till webbläsaren. Se till att \"chrome\" körs och kan nås."
|
msgstr "Det gick inte att ansluta till webbläsaren. Se till att \"chrome\" körs och kan nås."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr "Denna åtgärd kan återställas genom att klicka på ångra-knappen i det flytande verktygsfältet."
|
msgstr "Denna åtgärd kan återställas genom att klicka på ångra-knappen i det flytande verktygsfältet."
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr "Ångra"
|
msgstr "Ångra"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr "Genom att låsa upp ett CV kan du göra ändringar i det igen."
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr "Ej verifierat"
|
msgstr "Ej verifierat"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr "Uppdatera ett befintligt objekt"
|
msgstr "Uppdatera ett befintligt objekt"
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr "Användaren har inte en associerad 'secrets'-post. Vänligen rapportera det här problemet på GitHub."
|
msgstr "Användaren har inte en associerad 'secrets'-post. Vänligen rapportera det här problemet på GitHub."
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr "Användarnamn"
|
msgstr "Användarnamn"
|
||||||
@ -1610,7 +1609,7 @@ msgstr "Validera"
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr "Validerad"
|
msgstr "Validerad"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Värde"
|
msgstr "Värde"
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr "Version 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Visningar"
|
msgstr "Visningar"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Synlig"
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr "Vi verifierar din e-postadress endast för att säkerställa att vi kan skicka dig en länk för återställning av lösenord om du glömmer ditt lösenord."
|
msgstr "Vi verifierar din e-postadress endast för att säkerställa att vi kan skicka dig en länk för återställning av lösenord om du glömmer ditt lösenord."
|
||||||
@ -1648,7 +1651,7 @@ msgstr "Vi verifierar din e-postadress endast för att säkerställa att vi kan
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr "Webbplats"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Vad är nytt i den senaste versionen"
|
msgstr "Vad är nytt i den senaste versionen"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Du kan lägga till flera nyckelord genom att separera dem med ett kommatecken eller trycka på enter."
|
msgstr "Du kan lägga till flera nyckelord genom att separera dem med ett kommatecken eller trycka på enter."
|
||||||
@ -1672,11 +1675,11 @@ msgstr "Du kan lägga till flera nyckelord genom att separera dem med ett kommat
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Du kan också ange ditt användarnamn."
|
msgstr "Du kan också ange ditt användarnamn."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 integrera med Ollama genom att ställa in API-nyckeln till 'sk-1234567890abcdef' och bas-URL till din Ollama URL. Exempelvis 'http://localhost:11434/v1'. Du kan också välja modeller och ange högsta antalet tokens."
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
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."
|
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."
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr "Du kan använda OpenAI API:et för att hjälpa dig att skapa innehåll e
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Du kan spåra antalet visningar ditt CV har fått, eller hur många personer som har laddat ner CV:t genom att aktivera offentlig delning."
|
msgstr "Du kan spåra antalet visningar ditt CV har fått, eller hur många personer som har laddat ner CV:t genom att aktivera offentlig delning."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "Du har möjlighet att <0>skaffa din egen OpenAI API-nyckel</0>. Den här nyckeln ger dig möjlighet att utnyttja API:et som du vill. Alternativt, om du vill inaktivera AI-funktionerna i Reactive Resume helt och hållet, kan du helt enkelt ta bort nyckeln från dina inställningar."
|
msgstr "Du har möjlighet att <0>skaffa din egen OpenAI API-nyckel</0>. Den här nyckeln ger dig möjlighet att utnyttja API:et som du vill. Alternativt, om du vill inaktivera AI-funktionerna i Reactive Resume helt och hållet, kan du helt enkelt ta bort nyckeln från dina inställningar."
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr "Du har fått mail!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Ditt konto och alla dina uppgifter har tagits bort. Hej då!"
|
msgstr "Ditt konto och alla dina uppgifter har tagits bort. Hej då!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "Din API-nyckel lagras säkert i webbläsarens lokala lagring och används endast när du gör förfrågningar till OpenAI via deras officiella SDK. Du kan vara säker på att din nyckel inte överförs till någon extern server förutom när du interagerar med OpenAI:s tjänster."
|
msgstr "Din API-nyckel lagras säkert i webbläsarens lokala lagring och används endast när du gör förfrågningar till OpenAI via deras officiella SDK. Du kan vara säker på att din nyckel inte överförs till någon extern server förutom när du interagerar med OpenAI:s tjänster."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: ta\n"
|
"Language: ta\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:14\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Tamil\n"
|
"Language-Team: Tamil\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -38,7 +38,7 @@ msgstr ""
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr ""
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -146,7 +146,7 @@ msgstr ""
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr ""
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr ""
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr ""
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr ""
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -328,7 +328,7 @@ msgstr ""
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr ""
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr ""
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr ""
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr ""
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr ""
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -690,7 +690,7 @@ msgstr ""
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -793,9 +793,9 @@ msgstr ""
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -809,7 +809,7 @@ msgstr ""
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr ""
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr ""
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -984,7 +980,7 @@ msgstr ""
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr ""
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: 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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr ""
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr ""
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr ""
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr ""
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr ""
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1610,7 +1609,7 @@ msgstr ""
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr ""
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr ""
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1648,7 +1651,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr ""
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1672,11 +1675,11 @@ msgstr ""
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr ""
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr ""
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: te\n"
|
"Language: te\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:14\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Telugu\n"
|
"Language-Team: Telugu\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -38,7 +38,7 @@ msgstr ""
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr ""
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -146,7 +146,7 @@ msgstr ""
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr ""
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr ""
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr ""
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr ""
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -328,7 +328,7 @@ msgstr ""
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr ""
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr ""
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr ""
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr ""
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr ""
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -690,7 +690,7 @@ msgstr ""
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -793,9 +793,9 @@ msgstr ""
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -809,7 +809,7 @@ msgstr ""
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr ""
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr ""
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -984,7 +980,7 @@ msgstr ""
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr ""
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: 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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr ""
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr ""
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr ""
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr ""
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr ""
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1610,7 +1609,7 @@ msgstr ""
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr ""
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr ""
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1648,7 +1651,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr ""
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1672,11 +1675,11 @@ msgstr ""
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr ""
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr ""
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: th\n"
|
"Language: th\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:14\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Thai\n"
|
"Language-Team: Thai\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
@ -38,7 +38,7 @@ msgstr "<0>ผมสร้าง Reactive Resume ด้วยตัวเอง
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr "<0>ผมมั่นใจว่าแอปยังไม่สมบูรณ์ดี แต่ผมก็อยากให้มันเป็นอย่างนั้น</0><1>ถ้าคุณเจอปัญหาใดๆ ระหว่างที่สร้างเรซูเม่ หรือมีไอเดียดีๆ ที่จะช่วยให้คุณและคนอื่นๆ สร้างเรซูเม่ได้ง่ายขึ้น ให้เปิด issue มาที่ repository ของแอปหรือส่งอีเมลหาผมได้เลยครับ</1>"
|
msgstr "<0>ผมมั่นใจว่าแอปยังไม่สมบูรณ์ดี แต่ผมก็อยากให้มันเป็นอย่างนั้น</0><1>ถ้าคุณเจอปัญหาใดๆ ระหว่างที่สร้างเรซูเม่ หรือมีไอเดียดีๆ ที่จะช่วยให้คุณและคนอื่นๆ สร้างเรซูเม่ได้ง่ายขึ้น ให้เปิด issue มาที่ repository ของแอปหรือส่งอีเมลหาผมได้เลยครับ</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr "<0>หมายเหตุ: </0>การใช้ OpenAI API หมายความว่า คุณรับรู้และยอมรับ<1>ข้อกำหนดการใช้บริการ</1>และ<2>นโยบายความเป็นส่วนตัว</2>ของ OpenAI โปรดทราบว่า Reactive Resume ไม่รับผิดชอบการใช้บริการที่ไม่เหมาะสมหรือไม่ได้รับการอนุญาต และความรับผิดชอบเป็นของผู้ใช้แต่เพียงผู้เดียว"
|
msgstr "<0>หมายเหตุ: </0>การใช้ OpenAI API หมายความว่า คุณรับรู้และยอมรับ<1>ข้อกำหนดการใช้บริการ</1>และ<2>นโยบายความเป็นส่วนตัว</2>ของ OpenAI โปรดทราบว่า Reactive Resume ไม่รับผิดชอบการใช้บริการที่ไม่เหมาะสมหรือไม่ได้รับการอนุญาต และความรับผิดชอบเป็นของผู้ใช้แต่เพียงผู้เดียว"
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr "ยอมรับเฉพาะไฟล์ {accept}"
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr "บัญชี"
|
msgstr "บัญชี"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr "เพิ่มช่องข้อมูลที่กำหนดเอง"
|
msgstr "เพิ่มช่องข้อมูลที่กำหนดเอง"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "เพิ่มรายการใหม่"
|
msgstr "เพิ่มรายการใหม่"
|
||||||
@ -146,7 +146,7 @@ msgstr "ทุกคนที่มีลิงก์สามารถดูแ
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr "ทุกคนที่มีลิงค์นี้สามารถดูและดาวน์โหลดเรซูเม่ได้ แชร์ไปยังโปรไฟล์ของคุณหรือฝ่ายสรรหาบุคลากรได้"
|
msgstr "ทุกคนที่มีลิงค์นี้สามารถดูและดาวน์โหลดเรซูเม่ได้ แชร์ไปยังโปรไฟล์ของคุณหรือฝ่ายสรรหาบุคลากรได้"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr "คุณแน่ใจหรือไม่ว่าต้องการลบรายการนี้?"
|
msgstr "คุณแน่ใจหรือไม่ว่าต้องการลบรายการนี้?"
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr "รหัสสำรอง"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "รหัสสำรองอาจมีเฉพาะตัวอักษรพิมพ์เล็กหรือตัวเลขเท่านั้น และต้องมีจำนวนอักษร 10 ตัวเท่านั้น"
|
msgstr "รหัสสำรองอาจมีเฉพาะตัวอักษรพิมพ์เล็กหรือตัวเลขเท่านั้น และต้องมีจำนวนอักษร 10 ตัวเท่านั้น"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "Base URL"
|
msgstr "Base URL"
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr "สร้างด้วย"
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr "โดยชุมชน เพื่อชุมชน"
|
msgstr "โดยชุมชน เพื่อชุมชน"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr "ยืนยันรหัสผ่านใหม่"
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "ทำต่อ"
|
msgstr "ทำต่อ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "คัดลอก"
|
msgstr "คัดลอก"
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr "คัดลอกลิงก์ไปยังเรซูเม่"
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr "คัดลอกไปยังคลิปบอร์ด"
|
msgstr "คัดลอกไปยังคลิปบอร์ด"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr "สร้าง"
|
msgstr "สร้าง"
|
||||||
@ -328,7 +328,7 @@ msgstr "สร้าง"
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr "สร้างบัญชีใหม่"
|
msgstr "สร้างบัญชีใหม่"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr "สร้างรายการใหม่"
|
msgstr "สร้างรายการใหม่"
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr "วันที่"
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "วันที่หรือช่วงวันที่"
|
msgstr "วันที่หรือช่วงวันที่"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr "ดาวน์โหลด PDF"
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr "ยอดดาวน์โหลด"
|
msgstr "ยอดดาวน์โหลด"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr "คัดลอก"
|
msgstr "คัดลอก"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr "คัดลอกรายการที่มีอยู่"
|
msgstr "คัดลอกรายการที่มีอยู่"
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr "คัดลอกรายการที่มีอยู่"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "คัดลอกเรซูเม่ที่มีอยู่"
|
msgstr "คัดลอกเรซูเม่ที่มีอยู่"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "แก้ไข"
|
msgstr "แก้ไข"
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr "รูปแบบฟอนต์"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "ตัวอย่างเช่น ข้อมูลเกี่ยวกับบริษัทที่คุณส่งเรซูเม่นี้ให้หรือลิงก์ไปยังรายละเอียดงานสามารถเขียนไว้ได้ที่นี่"
|
msgstr "ตัวอย่างเช่น ข้อมูลเกี่ยวกับบริษัทที่คุณส่งเรซูเม่นี้ให้หรือลิงก์ไปยังรายละเอียดงานสามารถเขียนไว้ได้ที่นี่"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "ลืม"
|
msgstr "ลืม"
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr "คุณสามารถอัปเดทข้อมูลบัญ
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr "คุณสามารถอัปเดตโปรไฟล์เพื่อปรับแต่งประสบการณ์ของคุณได้ที่นี่"
|
msgstr "คุณสามารถอัปเดตโปรไฟล์เพื่อปรับแต่งประสบการณ์ของคุณได้ที่นี่"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "ซ่อนไว้"
|
msgstr "ซ่อนไว้"
|
||||||
@ -690,7 +690,7 @@ msgstr "โฮสต์เรซูเม่ของคุณสู่สาธ
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr "ผมชอบได้ยินได้ฟังความคิดเห็นหรือคำสนับสนุนจากผู้ใช้ Reactive Resume อยู่เสมอ นี่คือข้อความบางส่วนที่ผมได้รับ หากคุณมีความคิดเห็นใดๆ โปรดติดต่อผมทางอีเมลที่ <0>{email}</0>"
|
msgstr "ผมชอบได้ยินได้ฟังความคิดเห็นหรือคำสนับสนุนจากผู้ใช้ Reactive Resume อยู่เสมอ นี่คือข้อความบางส่วนที่ผมได้รับ หากคุณมีความคิดเห็นใดๆ โปรดติดต่อผมทางอีเมลที่ <0>{email}</0>"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr "ไอคอน"
|
msgstr "ไอคอน"
|
||||||
@ -793,9 +793,9 @@ msgstr "somchai.niranam@example.th"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "คีย์เวิร์ด"
|
msgstr "คีย์เวิร์ด"
|
||||||
@ -809,7 +809,7 @@ msgstr "ชื่อกำกับ"
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "ภาษา"
|
msgstr "ภาษา"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr "อัปเดตล่าสุด {lastUpdated}"
|
msgstr "อัปเดตล่าสุด {lastUpdated}"
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr "สถานที่"
|
msgstr "สถานที่"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr "มีนาคม 2566 - ปัจจุบัน"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "ระยะขอบ"
|
msgstr "ระยะขอบ"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "Max Tokens"
|
msgstr "Max Tokens"
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr "Max Tokens"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "ใบอนุญาต MIT"
|
msgstr "ใบอนุญาต MIT"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "โมเดล"
|
msgstr "โมเดล"
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr "โมเดล"
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "ชื่อ"
|
msgstr "ชื่อ"
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "ชื่อ"
|
msgstr "ชื่อ"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "ชื่อเว็บไซต์"
|
msgstr "ชื่อเว็บไซต์"
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr "หมายเหตุ: บัญชีของคุณจะปล
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "โน้ต"
|
msgstr "โน้ต"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr "การเชื่อมต่อ Ollama"
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr "รหัสผ่านครั้งเดียว"
|
msgstr "รหัสผ่านครั้งเดียว"
|
||||||
@ -984,7 +980,7 @@ msgstr "รหัสผ่านครั้งเดียว"
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr "อุ๊ปส์ เซิร์ฟเวอร์ส่งข้อผิดพลาดมา"
|
msgstr "อุ๊ปส์ เซิร์ฟเวอร์ส่งข้อผิดพลาดมา"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr "เปิด"
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr "โอเพนซอร์ส"
|
msgstr "โอเพนซอร์ส"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr "ไม่พบ API Key กรุณาระบุ API Key ที่ถูกต้อง"
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr "OpenAI ไม่ได้ส่งตัวเลือกใดๆ ให้กับข้อความของคุณ"
|
msgstr "OpenAI ไม่ได้ส่งตัวเลือกใดๆ ให้กับข้อความของคุณ"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "การใช้ระบบ OpenAI"
|
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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr "ตำแหน่ง"
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr "ขับเคลื่อนโดย"
|
msgstr "ขับเคลื่อนโดย"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr "ขับเคลื่อนโดย <0>Simple Icons</0>"
|
msgstr "ขับเคลื่อนโดย <0>Simple Icons</0>"
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr "Reactive Resume ประสบความสำเร็จได้
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "ทำใหม่"
|
msgstr "ทำใหม่"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "ลบออก"
|
msgstr "ลบออก"
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr "ลบหน้า"
|
msgstr "ลบหน้า"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr "รวยฟีเจอร์ ไม่ใช่รวยราคา"
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr "โค้งมน"
|
msgstr "โค้งมน"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "บันทึกการเปลี่ยนแปลง"
|
msgstr "บันทึกการเปลี่ยนแปลง"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "บันทึกในเบราว์เซอร์"
|
msgstr "บันทึกในเบราว์เซอร์"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "บันทึกสำเร็จ"
|
msgstr "บันทึกสำเร็จ"
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr "ธีม"
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr "มีข้อผิดพลาดในการเชื่อมต่อกับเบราว์เซอร์ โปรดตรวจสอบว่า 'chrome' กำลังทำงานอยู่และเข้าถึงได้"
|
msgstr "มีข้อผิดพลาดในการเชื่อมต่อกับเบราว์เซอร์ โปรดตรวจสอบว่า 'chrome' กำลังทำงานอยู่และเข้าถึงได้"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr "ขั้นตอนนี้สามารถย้อนกลับได้โดยการคลิกปุ่มเลิกทำในแถบเครื่องมือลอย"
|
msgstr "ขั้นตอนนี้สามารถย้อนกลับได้โดยการคลิกปุ่มเลิกทำในแถบเครื่องมือลอย"
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr "เลิกทำ"
|
msgstr "เลิกทำ"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr "การปลดล็อคเรซูเม่จะช่วยใ
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr "ยังไม่ยืนยัน"
|
msgstr "ยังไม่ยืนยัน"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr "อัปเดตรายการที่มีอยู่"
|
msgstr "อัปเดตรายการที่มีอยู่"
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr "ผู้ใช้ไม่มีข้อมูล 'secrets' ที่เกี่ยวข้อง กรุณารายงานปัญหานี้บน GitHub"
|
msgstr "ผู้ใช้ไม่มีข้อมูล 'secrets' ที่เกี่ยวข้อง กรุณารายงานปัญหานี้บน GitHub"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr "ชื่อผู้ใช้"
|
msgstr "ชื่อผู้ใช้"
|
||||||
@ -1610,7 +1609,7 @@ msgstr "ตรวจสอบ"
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr "ตรวจสอบแล้ว"
|
msgstr "ตรวจสอบแล้ว"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "ค่า"
|
msgstr "ค่า"
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr "เวอร์ชั่น 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "ยอดดู"
|
msgstr "ยอดดู"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "มองเห็นได้"
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr "เราตรวจสอบที่อยู่อีเมลของคุณเพื่อให้แน่ใจว่าเราสามารถส่งลิงก์รีเซ็ตรหัสผ่านให้คุณได้ในกรณีที่คุณลืมรหัสผ่าน"
|
msgstr "เราตรวจสอบที่อยู่อีเมลของคุณเพื่อให้แน่ใจว่าเราสามารถส่งลิงก์รีเซ็ตรหัสผ่านให้คุณได้ในกรณีที่คุณลืมรหัสผ่าน"
|
||||||
@ -1648,7 +1651,7 @@ msgstr "เราตรวจสอบที่อยู่อีเมลขอ
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr "เว็บไซต์"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "มีอะไรใหม่ในเวอร์ชั่นล่าสุด"
|
msgstr "มีอะไรใหม่ในเวอร์ชั่นล่าสุด"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "คุณสามารถเพิ่มคีย์เวิร์ดได้หลายคำโดยคั่นด้วยเครื่องหมายจุลภาคหรือกด Enter"
|
msgstr "คุณสามารถเพิ่มคีย์เวิร์ดได้หลายคำโดยคั่นด้วยเครื่องหมายจุลภาคหรือกด Enter"
|
||||||
@ -1672,11 +1675,11 @@ msgstr "คุณสามารถเพิ่มคีย์เวิร์ด
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "คุณสามารถป้อนชื่อผู้ใช้ของคุณได้ด้วย"
|
msgstr "คุณสามารถป้อนชื่อผู้ใช้ของคุณได้ด้วย"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 เลือกโมเดลและตั้งค่า max tokens ได้โดยตั้งค่า API Key `sk-1234567890abcdef` และ ตั้งค่าBase URL เป็น URL Ollama ของคุณ เช่น `http://localhost:11434/v1`"
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
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 เพื่อช่วยคุณสร้างเนื้อหาหรือปรับปรุงการเขียนของคุณขณะที่เขียนเรซูเม่ได้"
|
msgstr "คุณสามารถใช้ OpenAI API เพื่อช่วยคุณสร้างเนื้อหาหรือปรับปรุงการเขียนของคุณขณะที่เขียนเรซูเม่ได้"
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr "คุณสามารถใช้ OpenAI API เพื่อช่ว
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "คุณสามารถติดตามยอดดูเรซูเม่ของคุณได้ หรือดูว่ามีคนดาวน์โหลดเรซูเม่ที่เปิดเป็นสาธารณะไว้กี่คน"
|
msgstr "คุณสามารถติดตามยอดดูเรซูเม่ของคุณได้ หรือดูว่ามีคนดาวน์โหลดเรซูเม่ที่เปิดเป็นสาธารณะไว้กี่คน"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "คุณมีตัวเลือกในการ<0>ขอคีย์ OpenAI API ของคุณเอง</0> คีย์นี้ช่วยให้คุณใช้ประโยชน์จาก API ได้ตามที่คุณต้องการ กลับกัน หากคุณต้องการปิดการใช้งานคุณสมบัติ AI ใน Reactive Resume โดยสิ้นเชิง คุณแค่ลบคีย์ออกจากการตั้งค่าของคุณได้เลย"
|
msgstr "คุณมีตัวเลือกในการ<0>ขอคีย์ OpenAI API ของคุณเอง</0> คีย์นี้ช่วยให้คุณใช้ประโยชน์จาก API ได้ตามที่คุณต้องการ กลับกัน หากคุณต้องการปิดการใช้งานคุณสมบัติ AI ใน Reactive Resume โดยสิ้นเชิง คุณแค่ลบคีย์ออกจากการตั้งค่าของคุณได้เลย"
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr "เมลเข้าแล้ว!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "บัญชีของคุณและข้อมูลทั้งหมดของคุณถูกลบเรียบร้อยแล้ว ลาก่อนนะ!"
|
msgstr "บัญชีของคุณและข้อมูลทั้งหมดของคุณถูกลบเรียบร้อยแล้ว ลาก่อนนะ!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "คีย์ API ของคุณถูกจัดเก็บไว้อย่างปลอดภัยในพื้นที่จัดเก็บภายในเบราว์เซอร์ และจะเรียกใช้เมื่อมีการส่งคำขอไปยัง OpenAI ผ่านทาง SDK ทางการเท่านั้น ขอให้มั่นใจได้ว่าคีย์ของคุณจะไม่ถูกส่งไปยังเซิร์ฟเวอร์ภายนอกใดๆ ยกเว้นเมื่อมีการโต้ตอบกับบริการของ OpenAI"
|
msgstr "คีย์ API ของคุณถูกจัดเก็บไว้อย่างปลอดภัยในพื้นที่จัดเก็บภายในเบราว์เซอร์ และจะเรียกใช้เมื่อมีการส่งคำขอไปยัง OpenAI ผ่านทาง SDK ทางการเท่านั้น ขอให้มั่นใจได้ว่าคีย์ของคุณจะไม่ถูกส่งไปยังเซิร์ฟเวอร์ภายนอกใดๆ ยกเว้นเมื่อมีการโต้ตอบกับบริการของ OpenAI"
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: tr\n"
|
"Language: tr\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:14\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Turkish\n"
|
"Language-Team: Turkish\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
@ -38,7 +38,7 @@ msgstr "<0> Reactive Resume'u boş zamanlarımda çoğunlukla kendi başıma ve
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr "<0>Uygulamanın kusursuz olmadığının farkındayım, fakat daha da iyi olmasını istiyorum.</0><1>Eğer Cv'nizi oluştururken bir hata ile karşılaşırsanız veya size ve diğer kullanıcılara kolaylık sağlayacak bir fikriniz varsa, projenin repository'sine bir issue bırakın veya bununla ilgili bana bir e-posta gönderin.</1>"
|
msgstr "<0>Uygulamanın kusursuz olmadığının farkındayım, fakat daha da iyi olmasını istiyorum.</0><1>Eğer Cv'nizi oluştururken bir hata ile karşılaşırsanız veya size ve diğer kullanıcılara kolaylık sağlayacak bir fikriniz varsa, projenin repository'sine bir issue bırakın veya bununla ilgili bana bir e-posta gönderin.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr "<0>Not:</0> OpenAI API'sını kullanarak, OpenAI tarafından belirlenen <1>kullanım şartlarını</1> ve <2>gizlilik politikasını</2> onaylamış ve kabul etmiş olursunuz. Lütfen Reactive Resume'un hizmetinin yanlış veya izinsiz kullanımından kaynaklanan herhangi bir sorumluluğu üstlenmediğini ve ortaya çıkabilecek sonuçların veya yükümlülüklerin tamamen kullanıcıya ait olduğunu unutmayın."
|
msgstr "<0>Not:</0> OpenAI API'sını kullanarak, OpenAI tarafından belirlenen <1>kullanım şartlarını</1> ve <2>gizlilik politikasını</2> onaylamış ve kabul etmiş olursunuz. Lütfen Reactive Resume'un hizmetinin yanlış veya izinsiz kullanımından kaynaklanan herhangi bir sorumluluğu üstlenmediğini ve ortaya çıkabilecek sonuçların veya yükümlülüklerin tamamen kullanıcıya ait olduğunu unutmayın."
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr "Yalnızca {accept} dosyalarını kabul eder"
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr "Hesap"
|
msgstr "Hesap"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr "Özel alan ekle"
|
msgstr "Özel alan ekle"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Yeni bir Öğe Ekle"
|
msgstr "Yeni bir Öğe Ekle"
|
||||||
@ -146,7 +146,7 @@ msgstr "Bağlantıya sahip olan herkes özgeçmişi görüntüleyebilir ve indir
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr "Bu bağlantıya sahip herkes özgeçmişi görüntüleyebilir ve indirebilir. Profilinizde veya işe alım uzmanlarıyla paylaşın."
|
msgstr "Bu bağlantıya sahip herkes özgeçmişi görüntüleyebilir ve indirebilir. Profilinizde veya işe alım uzmanlarıyla paylaşın."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr "Bu öğeyi silmek istediğinizden emin misiniz?"
|
msgstr "Bu öğeyi silmek istediğinizden emin misiniz?"
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr "Yedekleme kodu"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Yedekleme kodları yalnızca küçük harf veya rakamlar içerebilir ve tam olarak 10 karakterden oluşmalıdır."
|
msgstr "Yedekleme kodları yalnızca küçük harf veya rakamlar içerebilir ve tam olarak 10 karakterden oluşmalıdır."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "Temel URL"
|
msgstr "Temel URL"
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr "İle oluşturuldu"
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr "Topluluk tarafından topluluk için oluşturuldu."
|
msgstr "Topluluk tarafından topluluk için oluşturuldu."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr "Yeni parolayı doğrulayın"
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Devam et"
|
msgstr "Devam et"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Kopyala"
|
msgstr "Kopyala"
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr "Bağlantıyı Özgeçmişe Kopyala"
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr "Panoya Kopyala"
|
msgstr "Panoya Kopyala"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr "Oluştur"
|
msgstr "Oluştur"
|
||||||
@ -328,7 +328,7 @@ msgstr "Oluştur"
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr "Yeni bir hesap oluştur"
|
msgstr "Yeni bir hesap oluştur"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr "Yeni bir öğe oluştur"
|
msgstr "Yeni bir öğe oluştur"
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr "Tarih"
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Tarih veya Tarih Aralığı"
|
msgstr "Tarih veya Tarih Aralığı"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr "PDF indir"
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr "İndirmeler"
|
msgstr "İndirmeler"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr "Çoğalt"
|
msgstr "Çoğalt"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr "Mevcut bir öğeyi çoğalt"
|
msgstr "Mevcut bir öğeyi çoğalt"
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr "Mevcut bir öğeyi çoğalt"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Mevcut bir özgeçmişi çoğalt"
|
msgstr "Mevcut bir özgeçmişi çoğalt"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Düzenle"
|
msgstr "Düzenle"
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr "Yazı Tipi Çeşitleri"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "Örneğin, bu özgeçmişi hangi şirketlere gönderdiğinize ilişkin bilgiler veya iş tanımlarının bağlantıları buraya not edilebilir."
|
msgstr "Örneğin, bu özgeçmişi hangi şirketlere gönderdiğinize ilişkin bilgiler veya iş tanımlarının bağlantıları buraya not edilebilir."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Unut"
|
msgstr "Unut"
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr "Burada profil resminiz, adınız ve kullanıcı adınız gibi hesap bilg
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr "Burada, deneyiminizi özelleştirmek ve kişiselleştirmek için profilinizi güncelleyebilirsiniz."
|
msgstr "Burada, deneyiminizi özelleştirmek ve kişiselleştirmek için profilinizi güncelleyebilirsiniz."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Gizli"
|
msgstr "Gizli"
|
||||||
@ -690,7 +690,7 @@ msgstr "Özgeçmişinizi herkese açık olarak sunun"
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr "Reactive Resume kullanıcılarından geri bildirim veya destek almayı her zaman isterim. İşte aldığım mesajlardan bazıları. Herhangi bir geri bildiriminiz varsa bana <0>{email} adresinden e-posta göndermekten çekinmeyin.</0>."
|
msgstr "Reactive Resume kullanıcılarından geri bildirim veya destek almayı her zaman isterim. İşte aldığım mesajlardan bazıları. Herhangi bir geri bildiriminiz varsa bana <0>{email} adresinden e-posta göndermekten çekinmeyin.</0>."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr "Simge"
|
msgstr "Simge"
|
||||||
@ -793,9 +793,9 @@ msgstr "john.doe@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Anahtar Kelimeler"
|
msgstr "Anahtar Kelimeler"
|
||||||
@ -809,7 +809,7 @@ msgstr "Etiket"
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Dil"
|
msgstr "Dil"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr "Son güncelleme {lastUpdated}"
|
msgstr "Son güncelleme {lastUpdated}"
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr "Konum"
|
msgstr "Konum"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr "Mart 2023 - Günümüz"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Kenar Boşlukları"
|
msgstr "Kenar Boşlukları"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "Maksimum Jeton"
|
msgstr "Maksimum Jeton"
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr "Maksimum Jeton"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "MIT Lisansı"
|
msgstr "MIT Lisansı"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "Model"
|
msgstr "Model"
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr "Model"
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "İsim"
|
msgstr "İsim"
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "İsim"
|
msgstr "İsim"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Sosyal Ağ"
|
msgstr "Sosyal Ağ"
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr "Not: Bu, hesabınızın güvenliğini azaltacaktır."
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Notlar"
|
msgstr "Notlar"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr "Ollama Entegrasyonu"
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr "Tek Kullanımlık Şifre"
|
msgstr "Tek Kullanımlık Şifre"
|
||||||
@ -984,7 +980,7 @@ msgstr "Tek Kullanımlık Şifre"
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr "Hata! Sunucu bir hata döndürdü."
|
msgstr "Hata! Sunucu bir hata döndürdü."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr "Aç"
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr "Açık Kaynak"
|
msgstr "Açık Kaynak"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr "OpenAI / Ollama API Anahtarı"
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr "OpenAI, metniniz için herhangi bir seçenek döndürmedi."
|
msgstr "OpenAI, metniniz için herhangi bir seçenek döndürmedi."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "OpenAI Entegrasyonu"
|
msgstr "OpenAI Entegrasyonu"
|
||||||
|
|
||||||
|
#: 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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr "Konum"
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr "Destekleyen"
|
msgstr "Destekleyen"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr "<0>Simple Icons</0> tarafından desteklenmektedir"
|
msgstr "<0>Simple Icons</0> tarafından desteklenmektedir"
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr "Reaktif Özgeçmiş, canlı topluluğu sayesinde gelişiyor. Bu proje il
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Yinele"
|
msgstr "Yinele"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Kaldır"
|
msgstr "Kaldır"
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr "Sayfayı Kaldır"
|
msgstr "Sayfayı Kaldır"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr "Fiyat açısından değil, özellikler açısından zengin."
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr "Yuvarlak"
|
msgstr "Yuvarlak"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Değişiklikleri Kaydet"
|
msgstr "Değişiklikleri Kaydet"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "Yerele Kaydet"
|
msgstr "Yerele Kaydet"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Kaydedildi"
|
msgstr "Kaydedildi"
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr "Tema"
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr "Tarayıcıya bağlanırken bir hata oluştu. Lütfen 'chrome'un çalıştığından ve erişilebilir olduğundan emin olun."
|
msgstr "Tarayıcıya bağlanırken bir hata oluştu. Lütfen 'chrome'un çalıştığından ve erişilebilir olduğundan emin olun."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr "Bu eylem, kayan araç çubuğundaki geri al düğmesine tıklanarak geri alınabilir."
|
msgstr "Bu eylem, kayan araç çubuğundaki geri al düğmesine tıklanarak geri alınabilir."
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr "Geri al"
|
msgstr "Geri al"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr "Bir özgeçmişin kilidini açmak, üzerinde tekrar değişiklik yapman
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr "Doğrulanmamış"
|
msgstr "Doğrulanmamış"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr "Mevcut bir öğeyi güncelle"
|
msgstr "Mevcut bir öğeyi güncelle"
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr "Kullanıcının ilişkili bir 'secrets' kaydı yok. Lütfen bu sorunu GitHub'da bildirin."
|
msgstr "Kullanıcının ilişkili bir 'secrets' kaydı yok. Lütfen bu sorunu GitHub'da bildirin."
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr "Kullanıcı adı"
|
msgstr "Kullanıcı adı"
|
||||||
@ -1610,7 +1609,7 @@ msgstr "Doğrula"
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr "Doğrulanmış"
|
msgstr "Doğrulanmış"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Değer"
|
msgstr "Değer"
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr "Sürüm 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Görüntülenmeler"
|
msgstr "Görüntülenmeler"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Görünür"
|
msgstr "Görünür"
|
||||||
|
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr "E-posta adresinizi yalnızca şifrenizi unutmanız durumunda size bir şifre sıfırlama bağlantısı gönderebilmemizi sağlamak için doğruluyoruz."
|
msgstr "E-posta adresinizi yalnızca şifrenizi unutmanız durumunda size bir şifre sıfırlama bağlantısı gönderebilmemizi sağlamak için doğruluyoruz."
|
||||||
@ -1648,7 +1651,7 @@ msgstr "E-posta adresinizi yalnızca şifrenizi unutmanız durumunda size bir ş
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr "İnternet sitesi"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "En son sürümdeki yenilikler"
|
msgstr "En son sürümdeki yenilikler"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Birden fazla anahtar kelimeyi virgülle ayırarak veya enter tuşuna basarak ekleyebilirsiniz."
|
msgstr "Birden fazla anahtar kelimeyi virgülle ayırarak veya enter tuşuna basarak ekleyebilirsiniz."
|
||||||
@ -1672,11 +1675,11 @@ msgstr "Birden fazla anahtar kelimeyi virgülle ayırarak veya enter tuşuna bas
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Kullanıcı adınızı da girebilirsiniz."
|
msgstr "Kullanıcı adınızı da girebilirsiniz."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
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."
|
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."
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr "İçerik oluşturmanıza yardımcı olması için OpenAI API'sinden yara
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Herkese açık paylaşımı etkinleştirerek özgeçmişinizin kaç görüntüleme aldığını veya kaç kişinin özgeçmişinizi indirdiğini takip edebilirsiniz."
|
msgstr "Herkese açık paylaşımı etkinleştirerek özgeçmişinizin kaç görüntüleme aldığını veya kaç kişinin özgeçmişinizi indirdiğini takip edebilirsiniz."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "<0>Kendi OpenAI API anahtarınızı edinme seçen</0>eğiniz vardır. Bu anahtar, API'den uygun gördüğünüz şekilde yararlanmanızı sağlar. Alternatif olarak, Reaktif Özgeçmiş'teki yapay zeka özelliklerini tamamen devre dışı bırakmak isterseniz, anahtarı ayarlarınızdan kaldırabilirsiniz."
|
msgstr "<0>Kendi OpenAI API anahtarınızı edinme seçen</0>eğiniz vardır. Bu anahtar, API'den uygun gördüğünüz şekilde yararlanmanızı sağlar. Alternatif olarak, Reaktif Özgeçmiş'teki yapay zeka özelliklerini tamamen devre dışı bırakmak isterseniz, anahtarı ayarlarınızdan kaldırabilirsiniz."
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr "E-postanız var!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Hesabınız ve tüm verileriniz başarıyla silindi. Güle güle!"
|
msgstr "Hesabınız ve tüm verileriniz başarıyla silindi. Güle güle!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "API anahtarınız tarayıcının yerel depolama alanında güvenli bir şekilde saklanır ve yalnızca OpenAI'ye resmi SDK'ları aracılığıyla istekte bulunurken kullanılır. OpenAI'nin hizmetleriyle etkileşim dışında anahtarınızın herhangi bir harici sunucuya iletilmediğinden emin olabilirsiniz."
|
msgstr "API anahtarınız tarayıcının yerel depolama alanında güvenli bir şekilde saklanır ve yalnızca OpenAI'ye resmi SDK'ları aracılığıyla istekte bulunurken kullanılır. OpenAI'nin hizmetleriyle etkileşim dışında anahtarınızın herhangi bir harici sunucuya iletilmediğinden emin olabilirsiniz."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: uk\n"
|
"Language: uk\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:14\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Ukrainian\n"
|
"Language-Team: Ukrainian\n"
|
||||||
"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n"
|
"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"
|
||||||
@ -38,7 +38,7 @@ msgstr "<0>Я створив Reactive Resume здебільшого сам у в
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr "<0>Я впевнений, що додаток не ідеальний, але я хотів би, щоб він був ідеальним.</0><1>Якщо ви зіткнулися з будь-якими проблемами при створенні резюме, або у вас є ідея, яка допоможе вам та іншим користувачам легше створювати резюме, напишіть про це в репозиторій або надішліть мені листа на електронну пошту.</1>"
|
msgstr "<0>Я впевнений, що додаток не ідеальний, але я хотів би, щоб він був ідеальним.</0><1>Якщо ви зіткнулися з будь-якими проблемами при створенні резюме, або у вас є ідея, яка допоможе вам та іншим користувачам легше створювати резюме, напишіть про це в репозиторій або надішліть мені листа на електронну пошту.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr "<0>Примітка: </0>Використовуючи OpenAI API, ви визнаєте і приймаєте <1>умови використання</1> і <2>політику конфіденційності</2>, викладені OpenAI. Зверніть увагу, що Reactive Resume не несе відповідальності за будь-яке неналежне або несанкціоноване використання сервісу, і будь-які наслідки або зобов'язання, що випливають з цього, покладаються виключно на користувача."
|
msgstr "<0>Примітка: </0>Використовуючи OpenAI API, ви визнаєте і приймаєте <1>умови використання</1> і <2>політику конфіденційності</2>, викладені OpenAI. Зверніть увагу, що Reactive Resume не несе відповідальності за будь-яке неналежне або несанкціоноване використання сервісу, і будь-які наслідки або зобов'язання, що випливають з цього, покладаються виключно на користувача."
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr "Приймаються тільки файли {accept}"
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr "Обліковий запис"
|
msgstr "Обліковий запис"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr "Додати кастомне поле"
|
msgstr "Додати кастомне поле"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Додайте новий елемент"
|
msgstr "Додайте новий елемент"
|
||||||
@ -146,7 +146,7 @@ msgstr "Будь-хто, хто має посилання, може перегл
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr "Будь-хто за цим посиланням може переглянути та завантажити резюме. Поділіться ним у своєму профілі або з рекрутерами."
|
msgstr "Будь-хто за цим посиланням може переглянути та завантажити резюме. Поділіться ним у своєму профілі або з рекрутерами."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr "Ви впевнені, що ви хочете видалити цей елемент?"
|
msgstr "Ви впевнені, що ви хочете видалити цей елемент?"
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr "Резервний код"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Резервні коди можуть містити тільки малі букви або цифри, і повинні бути точно 10 символів."
|
msgstr "Резервні коди можуть містити тільки малі букви або цифри, і повинні бути точно 10 символів."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "Базова URL-адреса"
|
msgstr "Базова URL-адреса"
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr "Побудований з"
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr "Спільнотою, для спільноти."
|
msgstr "Спільнотою, для спільноти."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr "Підтвердити новий пароль"
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Продовжити"
|
msgstr "Продовжити"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Скопіювати"
|
msgstr "Скопіювати"
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr "Скопіювати посилання до резюме"
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr "Копіювати до буфера обміну"
|
msgstr "Копіювати до буфера обміну"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr "Створити"
|
msgstr "Створити"
|
||||||
@ -328,7 +328,7 @@ msgstr "Створити"
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr "Створити новий обліковий запис"
|
msgstr "Створити новий обліковий запис"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr "Створити новий елемент"
|
msgstr "Створити новий елемент"
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr "Дата"
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Дата або проміжок часу"
|
msgstr "Дата або проміжок часу"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr "Завантажити в PDF"
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr "Завантажень"
|
msgstr "Завантажень"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr "Дублювати"
|
msgstr "Дублювати"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr "Дублювати існуючий елемент"
|
msgstr "Дублювати існуючий елемент"
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr "Дублювати існуючий елемент"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Дублювати існуючу резюме"
|
msgstr "Дублювати існуючу резюме"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Редагувати"
|
msgstr "Редагувати"
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr "Font Variants"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "Наприклад, інформація про компанії, до яких компаній ви відправили резюме або посилання на опис роботи, може бути відзначена тут."
|
msgstr "Наприклад, інформація про компанії, до яких компаній ви відправили резюме або посилання на опис роботи, може бути відзначена тут."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Забути"
|
msgstr "Забути"
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr "Тут ви можете оновити відомості про обл
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr "Тут ви можете оновити свій профіль, щоб налаштувати і персоналізувати свій досвід."
|
msgstr "Тут ви можете оновити свій профіль, щоб налаштувати і персоналізувати свій досвід."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Hidden"
|
msgstr "Hidden"
|
||||||
@ -690,7 +690,7 @@ msgstr "Проведіть Вашу резюме публічно"
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr "Я завжди люблю дізнаватися від користувачів реактивного відновлення з зворотним зв'язком або підтримкою. Декілька повідомлень, які я отримав. Якщо у вас є зворотний зв'язок, то можете позбутися від мене листа з <0>{email}</0>."
|
msgstr "Я завжди люблю дізнаватися від користувачів реактивного відновлення з зворотним зв'язком або підтримкою. Декілька повідомлень, які я отримав. Якщо у вас є зворотний зв'язок, то можете позбутися від мене листа з <0>{email}</0>."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr "Іконка"
|
msgstr "Іконка"
|
||||||
@ -793,9 +793,9 @@ msgstr "john.doe@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Ключові слова"
|
msgstr "Ключові слова"
|
||||||
@ -809,7 +809,7 @@ msgstr "Мітка"
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Мова:"
|
msgstr "Мова:"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr "Востаннє оновлено {lastUpdated}"
|
msgstr "Востаннє оновлено {lastUpdated}"
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr "Місцезнаходження"
|
msgstr "Місцезнаходження"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr "березня 2023 - Представлений"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Відступ"
|
msgstr "Відступ"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "Максимальна кількість токенів"
|
msgstr "Максимальна кількість токенів"
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr "Максимальна кількість токенів"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "Ліцензія MIT"
|
msgstr "Ліцензія MIT"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "Модель"
|
msgstr "Модель"
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr "Модель"
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Ім'я"
|
msgstr "Ім'я"
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Ім'я"
|
msgstr "Ім'я"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Мережа"
|
msgstr "Мережа"
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr "Примітка: Це зробить ваш обліковий запи
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Нотатки"
|
msgstr "Нотатки"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr "Ollama інтеграція"
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr "Одноразовий пароль"
|
msgstr "Одноразовий пароль"
|
||||||
@ -984,7 +980,7 @@ msgstr "Одноразовий пароль"
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr "Ой, сервер повернув помилку."
|
msgstr "Ой, сервер повернув помилку."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr "Відкриті"
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr "Відкритий вихідний код"
|
msgstr "Відкритий вихідний код"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr "Ключ API OpenAI / Ollama"
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr "OpenAI не вернув жодного вибору вашого тексту."
|
msgstr "OpenAI не вернув жодного вибору вашого тексту."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "Інтеграція OpenAI"
|
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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr "Позиція"
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr "Працює на"
|
msgstr "Працює на"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr "Працює на основі <0>Simple Icons</0>"
|
msgstr "Працює на основі <0>Simple Icons</0>"
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr "Репер процвітає завдяки яскравому спів
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Повторити дію"
|
msgstr "Повторити дію"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Видалити"
|
msgstr "Видалити"
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr "Видалити сторінку"
|
msgstr "Видалити сторінку"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr "Багаті функції не в ціні."
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr "Округлі"
|
msgstr "Округлі"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Зберегти зміни"
|
msgstr "Зберегти зміни"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "Зберегти локально"
|
msgstr "Зберегти локально"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Збережено"
|
msgstr "Збережено"
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr "Тема"
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr "Помилка підключення до браузера. Будь ласка, переконайтеся, що 'chrome' працює і доступний."
|
msgstr "Помилка підключення до браузера. Будь ласка, переконайтеся, що 'chrome' працює і доступний."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr "Цю дію можна буде відкотити, натиснувши на кнопку скасувати в плаваючій панелі інструментів."
|
msgstr "Цю дію можна буде відкотити, натиснувши на кнопку скасувати в плаваючій панелі інструментів."
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr "Скасувати"
|
msgstr "Скасувати"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr "Розблокування резюме дозволить вам вно
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr "Неперевірений"
|
msgstr "Неперевірений"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr "Оновити існуючий елемент"
|
msgstr "Оновити існуючий елемент"
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr "Користувач не має пов'язаного з цим запису секретів. Будь ласка, повідомте про цю проблему на GitHub."
|
msgstr "Користувач не має пов'язаного з цим запису секретів. Будь ласка, повідомте про цю проблему на GitHub."
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr "Ім'я користувача"
|
msgstr "Ім'я користувача"
|
||||||
@ -1610,7 +1609,7 @@ msgstr "Validate"
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr "Перевірено"
|
msgstr "Перевірено"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Цінність"
|
msgstr "Цінність"
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr "Версія 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Перегляди"
|
msgstr "Перегляди"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Видимий"
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr "Підтверджуємо вашу електронну адресу лише для того, щоб ми могли відправити вам посилання для зміни пароля."
|
msgstr "Підтверджуємо вашу електронну адресу лише для того, щоб ми могли відправити вам посилання для зміни пароля."
|
||||||
@ -1648,7 +1651,7 @@ msgstr "Підтверджуємо вашу електронну адресу л
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr "Вебсторінка"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Що нового в останній версії"
|
msgstr "Що нового в останній версії"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Ви можете додати декілька ключових слів, розділивши їх комою або натиснувши Enter."
|
msgstr "Ви можете додати декілька ключових слів, розділивши їх комою або натиснувши Enter."
|
||||||
@ -1672,11 +1675,11 @@ msgstr "Ви можете додати декілька ключових слі
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Також ви можете ввести своє ім'я користувача."
|
msgstr "Також ви можете ввести своє ім'я користувача."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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`. Ви також можете вибрати моделі та встановити максимальну кількість токенів."
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
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, щоб допомогти вам згенерувати контент, або покращити свій запис під час створення свого резюме."
|
msgstr "Ви можете використовувати OpenAI API, щоб допомогти вам згенерувати контент, або покращити свій запис під час створення свого резюме."
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr "Ви можете використовувати OpenAI API, щоб до
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Ви можете відслідковувати кількість переглядів, які ви подали або як багато людей завантажили резюме, дозволяючи спільне поширення."
|
msgstr "Ви можете відслідковувати кількість переглядів, які ви подали або як багато людей завантажили резюме, дозволяючи спільне поширення."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "У вас є можливість <0>отримати власний ключ API OpenAI </0>. Цей ключ дає вам можливість використовувати API як ви бачите на підході. Або ж, якщо ви хочете вимкнути функцію ШІ в самих умовах реактивного відновлення, ви можете просто видалити ключ у ваших налаштуваннях."
|
msgstr "У вас є можливість <0>отримати власний ключ API OpenAI </0>. Цей ключ дає вам можливість використовувати API як ви бачите на підході. Або ж, якщо ви хочете вимкнути функцію ШІ в самих умовах реактивного відновлення, ви можете просто видалити ключ у ваших налаштуваннях."
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr "Ви отримали листа!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Ваш обліковий запис і всі ваші дані було успішно видалено."
|
msgstr "Ваш обліковий запис і всі ваші дані було успішно видалено."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "Ваш ключ API надійно зберігається в локальній пам'яті браузера і використовує лише при обробці запитів до OpenAI через свій офіційний SDK. Решту запевнили, що ваш ключ не передається на будь-який зовнішній сервер, за винятком взаємодії з сервісами OpenAI."
|
msgstr "Ваш ключ API надійно зберігається в локальній пам'яті браузера і використовує лише при обробці запитів до OpenAI через свій офіційний SDK. Решту запевнили, що ваш ключ не передається на будь-який зовнішній сервер, за винятком взаємодії з сервісами OpenAI."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: uz\n"
|
"Language: uz\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:14\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Uzbek\n"
|
"Language-Team: Uzbek\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||||
@ -38,7 +38,7 @@ msgstr ""
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr "Faqat {accept} fayllarini qabul qiladi"
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr "Hisob"
|
msgstr "Hisob"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr "Maxsus maydon qo'shish"
|
msgstr "Maxsus maydon qo'shish"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Yangi narsa qo'shish"
|
msgstr "Yangi narsa qo'shish"
|
||||||
@ -146,7 +146,7 @@ msgstr "Ushbu havolaga ega bo'lgan ixtiyoriy shaxs tarjimai holni ko'rishi va yu
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr "Ushbu havolaga ega bo'lgan ixtiyoriy shaxs tarjimai holni ko'rishi va yuklab olishi mumkin. Uni hisobingizda yoki ish beruvchilar bilan ulashing."
|
msgstr "Ushbu havolaga ega bo'lgan ixtiyoriy shaxs tarjimai holni ko'rishi va yuklab olishi mumkin. Uni hisobingizda yoki ish beruvchilar bilan ulashing."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr "Haqiqatan ham buni oʻchirmoqchimisiz?"
|
msgstr "Haqiqatan ham buni oʻchirmoqchimisiz?"
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr "Zaxira kodi"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Zaxira kodlari faqat kichik harflar yoki raqamlardan iborat bo'lishi mumkin va aynan 10 belgidan iborat bo'lishi kerak."
|
msgstr "Zaxira kodlari faqat kichik harflar yoki raqamlardan iborat bo'lishi mumkin va aynan 10 belgidan iborat bo'lishi kerak."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr "Bu bilan qurilgan"
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr "Jamiyat tomonidan, jamiyat uchun."
|
msgstr "Jamiyat tomonidan, jamiyat uchun."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr "Yangi parolni tasdiqlang"
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Davom etish"
|
msgstr "Davom etish"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Nusxalash"
|
msgstr "Nusxalash"
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr "Tarjimai hol uchun Havoladan nusxa oling"
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr "Hotiraga nusxalash"
|
msgstr "Hotiraga nusxalash"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr "Yasash"
|
msgstr "Yasash"
|
||||||
@ -328,7 +328,7 @@ msgstr "Yasash"
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr "Yangi hisob yasang"
|
msgstr "Yangi hisob yasang"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr "Yangi buyum yasang"
|
msgstr "Yangi buyum yasang"
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr "Sana"
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Sana yoki sana oralig'i"
|
msgstr "Sana yoki sana oralig'i"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr "PDF yuklab olish"
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr "Yuklab olish"
|
msgstr "Yuklab olish"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr "Nusxalash"
|
msgstr "Nusxalash"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr "Mavjud buyumni nusxalash"
|
msgstr "Mavjud buyumni nusxalash"
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr "Mavjud buyumni nusxalash"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr ""
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr ""
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Yashirilgan"
|
msgstr "Yashirilgan"
|
||||||
@ -690,7 +690,7 @@ msgstr ""
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -793,9 +793,9 @@ msgstr "aziz.azizov@pochta.uz"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Kalit so’zlar"
|
msgstr "Kalit so’zlar"
|
||||||
@ -809,7 +809,7 @@ msgstr ""
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr ""
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr "Eslatma: Bu sizning hisobingiz xavfsizligini kamaytiradi."
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Eslatmalar"
|
msgstr "Eslatmalar"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr "Bir martalik parol"
|
msgstr "Bir martalik parol"
|
||||||
@ -984,7 +980,7 @@ msgstr "Bir martalik parol"
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr "Afsuski, serverda xatolik yuz berdi."
|
msgstr "Afsuski, serverda xatolik yuz berdi."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr "Ochiq"
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: 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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr ""
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr ""
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr ""
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "O'zgarishlarni saqlash"
|
msgstr "O'zgarishlarni saqlash"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "Mahalliy saqlash"
|
msgstr "Mahalliy saqlash"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Saqlandi"
|
msgstr "Saqlandi"
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr ""
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr ""
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1610,7 +1609,7 @@ msgstr ""
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr ""
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr ""
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1648,7 +1651,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr ""
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1672,11 +1675,11 @@ msgstr ""
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr ""
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr ""
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: vi\n"
|
"Language: vi\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:14\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Vietnamese\n"
|
"Language-Team: Vietnamese\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
@ -38,7 +38,7 @@ msgstr "<0>Tôi xây dựng Reactive Resume trong thời gian rảnh rỗi với
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr "<0>Tôi chắc chắn rằng ứng dụng này không hoàn hảo nhưng tôi muốn nó như vậy.</0> <1>Nếu bạn gặp phải bất kỳ vấn đề nào khi tạo sơ yếu lý lịch của mình hoặc có ý tưởng có thể giúp bạn và những người dùng khác tạo sơ yếu lý lịch của bạn dễ dàng hơn, hãy gửi vấn đề đó vào kho lưu trữ hoặc gửi email cho tôi về vấn đề đó.</1>"
|
msgstr "<0>Tôi chắc chắn rằng ứng dụng này không hoàn hảo nhưng tôi muốn nó như vậy.</0> <1>Nếu bạn gặp phải bất kỳ vấn đề nào khi tạo sơ yếu lý lịch của mình hoặc có ý tưởng có thể giúp bạn và những người dùng khác tạo sơ yếu lý lịch của bạn dễ dàng hơn, hãy gửi vấn đề đó vào kho lưu trữ hoặc gửi email cho tôi về vấn đề đó.</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr "<0>Lưu ý:</0> Bằng cách sử dụng API OpenAI, bạn thừa nhận và chấp nhận <1>điều khoản sử dụng</1> và <2>chính sách quyền riêng tư</2> được phác thảo bởi OpenAI. Xin lưu ý rằng Reactive Resume không chịu trách nhiệm đối với bất kỳ việc sử dụng dịch vụ không đúng cách hoặc trái phép nào và mọi hậu quả hoặc trách nhiệm pháp lý phát sinh chỉ thuộc về người dùng."
|
msgstr "<0>Lưu ý:</0> Bằng cách sử dụng API OpenAI, bạn thừa nhận và chấp nhận <1>điều khoản sử dụng</1> và <2>chính sách quyền riêng tư</2> được phác thảo bởi OpenAI. Xin lưu ý rằng Reactive Resume không chịu trách nhiệm đối với bất kỳ việc sử dụng dịch vụ không đúng cách hoặc trái phép nào và mọi hậu quả hoặc trách nhiệm pháp lý phát sinh chỉ thuộc về người dùng."
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr "Chỉ chấp nhận tệp {accept}"
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr "Tài khoản"
|
msgstr "Tài khoản"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr "Thêm một trường tùy chỉnh"
|
msgstr "Thêm một trường tùy chỉnh"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "Thêm mục mới"
|
msgstr "Thêm mục mới"
|
||||||
@ -146,7 +146,7 @@ msgstr "Bất kỳ ai có liên kết đều có thể xem và tải xuống sơ
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr "Bất kỳ ai có liên kết này đều có thể xem và tải xuống sơ yếu lý lịch. Chia sẻ nó trên hồ sơ của bạn hoặc với nhà tuyển dụng."
|
msgstr "Bất kỳ ai có liên kết này đều có thể xem và tải xuống sơ yếu lý lịch. Chia sẻ nó trên hồ sơ của bạn hoặc với nhà tuyển dụng."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr "Bạn có chắc bạn muốn xóa mục này?"
|
msgstr "Bạn có chắc bạn muốn xóa mục này?"
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr "Mã Backup"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "Mã backup chỉ có thể chứa chữ cái viết thường hoặc số và phải có chính xác 10 ký tự."
|
msgstr "Mã backup chỉ có thể chứa chữ cái viết thường hoặc số và phải có chính xác 10 ký tự."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr "Xây dựng với"
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr "Bởi cộng đồng, vì cộng đồng."
|
msgstr "Bởi cộng đồng, vì cộng đồng."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr "Xác nhận mật khẩu mới"
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Tiếp tục"
|
msgstr "Tiếp tục"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "Sao chép"
|
msgstr "Sao chép"
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr "Sao chép Liên kết đến Sơ yếu lý lịch"
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr "Sao chép vào bộ nhớ tạm"
|
msgstr "Sao chép vào bộ nhớ tạm"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr "Tạo"
|
msgstr "Tạo"
|
||||||
@ -328,7 +328,7 @@ msgstr "Tạo"
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr "Tạo tài khoản mới"
|
msgstr "Tạo tài khoản mới"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr "Tạo mục mới"
|
msgstr "Tạo mục mới"
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr "Ngày"
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "Ngày hoặc Khoảng ngày"
|
msgstr "Ngày hoặc Khoảng ngày"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr "Tải xuống PDF"
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr "Tải về"
|
msgstr "Tải về"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr "Tạo bản sao"
|
msgstr "Tạo bản sao"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr "Sao chép một mục hiện có"
|
msgstr "Sao chép một mục hiện có"
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr "Sao chép một mục hiện có"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "Sao chép sơ yếu lý lịch hiện có"
|
msgstr "Sao chép sơ yếu lý lịch hiện có"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Chỉnh sửa"
|
msgstr "Chỉnh sửa"
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr "Biến thể Font"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "Ví dụ: thông tin về công ty bạn đã gửi bản lý lịch này đến hoặc các liên kết đến mô tả công việc có thể được ghi lại ở đây."
|
msgstr "Ví dụ: thông tin về công ty bạn đã gửi bản lý lịch này đến hoặc các liên kết đến mô tả công việc có thể được ghi lại ở đây."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "Quên"
|
msgstr "Quên"
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr "Tại đây, bạn có thể cập nhật thông tin tài khoản của
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr "Tại đây, bạn có thể cập nhật hồ sơ của mình để tùy chỉnh và cá nhân hóa trải nghiệm của mình."
|
msgstr "Tại đây, bạn có thể cập nhật hồ sơ của mình để tùy chỉnh và cá nhân hóa trải nghiệm của mình."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "Ẩn"
|
msgstr "Ẩn"
|
||||||
@ -690,7 +690,7 @@ msgstr "Lưu trữ sơ yếu lý lịch của bạn một cách công khai"
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr "Tôi luôn mong muốn nhận được phản hồi hoặc hỗ trợ từ người dùng Reactive Resume. Dưới đây là một số tin nhắn tôi đã nhận được. Nếu bạn có bất kỳ phản hồi nào, vui lòng gửi email cho tôi theo địa chỉ <0>{email}</0>."
|
msgstr "Tôi luôn mong muốn nhận được phản hồi hoặc hỗ trợ từ người dùng Reactive Resume. Dưới đây là một số tin nhắn tôi đã nhận được. Nếu bạn có bất kỳ phản hồi nào, vui lòng gửi email cho tôi theo địa chỉ <0>{email}</0>."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr "Icon"
|
msgstr "Icon"
|
||||||
@ -793,9 +793,9 @@ msgstr "john.doe@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Từ khóa"
|
msgstr "Từ khóa"
|
||||||
@ -809,7 +809,7 @@ msgstr "Nhãn"
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Ngôn ngữ"
|
msgstr "Ngôn ngữ"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr "Cập nhật lần cuối {lastUpdated}"
|
msgstr "Cập nhật lần cuối {lastUpdated}"
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr "Vị trí"
|
msgstr "Vị trí"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr "03/2023 - Hiện tại"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "Lề"
|
msgstr "Lề"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr ""
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "Giấy phép MIT"
|
msgstr "Giấy phép MIT"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr ""
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Tên"
|
msgstr "Tên"
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Tên"
|
msgstr "Tên"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Mạng"
|
msgstr "Mạng"
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr "Lưu ý: Điều này sẽ làm cho tài khoản của bạn ít an toà
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Ghi chú"
|
msgstr "Ghi chú"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr "Mật khẩu sử dụng một lần"
|
msgstr "Mật khẩu sử dụng một lần"
|
||||||
@ -984,7 +980,7 @@ msgstr "Mật khẩu sử dụng một lần"
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr "Rất tiếc, máy chủ đã trả về lỗi."
|
msgstr "Rất tiếc, máy chủ đã trả về lỗi."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr "Mở"
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr "Mã nguồn mở"
|
msgstr "Mã nguồn mở"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr "OpenAI không trả về bất kỳ phản hồi nào cho văn bản của bạn."
|
msgstr "OpenAI không trả về bất kỳ phản hồi nào cho văn bản của bạn."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "Tích hợp OpenAI"
|
msgstr "Tích hợp OpenAI"
|
||||||
|
|
||||||
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:119
|
||||||
|
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/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr "Vị trí"
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr "Chạy trên nền tảng"
|
msgstr "Chạy trên nền tảng"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr "Được hỗ trợ bởi <0>Simple Icons</0>"
|
msgstr "Được hỗ trợ bởi <0>Simple Icons</0>"
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr "Reactive Resume phát triển mạnh nhờ cộng đồng sôi động.
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "Làm lại"
|
msgstr "Làm lại"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Xóa"
|
msgstr "Xóa"
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr "Xóa trang"
|
msgstr "Xóa trang"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr "Tính năng phong phú, không quan trọng giá cả."
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr "Làm tròn"
|
msgstr "Làm tròn"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "Lưu thay đổi"
|
msgstr "Lưu thay đổi"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr "Chủ đề"
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr "Đã xảy ra lỗi khi kết nối với trình duyệt. Hãy đảm bảo rằng 'chrome' đang chạy và có thể truy cập được."
|
msgstr "Đã xảy ra lỗi khi kết nối với trình duyệt. Hãy đảm bảo rằng 'chrome' đang chạy và có thể truy cập được."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr "Hành động này có thể được hoàn nguyên bằng cách nhấp vào nút hoàn tác trên thanh công cụ nổi."
|
msgstr "Hành động này có thể được hoàn nguyên bằng cách nhấp vào nút hoàn tác trên thanh công cụ nổi."
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr "Hoàn tác"
|
msgstr "Hoàn tác"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr "Mở khóa sơ yếu lý lịch sẽ cho phép bạn điều chỉnh tha
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr "Chưa xác minh"
|
msgstr "Chưa xác minh"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr "Cập nhật một mục hiện có"
|
msgstr "Cập nhật một mục hiện có"
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr "Người dùng không có bản ghi 'bí mật' liên quan. Vui lòng báo cáo vấn đề này trên GitHub."
|
msgstr "Người dùng không có bản ghi 'bí mật' liên quan. Vui lòng báo cáo vấn đề này trên GitHub."
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr "Tên Người Dùng"
|
msgstr "Tên Người Dùng"
|
||||||
@ -1610,7 +1609,7 @@ msgstr "Xác thực"
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr "Đã xác thực"
|
msgstr "Đã xác thực"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Giá trị"
|
msgstr "Giá trị"
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr "Phiên bản 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "Lượt xem"
|
msgstr "Lượt xem"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Hiện"
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr "Chúng tôi chỉ xác minh địa chỉ email của bạn để đảm bảo rằng chúng tôi có thể gửi cho bạn liên kết đặt lại mật khẩu trong trường hợp bạn quên mật khẩu."
|
msgstr "Chúng tôi chỉ xác minh địa chỉ email của bạn để đảm bảo rằng chúng tôi có thể gửi cho bạn liên kết đặt lại mật khẩu trong trường hợp bạn quên mật khẩu."
|
||||||
@ -1648,7 +1651,7 @@ 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/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr "Trang web"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "Có gì mới trong phiên bản mới nhất"
|
msgstr "Có gì mới trong phiên bản mới nhất"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "Bạn có thể thêm nhiều từ khóa bằng cách phân tách chúng bằng dấu phẩy hoặc nhấn enter."
|
msgstr "Bạn có thể thêm nhiều từ khóa bằng cách phân tách chúng bằng dấu phẩy hoặc nhấn enter."
|
||||||
@ -1672,11 +1675,11 @@ msgstr "Bạn có thể thêm nhiều từ khóa bằng cách phân tách chúng
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "Bạn cũng có thể nhập tên người dùng của bạn."
|
msgstr "Bạn cũng có thể nhập tên người dùng của bạn."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
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."
|
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."
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr "Bạn có thể sử dụng API OpenAI để giúp bạn tạo nội dun
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "Bạn có thể theo dõi số lượt xem sơ yếu lý lịch của bạn hoặc số người đã tải xuống bằng cách bật chia sẻ công khai."
|
msgstr "Bạn có thể theo dõi số lượt xem sơ yếu lý lịch của bạn hoặc số người đã tải xuống bằng cách bật chia sẻ công khai."
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "Bạn có tùy chọn <0>lấy Key API OpenAI của bạn</0>. Key này cho phép bạn tận dụng API phù hợp với bạn. Ngoài ra, nếu bạn muốn tắt hoàn toàn các tính năng AI trong Reactive Resume, bạn chỉ cần xóa Key khỏi cài đặt của mình."
|
msgstr "Bạn có tùy chọn <0>lấy Key API OpenAI của bạn</0>. Key này cho phép bạn tận dụng API phù hợp với bạn. Ngoài ra, nếu bạn muốn tắt hoàn toàn các tính năng AI trong Reactive Resume, bạn chỉ cần xóa Key khỏi cài đặt của mình."
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr "Bạn vừa nhận thư!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "Tài khoản của bạn và tất cả dữ liệu của bạn đã được xóa thành công. Tạm biệt!"
|
msgstr "Tài khoản của bạn và tất cả dữ liệu của bạn đã được xóa thành công. Tạm biệt!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "Key API của bạn được lưu trữ an toàn trong bộ nhớ cục bộ của trình duyệt và chỉ được sử dụng khi gửi yêu cầu tới OpenAI thông qua SDK chính thức của họ. Hãy yên tâm rằng Key của bạn không được truyền đến bất kỳ máy chủ bên ngoài nào ngoại trừ khi tương tác với các dịch vụ của OpenAI."
|
msgstr "Key API của bạn được lưu trữ an toàn trong bộ nhớ cục bộ của trình duyệt và chỉ được sử dụng khi gửi yêu cầu tới OpenAI thông qua SDK chính thức của họ. Hãy yên tâm rằng Key của bạn không được truyền đến bất kỳ máy chủ bên ngoài nào ngoại trừ khi tương tác với các dịch vụ của OpenAI."
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: zh\n"
|
"Language: zh\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:13\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Chinese Simplified\n"
|
"Language-Team: Chinese Simplified\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
@ -38,7 +38,7 @@ msgstr "<0>我花费了大量业余时间,独立开发了 Reactive Resume,
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr "<0>我知道这个应用程序并不完美,但我希望它能日趋完善。</0> <1>如果您在创建简历时遇到任何问题,或者有有助于您和其他用户更轻松地创建简历的想法,请在仓库中提出问题或向我发送有关的电子邮件。</1>"
|
msgstr "<0>我知道这个应用程序并不完美,但我希望它能日趋完善。</0> <1>如果您在创建简历时遇到任何问题,或者有有助于您和其他用户更轻松地创建简历的想法,请在仓库中提出问题或向我发送有关的电子邮件。</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr "<0>注意:</0>使用 OpenAI API 即表示您承认并接受 OpenAI 的<1>使用条款</1>和<2>隐私政策</2>。请注意,Reactive Resume 对任何不当或未经授权的服务使用不承担任何责任,由此产生的任何影响或责任仅由用户承担。"
|
msgstr "<0>注意:</0>使用 OpenAI API 即表示您承认并接受 OpenAI 的<1>使用条款</1>和<2>隐私政策</2>。请注意,Reactive Resume 对任何不当或未经授权的服务使用不承担任何责任,由此产生的任何影响或责任仅由用户承担。"
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr "仅接受 {accept} 文件"
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr "账户"
|
msgstr "账户"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr "添加自定义字段"
|
msgstr "添加自定义字段"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "增加一项"
|
msgstr "增加一项"
|
||||||
@ -146,7 +146,7 @@ msgstr "任何人都可以通过此链接查看或下载简历。"
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr "任何人都可以通过此链接查看或下载简历。您可以在个人资料中附上此链接,或分享给招聘人员。"
|
msgstr "任何人都可以通过此链接查看或下载简历。您可以在个人资料中附上此链接,或分享给招聘人员。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr "您确定要删除此项目吗?"
|
msgstr "您确定要删除此项目吗?"
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr "备份码"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "备份码只包含小写字母或数字,而且必须正好是 10 个字符。"
|
msgstr "备份码只包含小写字母或数字,而且必须正好是 10 个字符。"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "基础 URL"
|
msgstr "基础 URL"
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr "构建于"
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr "来自社区,服务社区。"
|
msgstr "来自社区,服务社区。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr "确认新密码"
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "继续"
|
msgstr "继续"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "复制"
|
msgstr "复制"
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr "复制链接到简历"
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr "复制到剪贴板"
|
msgstr "复制到剪贴板"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr "创建"
|
msgstr "创建"
|
||||||
@ -328,7 +328,7 @@ msgstr "创建"
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr "创建账户"
|
msgstr "创建账户"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr "创建新条目"
|
msgstr "创建新条目"
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr "日期"
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "日期或日期范围"
|
msgstr "日期或日期范围"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr "下载 PDF"
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr "下载"
|
msgstr "下载"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr "复制"
|
msgstr "复制"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr "复制现有项目"
|
msgstr "复制现有项目"
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr "复制现有项目"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "复制现有简历"
|
msgstr "复制现有简历"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "编辑"
|
msgstr "编辑"
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr "字体变体"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "例如,您可以在此处注明您发送给的公司或者职位描述的链接。"
|
msgstr "例如,您可以在此处注明您发送给的公司或者职位描述的链接。"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "遗弃"
|
msgstr "遗弃"
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr "在这里,您可以更新您的账户信息,比如资料图片、姓
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr "在这里,您可以更新个人资料,定制个性化的体验。"
|
msgstr "在这里,您可以更新个人资料,定制个性化的体验。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "隐藏"
|
msgstr "隐藏"
|
||||||
@ -690,7 +690,7 @@ msgstr "公开展示您的简历"
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr "我们十分欢迎用户对于 Reactive Resume 的反馈和支持。这是我们收到的一些信息,如果您有任何反馈,请随时发送邮件至 <0>{email}</0>。"
|
msgstr "我们十分欢迎用户对于 Reactive Resume 的反馈和支持。这是我们收到的一些信息,如果您有任何反馈,请随时发送邮件至 <0>{email}</0>。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr "图标"
|
msgstr "图标"
|
||||||
@ -793,9 +793,9 @@ msgstr "zhangsan@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "关键词"
|
msgstr "关键词"
|
||||||
@ -809,7 +809,7 @@ msgstr "标签"
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "语言"
|
msgstr "语言"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr "最后更新 {lastUpdated}"
|
msgstr "最后更新 {lastUpdated}"
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr "位置"
|
msgstr "位置"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr "2023 年 3 月至今"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "边距"
|
msgstr "边距"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "最大 Token 数"
|
msgstr "最大 Token 数"
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr "最大 Token 数"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "MIT 许可证"
|
msgstr "MIT 许可证"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "模型"
|
msgstr "模型"
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr "模型"
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "名称"
|
msgstr "名称"
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "名称"
|
msgstr "名称"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "网络"
|
msgstr "网络"
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr "注意:这会降低您账户的安全性。"
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "注释"
|
msgstr "注释"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr "Ollama 集成"
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr "一次性密码"
|
msgstr "一次性密码"
|
||||||
@ -984,7 +980,7 @@ msgstr "一次性密码"
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr "糟糕,服务器返回错误。"
|
msgstr "糟糕,服务器返回错误。"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr "打开"
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr "开源"
|
msgstr "开源"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr "OpenAI / Ollama API 密钥"
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr "OpenAI 没有为您的文本返回任何选项。"
|
msgstr "OpenAI 没有为您的文本返回任何选项。"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "集成 OpenAI"
|
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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr "职位"
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr "技术支持:"
|
msgstr "技术支持:"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr "由 <0>Simple Icons</0> 支持"
|
msgstr "由 <0>Simple Icons</0> 支持"
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr "Reactive Resume 的蓬勃发展得益于其充满活力的社区。这
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "恢复"
|
msgstr "恢复"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "移除"
|
msgstr "移除"
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr "删除页面"
|
msgstr "删除页面"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr "物美价廉。"
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr "圆角"
|
msgstr "圆角"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "保存更改"
|
msgstr "保存更改"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "保存到本地"
|
msgstr "保存到本地"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "已保存"
|
msgstr "已保存"
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr "主题"
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr "连接浏览器时出现错误。请确保谷歌浏览器正在运行并可连接。"
|
msgstr "连接浏览器时出现错误。请确保谷歌浏览器正在运行并可连接。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr "单击浮动工具栏中的撤消按钮即可恢复此操作。"
|
msgstr "单击浮动工具栏中的撤消按钮即可恢复此操作。"
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr "撤销"
|
msgstr "撤销"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr "解锁简历将允许您再次对其进行更改。"
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr "未验证"
|
msgstr "未验证"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr "更新现有项目"
|
msgstr "更新现有项目"
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr "用户没有关联的“秘密”记录。请在 GitHub 上报告此问题。"
|
msgstr "用户没有关联的“秘密”记录。请在 GitHub 上报告此问题。"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr "用户名"
|
msgstr "用户名"
|
||||||
@ -1610,7 +1609,7 @@ msgstr "验证"
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr "已验证"
|
msgstr "已验证"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "值"
|
msgstr "值"
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr "第 4 版"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "查看"
|
msgstr "查看"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "可见"
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr "我们验证您的电子邮件地址只是为了确保在您忘记密码时能向您发送密码重置链接。"
|
msgstr "我们验证您的电子邮件地址只是为了确保在您忘记密码时能向您发送密码重置链接。"
|
||||||
@ -1648,7 +1651,7 @@ msgstr "我们验证您的电子邮件地址只是为了确保在您忘记密码
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr "网站"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "最新版本的新功能"
|
msgstr "最新版本的新功能"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "您可以通过用逗号或回车分隔来添加多个关键字。"
|
msgstr "您可以通过用逗号或回车分隔来添加多个关键字。"
|
||||||
@ -1672,11 +1675,11 @@ msgstr "您可以通过用逗号或回车分隔来添加多个关键字。"
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "您还可以输入您的用户名。"
|
msgstr "您还可以输入您的用户名。"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 集成。您还可以选择模型并设置最大 Token 数量。"
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
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 来帮助您生成内容,或在撰写简历时提高写作水平。"
|
msgstr "您可以利用 OpenAI API 来帮助您生成内容,或在撰写简历时提高写作水平。"
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr "您可以利用 OpenAI API 来帮助您生成内容,或在撰写简历
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "您可以跟踪简历的浏览量,或通过启用公开共享功能跟踪有多少人下载了简历。"
|
msgstr "您可以跟踪简历的浏览量,或通过启用公开共享功能跟踪有多少人下载了简历。"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "您可以选择<0>获取您自己的 OpenAI API 密钥</0>,此密钥使您能够根据需要使用 API。或者,如果您希望完全禁用 Reactive Resume 中的 AI 功能,只需从设置中删除密钥即可。"
|
msgstr "您可以选择<0>获取您自己的 OpenAI API 密钥</0>,此密钥使您能够根据需要使用 API。或者,如果您希望完全禁用 Reactive Resume 中的 AI 功能,只需从设置中删除密钥即可。"
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr "您有新邮件!"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "已成功删除您的账户和所有数据。再见!"
|
msgstr "已成功删除您的账户和所有数据。再见!"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "您的 API 密钥安全地存储在浏览器的本地存储中,并且仅会在通过官方 SDK 向 OpenAI 发出请求时使用。请放心,除非与 OpenAI 进行服务交互,否则您的密钥不会传输到任何外部服务器。"
|
msgstr "您的 API 密钥安全地存储在浏览器的本地存储中,并且仅会在通过官方 SDK 向 OpenAI 发出请求时使用。请放心,除非与 OpenAI 进行服务交互,否则您的密钥不会传输到任何外部服务器。"
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Language: zh\n"
|
"Language: zh\n"
|
||||||
"Project-Id-Version: reactive-resume\n"
|
"Project-Id-Version: reactive-resume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"PO-Revision-Date: 2025-01-11 11:27\n"
|
"PO-Revision-Date: 2025-01-12 12:13\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Chinese Traditional\n"
|
"Language-Team: Chinese Traditional\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
@ -38,7 +38,7 @@ msgstr "<0>我花費了自己大量的業餘時間開發了 Reactive Resume,
|
|||||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||||
msgstr "<0>我相信這隻應用程式還不夠完美,但希望它能夠與日俱進。</0><1>如果您在創建簡歷時遇到任何問題,或者有其他可以幫助您和其他人的想法讓使用者可以更輕鬆地創建履歷,請在 Repository 發送 issue 或將相關問題的 email 寄送給我。</1>"
|
msgstr "<0>我相信這隻應用程式還不夠完美,但希望它能夠與日俱進。</0><1>如果您在創建簡歷時遇到任何問題,或者有其他可以幫助您和其他人的想法讓使用者可以更輕鬆地創建履歷,請在 Repository 發送 issue 或將相關問題的 email 寄送給我。</1>"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:208
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:201
|
||||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||||
msgstr "<0>注意:</0>使用 OpenAI API 即表示您承認並接受<1>使用條款</1>和<2>隱私權政策</2>OpenAI 概述。請注意,Reactive Resume 對任何不當或未經授權的服務使用不承擔任何責任,由此產生的任何影響或責任僅由使用者承擔。"
|
msgstr "<0>注意:</0>使用 OpenAI API 即表示您承認並接受<1>使用條款</1>和<2>隱私權政策</2>OpenAI 概述。請注意,Reactive Resume 對任何不當或未經授權的服務使用不承擔任何責任,由此產生的任何影響或責任僅由使用者承擔。"
|
||||||
|
|
||||||
@ -98,12 +98,12 @@ msgstr "只接受 {accept} 檔案"
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr "帳號"
|
msgstr "帳號"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:159
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:175
|
||||||
msgid "Add a custom field"
|
msgid "Add a custom field"
|
||||||
msgstr "新增自訂欄位"
|
msgstr "新增自訂欄位"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:117
|
#: 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:164
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:167
|
||||||
msgctxt "For example, add a new work experience, or add a new profile."
|
msgctxt "For example, add a new work experience, or add a new profile."
|
||||||
msgid "Add a new item"
|
msgid "Add a new item"
|
||||||
msgstr "新增項目"
|
msgstr "新增項目"
|
||||||
@ -146,7 +146,7 @@ msgstr "任何擁有連結的人都可以檢視和下載履歷。"
|
|||||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||||
msgstr "任何人都可以使用此鏈接檢視並下載履歷。在您的個人資料上或與招聘人員分享。"
|
msgstr "任何人都可以使用此鏈接檢視並下載履歷。在您的個人資料上或與招聘人員分享。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
||||||
msgid "Are you sure you want to delete this item?"
|
msgid "Are you sure you want to delete this item?"
|
||||||
msgstr "確定要刪除此項目嗎?"
|
msgstr "確定要刪除此項目嗎?"
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ msgstr "備份代碼"
|
|||||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||||
msgstr "備份碼只能包含小寫字母或數字,且必須正好為 10 個字元。"
|
msgstr "備份碼只能包含小寫字母或數字,且必須正好為 10 個字元。"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:134
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:132
|
||||||
msgid "Base URL"
|
msgid "Base URL"
|
||||||
msgstr "網站網址:"
|
msgstr "網站網址:"
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ msgstr "使用建立"
|
|||||||
msgid "By the community, for the community."
|
msgid "By the community, for the community."
|
||||||
msgstr "來自社區,服務社區。"
|
msgstr "來自社區,服務社區。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:131
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:154
|
||||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||||
@ -306,7 +306,7 @@ msgstr "確認新密碼"
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "繼續"
|
msgstr "繼續"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:96
|
||||||
msgid "Copy"
|
msgid "Copy"
|
||||||
msgstr "複製"
|
msgstr "複製"
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ msgstr "複製連結到簡歷"
|
|||||||
msgid "Copy to Clipboard"
|
msgid "Copy to Clipboard"
|
||||||
msgstr "複製到剪貼簿"
|
msgstr "複製到剪貼簿"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:167
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:173
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:242
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr "建立"
|
msgstr "建立"
|
||||||
@ -328,7 +328,7 @@ msgstr "建立"
|
|||||||
msgid "Create a new account"
|
msgid "Create a new account"
|
||||||
msgstr "建立一個新帳戶"
|
msgstr "建立一個新帳戶"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:155
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||||
msgid "Create a new item"
|
msgid "Create a new item"
|
||||||
msgstr "建立新項目"
|
msgstr "建立新項目"
|
||||||
|
|
||||||
@ -385,9 +385,9 @@ msgstr "日期"
|
|||||||
msgid "Date or Date Range"
|
msgid "Date or Date Range"
|
||||||
msgstr "日期或日期範圍"
|
msgstr "日期或日期範圍"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:133
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:135
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:156
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:114
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:121
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:127
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:172
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
@ -462,15 +462,15 @@ msgstr "下載 PDF"
|
|||||||
msgid "Downloads"
|
msgid "Downloads"
|
||||||
msgstr "下載"
|
msgstr "下載"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:175
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:98
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:156
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr "複製"
|
msgstr "複製"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||||
msgid "Duplicate an existing item"
|
msgid "Duplicate an existing item"
|
||||||
msgstr "複製現有項目"
|
msgstr "複製現有項目"
|
||||||
|
|
||||||
@ -478,7 +478,7 @@ msgstr "複製現有項目"
|
|||||||
msgid "Duplicate an existing resume"
|
msgid "Duplicate an existing resume"
|
||||||
msgstr "複製現有簡歷"
|
msgstr "複製現有簡歷"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:92
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "編輯"
|
msgstr "編輯"
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ msgstr "字型變體"
|
|||||||
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here."
|
||||||
msgstr "例如,您將這份履歷寄給哪些公司的相關資訊,或是工作說明的連結,都可以在這裡記下來。"
|
msgstr "例如,您將這份履歷寄給哪些公司的相關資訊,或是工作說明的連結,都可以在這裡記下來。"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:189
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:182
|
||||||
msgid "Forget"
|
msgid "Forget"
|
||||||
msgstr "略過"
|
msgstr "略過"
|
||||||
|
|
||||||
@ -658,8 +658,8 @@ msgstr "在這裡,您可以更新您的帳戶資訊,例如個人檔案圖片
|
|||||||
msgid "Here, you can update your profile to customize and personalize your experience."
|
msgid "Here, you can update your profile to customize and personalize your experience."
|
||||||
msgstr "在這裡,您可以更新個人資料,根據個人喜好定制和個人化使用體驗。"
|
msgstr "在這裡,您可以更新個人資料,根據個人喜好定制和個人化使用體驗。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:78
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:80
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:92
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:186
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr "隱藏"
|
msgstr "隱藏"
|
||||||
@ -690,7 +690,7 @@ msgstr "公開您的履歷"
|
|||||||
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}</0>."
|
||||||
msgstr "我總是很喜歡聽到 Reactive Resume 使用者的回饋或支援。以下是我收到的一些訊息。如果您有任何回饋,請隨時寫電子郵件到 <0>{email}</0>."
|
msgstr "我總是很喜歡聽到 Reactive Resume 使用者的回饋或支援。以下是我收到的一些訊息。如果您有任何回饋,請隨時寫電子郵件到 <0>{email}</0>."
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:83
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:53
|
||||||
msgid "Icon"
|
msgid "Icon"
|
||||||
msgstr "頭像"
|
msgstr "頭像"
|
||||||
@ -793,9 +793,9 @@ msgstr "john.doe@example.com"
|
|||||||
msgid "JSON"
|
msgid "JSON"
|
||||||
msgstr "JSON"
|
msgstr "JSON"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:152
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:158
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:132
|
#: 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/skills.tsx:109
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "關鍵詞"
|
msgstr "關鍵詞"
|
||||||
@ -809,7 +809,7 @@ msgstr "標籤"
|
|||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "語言"
|
msgstr "語言"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:82
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:83
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:139
|
||||||
msgid "Last updated {lastUpdated}"
|
msgid "Last updated {lastUpdated}"
|
||||||
msgstr "最後更新 {lastUpdated}"
|
msgstr "最後更新 {lastUpdated}"
|
||||||
@ -865,7 +865,7 @@ msgid "Location"
|
|||||||
msgstr "地點"
|
msgstr "地點"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:108
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:115
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:166
|
||||||
msgid "Lock"
|
msgid "Lock"
|
||||||
@ -914,7 +914,7 @@ msgstr "2023 年 3 月至今"
|
|||||||
msgid "Margin"
|
msgid "Margin"
|
||||||
msgstr "邊界"
|
msgstr "邊界"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:160
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:158
|
||||||
msgid "Max Tokens"
|
msgid "Max Tokens"
|
||||||
msgstr "最大 Token"
|
msgstr "最大 Token"
|
||||||
|
|
||||||
@ -922,7 +922,7 @@ msgstr "最大 Token"
|
|||||||
msgid "MIT License"
|
msgid "MIT License"
|
||||||
msgstr "MIT 授權"
|
msgstr "MIT 授權"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:147
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:145
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "模型"
|
msgstr "模型"
|
||||||
|
|
||||||
@ -934,7 +934,7 @@ msgstr "模型"
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:72
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:88
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "名稱"
|
msgstr "名稱"
|
||||||
@ -944,7 +944,7 @@ msgctxt "Name of the Certification"
|
|||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "名稱"
|
msgstr "名稱"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:51
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:40
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "網路"
|
msgstr "網路"
|
||||||
|
|
||||||
@ -969,10 +969,6 @@ msgstr "注意:這會降低您帳戶的安全性。"
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "注意事項"
|
msgstr "注意事項"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:102
|
|
||||||
msgid "Ollama Integration"
|
|
||||||
msgstr "Ollama 整合"
|
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
#: apps/client/src/pages/auth/verify-otp/page.tsx:82
|
||||||
msgid "One-Time Password"
|
msgid "One-Time Password"
|
||||||
msgstr "一次性密碼"
|
msgstr "一次性密碼"
|
||||||
@ -984,7 +980,7 @@ msgstr "一次性密碼"
|
|||||||
msgid "Oops, the server returned an error."
|
msgid "Oops, the server returned an error."
|
||||||
msgstr "哎呀,伺服器傳回錯誤。"
|
msgstr "哎呀,伺服器傳回錯誤。"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:90
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:97
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:148
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@ -994,21 +990,24 @@ msgstr "開啟"
|
|||||||
msgid "Open Source"
|
msgid "Open Source"
|
||||||
msgstr "開放原始碼"
|
msgstr "開放原始碼"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:121
|
|
||||||
msgid "OpenAI / Ollama API Key"
|
|
||||||
msgstr "OpenAI / Ollama API 金鑰"
|
|
||||||
|
|
||||||
#: apps/client/src/services/openai/change-tone.ts:35
|
#: apps/client/src/services/openai/change-tone.ts:35
|
||||||
#: apps/client/src/services/openai/fix-grammar.ts:33
|
#: apps/client/src/services/openai/fix-grammar.ts:33
|
||||||
#: apps/client/src/services/openai/improve-writing.ts:33
|
#: apps/client/src/services/openai/improve-writing.ts:33
|
||||||
msgid "OpenAI did not return any choices for your text."
|
msgid "OpenAI did not return any choices for your text."
|
||||||
msgstr "OpenAI 沒有為您的文字傳回任何選項。"
|
msgstr "OpenAI 沒有為您的文字傳回任何選項。"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:78
|
|
||||||
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
#: apps/client/src/pages/home/sections/features/index.tsx:52
|
||||||
msgid "OpenAI Integration"
|
msgid "OpenAI Integration"
|
||||||
msgstr "OpenAI 整合"
|
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:79
|
||||||
|
msgid "OpenAI/Ollama Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67
|
||||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:168
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
@ -1093,7 +1092,7 @@ msgstr "職位"
|
|||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr "提供者為"
|
msgstr "提供者為"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:113
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:94
|
||||||
msgid "Powered by <0>Simple Icons</0>"
|
msgid "Powered by <0>Simple Icons</0>"
|
||||||
msgstr "由 <0> 圖標</0> 提供"
|
msgstr "由 <0> 圖標</0> 提供"
|
||||||
|
|
||||||
@ -1167,7 +1166,7 @@ msgstr "Reactive Resume 的茁壯成長有賴於其充滿活力的社群。這
|
|||||||
msgid "Redo"
|
msgid "Redo"
|
||||||
msgstr "重做"
|
msgstr "重做"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:98
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:156
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "刪除"
|
msgstr "刪除"
|
||||||
@ -1177,7 +1176,7 @@ msgid "Remove Page"
|
|||||||
msgstr "刪除頁面"
|
msgstr "刪除頁面"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:94
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:101
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:152
|
||||||
msgid "Rename"
|
msgid "Rename"
|
||||||
@ -1222,18 +1221,18 @@ msgstr "功能豐富,價格卻不便宜。"
|
|||||||
msgid "Rounded"
|
msgid "Rounded"
|
||||||
msgstr "圓角"
|
msgstr "圓角"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:174
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:131
|
||||||
msgid "Save Changes"
|
msgid "Save Changes"
|
||||||
msgstr "儲存變更"
|
msgstr "儲存變更"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Save Locally"
|
msgid "Save Locally"
|
||||||
msgstr "儲存至本機"
|
msgstr "儲存至本機"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:183
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:176
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "已儲存"
|
msgstr "已儲存"
|
||||||
|
|
||||||
@ -1467,7 +1466,7 @@ msgstr "佈景主題"
|
|||||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||||
msgstr "連接瀏覽器時發生錯誤。請確定 'chrome' 正在執行並且可以連線。"
|
msgstr "連接瀏覽器時發生錯誤。請確定 'chrome' 正在執行並且可以連線。"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:126
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:128
|
||||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||||
msgstr "按一下浮動工具列上的撤消按鈕,即可還原此動作。"
|
msgstr "按一下浮動工具列上的撤消按鈕,即可還原此動作。"
|
||||||
|
|
||||||
@ -1549,7 +1548,7 @@ msgid "Undo"
|
|||||||
msgstr "復原"
|
msgstr "復原"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:103
|
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:110
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:105
|
||||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:161
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
@ -1563,7 +1562,7 @@ msgstr "解除鎖定履歷可讓您再次對其進行變更。"
|
|||||||
msgid "Unverified"
|
msgid "Unverified"
|
||||||
msgstr "未驗證"
|
msgstr "未驗證"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||||
msgid "Update an existing item"
|
msgid "Update an existing item"
|
||||||
msgstr "更新現有項目"
|
msgstr "更新現有項目"
|
||||||
|
|
||||||
@ -1593,7 +1592,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
|||||||
msgstr "使用者沒有相關的 'secrets' 記錄。請在 GitHub 上報告此問題。"
|
msgstr "使用者沒有相關的 'secrets' 記錄。請在 GitHub 上報告此問題。"
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/register/page.tsx:119
|
#: apps/client/src/pages/auth/register/page.tsx:119
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:66
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:55
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr "使用者名稱"
|
msgstr "使用者名稱"
|
||||||
@ -1610,7 +1609,7 @@ msgstr "確認"
|
|||||||
msgid "Validated"
|
msgid "Validated"
|
||||||
msgstr "已驗證"
|
msgstr "已驗證"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:97
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "數值"
|
msgstr "數值"
|
||||||
|
|
||||||
@ -1635,10 +1634,14 @@ msgstr "版本 4"
|
|||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr "查閱"
|
msgstr "查閱"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:87
|
||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "可見的"
|
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 ""
|
||||||
|
|
||||||
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
#: apps/client/src/pages/auth/verify-email/page.tsx:61
|
||||||
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password."
|
||||||
msgstr "我們驗證您的電子郵件地址,只是為了確保您忘記密碼時,我們可以寄送密碼重設連結給您。"
|
msgstr "我們驗證您的電子郵件地址,只是為了確保您忘記密碼時,我們可以寄送密碼重設連結給您。"
|
||||||
@ -1648,7 +1651,7 @@ msgstr "我們驗證您的電子郵件地址,只是為了確保您忘記密碼
|
|||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:114
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:80
|
#: 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:94
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:81
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:67
|
||||||
@ -1661,9 +1664,9 @@ msgstr "個人網站"
|
|||||||
msgid "What's new in the latest version"
|
msgid "What's new in the latest version"
|
||||||
msgstr "最新版本的新功能"
|
msgstr "最新版本的新功能"
|
||||||
|
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:157
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:163
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:137
|
#: 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/builder/sidebars/left/dialogs/skills.tsx:114
|
||||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||||
msgstr "你可以使用逗號或Enter鍵隔開,新增多個關鍵詞。"
|
msgstr "你可以使用逗號或Enter鍵隔開,新增多個關鍵詞。"
|
||||||
@ -1672,11 +1675,11 @@ msgstr "你可以使用逗號或Enter鍵隔開,新增多個關鍵詞。"
|
|||||||
msgid "You can also enter your username."
|
msgid "You can also enter your username."
|
||||||
msgstr "您也可以輸入您的使用者名稱。"
|
msgstr "您也可以輸入您的使用者名稱。"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:106
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:103
|
||||||
msgid "You can 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."
|
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 key 設定為「sk-1234567890abcdef」,並將 Base URL 設定為您的 Ollama URL,即「http://localhost:11434/v1」,即可與 Ollama 整合。您也可以挑選模型並設定最大的 tokens。"
|
msgstr ""
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:80
|
#: 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."
|
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 協助您生成內容,或在撰寫履歷時改善您的文筆。"
|
msgstr "您可以利用 OpenAI API 協助您生成內容,或在撰寫履歷時改善您的文筆。"
|
||||||
|
|
||||||
@ -1684,7 +1687,7 @@ msgstr "您可以利用 OpenAI API 協助您生成內容,或在撰寫履歷時
|
|||||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||||
msgstr "您可以追蹤履歷的檢視次數,或透過啟用公開分享功能追蹤有多少人下載了履歷。"
|
msgstr "您可以追蹤履歷的檢視次數,或透過啟用公開分享功能追蹤有多少人下載了履歷。"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:86
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:87
|
||||||
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
msgid "You have the option to <0>obtain your own OpenAI API key</0>. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings."
|
||||||
msgstr "您可以選擇 <0>取得自己的 OpenAI API 金鑰</0> 。此金鑰可讓您隨心所欲地使用 API。或者,如果您想要完全停用 Reactive Resume 中的 AI 功能,您可以直接從設定中移除金鑰。"
|
msgstr "您可以選擇 <0>取得自己的 OpenAI API 金鑰</0> 。此金鑰可讓您隨心所欲地使用 API。或者,如果您想要完全停用 Reactive Resume 中的 AI 功能,您可以直接從設定中移除金鑰。"
|
||||||
|
|
||||||
@ -1701,7 +1704,7 @@ msgstr "你有新郵件"
|
|||||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||||
msgstr "您的帳戶和所有資料已成功刪除。再見"
|
msgstr "您的帳戶和所有資料已成功刪除。再見"
|
||||||
|
|
||||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:198
|
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:191
|
||||||
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services."
|
||||||
msgstr "您的 API 密鑰會安全地儲存在瀏覽器的本機儲存空間中,並且僅會在透過官方 SDK 向 OpenAI 提出請求時使用。請放心,除了與 OpenAI 的服務互動時,您的金鑰不會傳送到任何外部伺服器。"
|
msgstr "您的 API 密鑰會安全地儲存在瀏覽器的本機儲存空間中,並且僅會在透過官方 SDK 向 OpenAI 提出請求時使用。請放心,除了與 OpenAI 的服務互動時,您的金鑰不會傳送到任何外部伺服器。"
|
||||||
|
|
||||||
|
|||||||
@ -3,7 +3,6 @@ import { t, Trans } from "@lingui/macro";
|
|||||||
import { defaultProfile, profileSchema } from "@reactive-resume/schema";
|
import { defaultProfile, profileSchema } from "@reactive-resume/schema";
|
||||||
import {
|
import {
|
||||||
Avatar,
|
Avatar,
|
||||||
AvatarImage,
|
|
||||||
FormControl,
|
FormControl,
|
||||||
FormDescription,
|
FormDescription,
|
||||||
FormField,
|
FormField,
|
||||||
@ -12,11 +11,11 @@ import {
|
|||||||
FormMessage,
|
FormMessage,
|
||||||
Input,
|
Input,
|
||||||
} from "@reactive-resume/ui";
|
} from "@reactive-resume/ui";
|
||||||
import { useCallback } from "react";
|
|
||||||
import { useForm } from "react-hook-form";
|
import { useForm } from "react-hook-form";
|
||||||
import { useDebounceValue } from "usehooks-ts";
|
|
||||||
import { z } from "zod";
|
import { z } from "zod";
|
||||||
|
|
||||||
|
import { BrandIcon } from "@/client/components/brand-icon";
|
||||||
|
|
||||||
import { SectionDialog } from "../sections/shared/section-dialog";
|
import { SectionDialog } from "../sections/shared/section-dialog";
|
||||||
import { URLInput } from "../sections/shared/url-input";
|
import { URLInput } from "../sections/shared/url-input";
|
||||||
|
|
||||||
@ -30,16 +29,6 @@ export const ProfilesDialog = () => {
|
|||||||
resolver: zodResolver(formSchema),
|
resolver: zodResolver(formSchema),
|
||||||
});
|
});
|
||||||
|
|
||||||
const [iconSrc, setIconSrc] = useDebounceValue("", 400);
|
|
||||||
|
|
||||||
const handleIconChange = useCallback((event: React.ChangeEvent<HTMLInputElement>) => {
|
|
||||||
if (event.target.value === "") {
|
|
||||||
setIconSrc("");
|
|
||||||
} else {
|
|
||||||
setIconSrc(`https://cdn.simpleicons.org/${event.target.value}`);
|
|
||||||
}
|
|
||||||
}, []);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<SectionDialog<FormValues> id="profiles" form={form} defaultValues={defaultProfile}>
|
<SectionDialog<FormValues> id="profiles" form={form} defaultValues={defaultProfile}>
|
||||||
<div className="grid grid-cols-1 gap-4 sm:grid-cols-2">
|
<div className="grid grid-cols-1 gap-4 sm:grid-cols-2">
|
||||||
@ -94,18 +83,10 @@ export const ProfilesDialog = () => {
|
|||||||
<FormLabel htmlFor="iconSlug">{t`Icon`}</FormLabel>
|
<FormLabel htmlFor="iconSlug">{t`Icon`}</FormLabel>
|
||||||
<FormControl>
|
<FormControl>
|
||||||
<div className="flex items-center gap-x-2">
|
<div className="flex items-center gap-x-2">
|
||||||
<Avatar className="size-8 bg-white">
|
<Avatar className="size-8 bg-white p-1.5">
|
||||||
{iconSrc && <AvatarImage className="p-1.5" src={iconSrc} />}
|
<BrandIcon slug={field.value} />
|
||||||
</Avatar>
|
</Avatar>
|
||||||
<Input
|
<Input {...field} placeholder="github" onChange={field.onChange} />
|
||||||
{...field}
|
|
||||||
id="iconSlug"
|
|
||||||
placeholder="github"
|
|
||||||
onChange={(event) => {
|
|
||||||
field.onChange(event);
|
|
||||||
handleIconChange(event);
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
</FormControl>
|
</FormControl>
|
||||||
<FormMessage />
|
<FormMessage />
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@reactive-resume/source",
|
"name": "@reactive-resume/source",
|
||||||
"description": "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume.",
|
"description": "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume.",
|
||||||
"version": "4.3.1",
|
"version": "4.3.2",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"private": true,
|
"private": true,
|
||||||
"author": {
|
"author": {
|
||||||
|
|||||||
Reference in New Issue
Block a user