mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-10 12:32:28 +10:00
Compare commits
93 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 890875ad9d | |||
| 11953af700 | |||
| 3c774102cf | |||
| fbf92160a3 | |||
| a798845865 | |||
| 7db57e04c0 | |||
| b23efa773f | |||
| 3b41b32f09 | |||
| 5513b909e7 | |||
| c1a50d4125 | |||
| 7babde2d62 | |||
| 08a6415ba8 | |||
| 1ee9478200 | |||
| bbe8fb6655 | |||
| 6405102cab | |||
| 32445a5cd7 | |||
| 5494d93e1d | |||
| ad9647a3f4 | |||
| 9ee7e3195b | |||
| 53dfd4cb09 | |||
| 7ceb0f6e39 | |||
| 7496461618 | |||
| b47b7824ff | |||
| ec77d13ebd | |||
| c8f7989c1f | |||
| ec612f0902 | |||
| 10b2ca8bf2 | |||
| 995b1e627b | |||
| f1d4ebb504 | |||
| 6c97c880b3 | |||
| 8fc3c25714 | |||
| 19c4d31710 | |||
| b17919e909 | |||
| 4c1c17c693 | |||
| df99470df8 | |||
| a92528cdb7 | |||
| 219e6999df | |||
| 95ee77f65c | |||
| eac26215a3 | |||
| 783af5070d | |||
| 359c7f1c80 | |||
| 71d3cea100 | |||
| befc5a67fc | |||
| 5a2c222d61 | |||
| 6a3c75c15c | |||
| b6162d7bb0 | |||
| 550e15228e | |||
| 518f5b1fb8 | |||
| 1e56f940d9 | |||
| e83e9c61b5 | |||
| 269f4c8b4d | |||
| 24f0af890a | |||
| 5ccd98bd0a | |||
| 21fe2e195c | |||
| 33168aa535 | |||
| c806dc890a | |||
| 816023eea6 | |||
| 129ac7da38 | |||
| 1b80f751a3 | |||
| f30d299949 | |||
| 5de1bafdc6 | |||
| 2a8abd3a0b | |||
| fdfcd37061 | |||
| 5d146ca86e | |||
| e9ec397663 | |||
| c4f552f44a | |||
| 1f274d8ae9 | |||
| 846050f031 | |||
| d23b35de5e | |||
| 2e4c660c97 | |||
| 4d5dc3869e | |||
| d4ca61d751 | |||
| 5f1da943b8 | |||
| 0803ad7e2d | |||
| 1326895e6b | |||
| bc17157204 | |||
| 880b3b5d37 | |||
| d9d4085591 | |||
| acedc6b116 | |||
| 4eac1c0024 | |||
| e86c390862 | |||
| 7f877861d1 | |||
| 6f97c06e3d | |||
| af4a96822c | |||
| f4bedc668d | |||
| 8e8b695cbc | |||
| 37a869fa24 | |||
| 176cac4fbe | |||
| debfd9167f | |||
| b68b5a7747 | |||
| 1aaaaeca20 | |||
| 0590367b7f | |||
| 209947266b |
@ -1,4 +1,4 @@
|
||||
name: Lint, Test and Build
|
||||
name: Lint and Build
|
||||
|
||||
on:
|
||||
push:
|
||||
@ -35,7 +35,6 @@ jobs:
|
||||
pnpm exec nx-cloud record -- pnpm exec nx format:check
|
||||
parallel-commands-on-agents: |
|
||||
pnpm exec nx affected --target=lint --parallel=3
|
||||
pnpm exec nx affected --target=test --parallel=3 --ci --code-coverage
|
||||
pnpm exec nx affected --target=build --parallel=3
|
||||
|
||||
agents:
|
||||
@ -2,4 +2,6 @@
|
||||
/coverage
|
||||
/.nx/cache
|
||||
stats.html
|
||||
pnpm-lock.yaml
|
||||
pnpm-lock.yaml
|
||||
compose-dev.yml
|
||||
compose.yml
|
||||
@ -93,3 +93,9 @@ Reactive Resume is packaged and distributed using the [MIT License](/LICENSE.md)
|
||||
|
||||
_By the community, for the community._
|
||||
A passion project by [Amruth Pillai](https://www.amruthpillai.com/)
|
||||
|
||||
<p>
|
||||
<a href="https://www.digitalocean.com/?utm_medium=opensource&utm_source=Reactive-Resume">
|
||||
<img src="https://opensource.nyc3.cdn.digitaloceanspaces.com/attribution/assets/PoweredByDO/DO_Powered_by_Badge_blue.svg" width="200px">
|
||||
</a>
|
||||
</p>
|
||||
|
||||
@ -49,17 +49,10 @@ export const ArtboardPage = () => {
|
||||
|
||||
// Typography Options
|
||||
useEffect(() => {
|
||||
if (metadata.typography.hideIcons) {
|
||||
document.querySelector("#root")!.classList.add("hide-icons");
|
||||
} else {
|
||||
document.querySelector("#root")!.classList.remove("hide-icons");
|
||||
}
|
||||
|
||||
if (metadata.typography.underlineLinks) {
|
||||
document.querySelector("#root")!.classList.add("underline-links");
|
||||
} else {
|
||||
document.querySelector("#root")!.classList.remove("underline-links");
|
||||
}
|
||||
document.querySelectorAll(`[data-page]`).forEach((el) => {
|
||||
el.classList.toggle("hide-icons", metadata.typography.hideIcons);
|
||||
el.classList.toggle("underline-links", metadata.typography.underlineLinks);
|
||||
});
|
||||
}, [metadata]);
|
||||
|
||||
return <Outlet />;
|
||||
|
||||
@ -12,14 +12,14 @@
|
||||
@apply antialiased;
|
||||
}
|
||||
|
||||
#root.hide-icons .ph {
|
||||
[data-page].hide-icons .ph {
|
||||
@apply hidden;
|
||||
}
|
||||
|
||||
#root.underline-links a {
|
||||
[data-page].underline-links a {
|
||||
@apply underline underline-offset-2;
|
||||
}
|
||||
|
||||
.wysiwyg {
|
||||
@apply prose max-w-none text-current prose-headings:mt-0 prose-headings:mb-2 prose-p:mt-0 prose-p:mb-2 prose-ul:mt-0 prose-ul:mb-2 prose-li:mt-0 prose-li:mb-2 prose-ol:mt-0 prose-ol:mb-2 prose-img:mt-0 prose-img:mb-2 prose-hr:mt-0 prose-hr:mb-2 prose-p:leading-normal prose-li:leading-normal;
|
||||
@apply prose max-w-none text-current prose-headings:mt-0 prose-headings:mb-2 prose-p:mt-0 prose-p:mb-2 prose-ul:mt-0 prose-ul:mb-2 prose-li:mt-0 prose-li:mb-2 prose-ol:mt-0 prose-ol:mb-2 prose-img:mt-0 prose-img:mb-2 prose-hr:mt-0 prose-hr:mb-2 prose-p:leading-normal prose-li:leading-normal prose-a:break-all;
|
||||
}
|
||||
|
||||
@ -84,13 +84,13 @@ const Summary = () => {
|
||||
</div>
|
||||
|
||||
<div className="mb-2 hidden items-center gap-x-2 text-center font-bold text-primary group-[.sidebar]:flex">
|
||||
<div className="h-1.5 w-1.5 rounded-full border border-primary" />
|
||||
<div className="size-1.5 rounded-full border border-primary" />
|
||||
<h4>{section.name}</h4>
|
||||
<div className="h-1.5 w-1.5 rounded-full border border-primary" />
|
||||
<div className="size-1.5 rounded-full border border-primary" />
|
||||
</div>
|
||||
|
||||
<main className={cn("relative space-y-2", "border-l border-primary pl-4")}>
|
||||
<div className="absolute left-[-4.5px] top-[8px] hidden h-[8px] w-[8px] rounded-full bg-primary group-[.main]:block" />
|
||||
<div className="absolute left-[-4.5px] top-[8px] hidden size-[8px] rounded-full bg-primary group-[.main]:block" />
|
||||
|
||||
<div
|
||||
className="wysiwyg"
|
||||
@ -167,9 +167,9 @@ const Section = <T,>({
|
||||
</div>
|
||||
|
||||
<div className="mx-auto mb-2 hidden items-center gap-x-2 text-center font-bold text-primary group-[.sidebar]:flex">
|
||||
<div className="h-1.5 w-1.5 rounded-full border border-primary" />
|
||||
<div className="size-1.5 rounded-full border border-primary" />
|
||||
<h4>{section.name}</h4>
|
||||
<div className="h-1.5 w-1.5 rounded-full border border-primary" />
|
||||
<div className="size-1.5 rounded-full border border-primary" />
|
||||
</div>
|
||||
|
||||
<div
|
||||
@ -207,7 +207,7 @@ const Section = <T,>({
|
||||
|
||||
{url !== undefined && <Link url={url} />}
|
||||
|
||||
<div className="absolute left-[-4.5px] top-px hidden h-[8px] w-[8px] rounded-full bg-primary group-[.main]:block" />
|
||||
<div className="absolute left-[-4.5px] top-px hidden size-[8px] rounded-full bg-primary group-[.main]:block" />
|
||||
</div>
|
||||
);
|
||||
})}
|
||||
|
||||
@ -99,7 +99,7 @@ const Rating = ({ level }: RatingProps) => (
|
||||
{Array.from({ length: 5 }).map((_, index) => (
|
||||
<div
|
||||
key={index}
|
||||
className={cn("h-2 w-2 rounded-full border border-primary", level > index && "bg-primary")}
|
||||
className={cn("size-2 rounded-full border border-primary", level > index && "bg-primary")}
|
||||
/>
|
||||
))}
|
||||
</div>
|
||||
@ -231,7 +231,7 @@ const Experience = () => {
|
||||
return (
|
||||
<Section<Experience> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between">
|
||||
<div className="flex items-start justify-between">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.company}</div>
|
||||
<div>{item.position}</div>
|
||||
@ -253,7 +253,7 @@ const Education = () => {
|
||||
return (
|
||||
<Section<Education> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between">
|
||||
<div className="flex items-start justify-between">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.institution}</div>
|
||||
<div>{item.area}</div>
|
||||
@ -276,7 +276,7 @@ const Awards = () => {
|
||||
return (
|
||||
<Section<Award> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between">
|
||||
<div className="flex items-start justify-between">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.title}</div>
|
||||
<div>{item.awarder}</div>
|
||||
@ -297,7 +297,7 @@ const Certifications = () => {
|
||||
return (
|
||||
<Section<Certification> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between">
|
||||
<div className="flex items-start justify-between">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.name}</div>
|
||||
<div>{item.issuer}</div>
|
||||
@ -343,7 +343,7 @@ const Publications = () => {
|
||||
return (
|
||||
<Section<Publication> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between">
|
||||
<div className="flex items-start justify-between">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.name}</div>
|
||||
<div>{item.publisher}</div>
|
||||
@ -364,7 +364,7 @@ const Volunteer = () => {
|
||||
return (
|
||||
<Section<Volunteer> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between">
|
||||
<div className="flex items-start justify-between">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.organization}</div>
|
||||
<div>{item.position}</div>
|
||||
@ -401,7 +401,7 @@ const Projects = () => {
|
||||
return (
|
||||
<Section<Project> section={section} urlKey="url" summaryKey="summary" keywordsKey="keywords">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between">
|
||||
<div className="flex items-start justify-between">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.name}</div>
|
||||
<div>{item.description}</div>
|
||||
@ -442,7 +442,7 @@ const Custom = ({ id }: { id: string }) => {
|
||||
keywordsKey="keywords"
|
||||
>
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between">
|
||||
<div className="flex items-start justify-between">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.name}</div>
|
||||
<div>{item.description}</div>
|
||||
|
||||
@ -100,7 +100,7 @@ const Rating = ({ level }: RatingProps) => (
|
||||
<div
|
||||
key={index}
|
||||
className={cn(
|
||||
"h-2 w-2 rounded-full border border-primary group-[.sidebar]:border-background",
|
||||
"size-2 rounded-full border border-primary group-[.sidebar]:border-background",
|
||||
level > index && "bg-primary group-[.sidebar]:bg-background",
|
||||
)}
|
||||
/>
|
||||
@ -200,7 +200,7 @@ const Experience = () => {
|
||||
return (
|
||||
<Section<Experience> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="flex items-start justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.company}</div>
|
||||
<div>{item.position}</div>
|
||||
@ -222,7 +222,7 @@ const Education = () => {
|
||||
return (
|
||||
<Section<Education> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="flex items-start justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.institution}</div>
|
||||
<div>{item.area}</div>
|
||||
@ -277,7 +277,7 @@ const Awards = () => {
|
||||
return (
|
||||
<Section<Award> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="flex items-start justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.title}</div>
|
||||
<div>{item.awarder}</div>
|
||||
@ -298,7 +298,7 @@ const Certifications = () => {
|
||||
return (
|
||||
<Section<Certification> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="flex items-start justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.name}</div>
|
||||
<div>{item.issuer}</div>
|
||||
@ -344,7 +344,7 @@ const Publications = () => {
|
||||
return (
|
||||
<Section<Publication> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="flex items-start justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.name}</div>
|
||||
<div>{item.publisher}</div>
|
||||
@ -365,7 +365,7 @@ const Volunteer = () => {
|
||||
return (
|
||||
<Section<Volunteer> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="flex items-start justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.organization}</div>
|
||||
<div>{item.position}</div>
|
||||
@ -402,7 +402,7 @@ const Projects = () => {
|
||||
return (
|
||||
<Section<Project> section={section} urlKey="url" summaryKey="summary" keywordsKey="keywords">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="flex items-start justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.name}</div>
|
||||
<div>{item.description}</div>
|
||||
@ -443,7 +443,7 @@ const Custom = ({ id }: { id: string }) => {
|
||||
keywordsKey="keywords"
|
||||
>
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="flex items-start justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.name}</div>
|
||||
<div>{item.description}</div>
|
||||
|
||||
@ -46,7 +46,7 @@ const Header = () => {
|
||||
<i className="ph ph-bold ph-map-pin text-primary" />
|
||||
<div>{basics.location}</div>
|
||||
</div>
|
||||
<div className="bg-text h-1 w-1 rounded-full last:hidden" />
|
||||
<div className="bg-text size-1 rounded-full last:hidden" />
|
||||
</>
|
||||
)}
|
||||
|
||||
@ -58,7 +58,7 @@ const Header = () => {
|
||||
{basics.phone}
|
||||
</a>
|
||||
</div>
|
||||
<div className="bg-text h-1 w-1 rounded-full last:hidden" />
|
||||
<div className="bg-text size-1 rounded-full last:hidden" />
|
||||
</>
|
||||
)}
|
||||
{basics.email && (
|
||||
@ -69,13 +69,13 @@ const Header = () => {
|
||||
{basics.email}
|
||||
</a>
|
||||
</div>
|
||||
<div className="bg-text h-1 w-1 rounded-full last:hidden" />
|
||||
<div className="bg-text size-1 rounded-full last:hidden" />
|
||||
</>
|
||||
)}
|
||||
{isUrl(basics.url.href) && (
|
||||
<>
|
||||
<Link url={basics.url} />
|
||||
<div className="bg-text h-1 w-1 rounded-full last:hidden" />
|
||||
<div className="bg-text size-1 rounded-full last:hidden" />
|
||||
</>
|
||||
)}
|
||||
{basics.customFields.map((item) => (
|
||||
@ -84,7 +84,7 @@ const Header = () => {
|
||||
<i className={cn(`ph ph-bold ph-${item.icon}`, "text-primary")} />
|
||||
<span>{[item.name, item.value].filter(Boolean).join(": ")}</span>
|
||||
</div>
|
||||
<div className="bg-text h-1 w-1 rounded-full last:hidden" />
|
||||
<div className="bg-text size-1 rounded-full last:hidden" />
|
||||
</Fragment>
|
||||
))}
|
||||
</div>
|
||||
@ -258,7 +258,7 @@ const Experience = () => {
|
||||
return (
|
||||
<Section<Experience> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="flex items-start justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.company}</div>
|
||||
<div>{item.position}</div>
|
||||
@ -280,7 +280,7 @@ const Education = () => {
|
||||
return (
|
||||
<Section<Education> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="flex items-start justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.institution}</div>
|
||||
<div>{item.area}</div>
|
||||
@ -303,7 +303,7 @@ const Awards = () => {
|
||||
return (
|
||||
<Section<Award> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="flex items-start justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.title}</div>
|
||||
<div>{item.awarder}</div>
|
||||
@ -324,7 +324,7 @@ const Certifications = () => {
|
||||
return (
|
||||
<Section<Certification> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="flex items-start justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.name}</div>
|
||||
<div>{item.issuer}</div>
|
||||
@ -370,7 +370,7 @@ const Publications = () => {
|
||||
return (
|
||||
<Section<Publication> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="flex items-start justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.name}</div>
|
||||
<div>{item.publisher}</div>
|
||||
@ -391,7 +391,7 @@ const Volunteer = () => {
|
||||
return (
|
||||
<Section<Volunteer> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="flex items-start justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.organization}</div>
|
||||
<div>{item.position}</div>
|
||||
@ -428,7 +428,7 @@ const Projects = () => {
|
||||
return (
|
||||
<Section<Project> section={section} urlKey="url" summaryKey="summary" keywordsKey="keywords">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="flex items-start justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.name}</div>
|
||||
<div>{item.description}</div>
|
||||
@ -469,7 +469,7 @@ const Custom = ({ id }: { id: string }) => {
|
||||
keywordsKey="keywords"
|
||||
>
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="flex items-start justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.name}</div>
|
||||
<div>{item.description}</div>
|
||||
|
||||
@ -227,7 +227,7 @@ const Experience = () => {
|
||||
return (
|
||||
<Section<Experience> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="flex items-start justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.company}</div>
|
||||
<div>{item.position}</div>
|
||||
@ -249,7 +249,7 @@ const Education = () => {
|
||||
return (
|
||||
<Section<Education> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="flex items-start justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.institution}</div>
|
||||
<div>{item.area}</div>
|
||||
@ -272,7 +272,7 @@ const Awards = () => {
|
||||
return (
|
||||
<Section<Award> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="flex items-start justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.title}</div>
|
||||
<div>{item.awarder}</div>
|
||||
@ -293,7 +293,7 @@ const Certifications = () => {
|
||||
return (
|
||||
<Section<Certification> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="flex items-start justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.name}</div>
|
||||
<div>{item.issuer}</div>
|
||||
@ -339,7 +339,7 @@ const Publications = () => {
|
||||
return (
|
||||
<Section<Publication> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="flex items-start justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.name}</div>
|
||||
<div>{item.publisher}</div>
|
||||
@ -360,7 +360,7 @@ const Volunteer = () => {
|
||||
return (
|
||||
<Section<Volunteer> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="flex items-start justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.organization}</div>
|
||||
<div>{item.position}</div>
|
||||
@ -397,7 +397,7 @@ const Projects = () => {
|
||||
return (
|
||||
<Section<Project> section={section} urlKey="url" summaryKey="summary" keywordsKey="keywords">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="flex items-start justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.name}</div>
|
||||
<div>{item.description}</div>
|
||||
@ -438,7 +438,7 @@ const Custom = ({ id }: { id: string }) => {
|
||||
keywordsKey="keywords"
|
||||
>
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="flex items-start justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.name}</div>
|
||||
<div>{item.description}</div>
|
||||
|
||||
@ -205,7 +205,7 @@ const Experience = () => {
|
||||
return (
|
||||
<Section<Experience> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="flex items-start justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.company}</div>
|
||||
<div>{item.position}</div>
|
||||
@ -227,7 +227,7 @@ const Education = () => {
|
||||
return (
|
||||
<Section<Education> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="flex items-start justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.institution}</div>
|
||||
<div>{item.area}</div>
|
||||
@ -282,7 +282,7 @@ const Awards = () => {
|
||||
return (
|
||||
<Section<Award> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="flex items-start justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.title}</div>
|
||||
<div>{item.awarder}</div>
|
||||
@ -303,7 +303,7 @@ const Certifications = () => {
|
||||
return (
|
||||
<Section<Certification> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="flex items-start justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.name}</div>
|
||||
<div>{item.issuer}</div>
|
||||
@ -349,7 +349,7 @@ const Publications = () => {
|
||||
return (
|
||||
<Section<Publication> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="flex items-start justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.name}</div>
|
||||
<div>{item.publisher}</div>
|
||||
@ -370,7 +370,7 @@ const Volunteer = () => {
|
||||
return (
|
||||
<Section<Volunteer> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="flex items-start justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.organization}</div>
|
||||
<div>{item.position}</div>
|
||||
@ -407,7 +407,7 @@ const Projects = () => {
|
||||
return (
|
||||
<Section<Project> section={section} urlKey="url" summaryKey="summary" keywordsKey="keywords">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="flex items-start justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.name}</div>
|
||||
<div>{item.description}</div>
|
||||
@ -448,7 +448,7 @@ const Custom = ({ id }: { id: string }) => {
|
||||
keywordsKey="keywords"
|
||||
>
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="flex items-start justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.name}</div>
|
||||
<div>{item.description}</div>
|
||||
|
||||
@ -94,7 +94,7 @@ const Summary = () => {
|
||||
<div className="col-span-3">
|
||||
<div className="relative">
|
||||
<hr className="mt-3 border-primary pb-3" />
|
||||
<div className="absolute bottom-3 right-0 h-3 w-3 bg-primary" />
|
||||
<div className="absolute bottom-3 right-0 size-3 bg-primary" />
|
||||
</div>
|
||||
|
||||
<div
|
||||
@ -162,7 +162,7 @@ const Section = <T,>({
|
||||
<div className="col-span-3">
|
||||
<div className="relative">
|
||||
<hr className="mt-3 border-primary" />
|
||||
<div className="absolute bottom-0 right-0 h-3 w-3 bg-primary" />
|
||||
<div className="absolute bottom-0 right-0 size-3 bg-primary" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -128,7 +128,7 @@ const Rating = ({ level }: RatingProps) => (
|
||||
{Array.from({ length: 5 }).map((_, index) => (
|
||||
<div
|
||||
key={index}
|
||||
className={cn("h-3 w-3 rounded border-2 border-primary", level > index && "bg-primary")}
|
||||
className={cn("size-3 rounded border-2 border-primary", level > index && "bg-primary")}
|
||||
/>
|
||||
))}
|
||||
</div>
|
||||
@ -226,7 +226,7 @@ const Experience = () => {
|
||||
return (
|
||||
<Section<Experience> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between">
|
||||
<div className="flex items-start justify-between">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.company}</div>
|
||||
<div>{item.position}</div>
|
||||
@ -248,7 +248,7 @@ const Education = () => {
|
||||
return (
|
||||
<Section<Education> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between">
|
||||
<div className="flex items-start justify-between">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.institution}</div>
|
||||
<div>{item.area}</div>
|
||||
@ -271,7 +271,7 @@ const Awards = () => {
|
||||
return (
|
||||
<Section<Award> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between">
|
||||
<div className="flex items-start justify-between">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.title}</div>
|
||||
<div>{item.awarder}</div>
|
||||
@ -292,7 +292,7 @@ const Certifications = () => {
|
||||
return (
|
||||
<Section<Certification> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between">
|
||||
<div className="flex items-start justify-between">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.name}</div>
|
||||
<div>{item.issuer}</div>
|
||||
@ -338,7 +338,7 @@ const Publications = () => {
|
||||
return (
|
||||
<Section<Publication> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between">
|
||||
<div className="flex items-start justify-between">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.name}</div>
|
||||
<div>{item.publisher}</div>
|
||||
@ -359,7 +359,7 @@ const Volunteer = () => {
|
||||
return (
|
||||
<Section<Volunteer> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between">
|
||||
<div className="flex items-start justify-between">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.organization}</div>
|
||||
<div>{item.position}</div>
|
||||
@ -396,7 +396,7 @@ const Projects = () => {
|
||||
return (
|
||||
<Section<Project> section={section} urlKey="url" summaryKey="summary" keywordsKey="keywords">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between">
|
||||
<div className="flex items-start justify-between">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.name}</div>
|
||||
<div>{item.description}</div>
|
||||
@ -437,7 +437,7 @@ const Custom = ({ id }: { id: string }) => {
|
||||
keywordsKey="keywords"
|
||||
>
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between">
|
||||
<div className="flex items-start justify-between">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.name}</div>
|
||||
<div>{item.description}</div>
|
||||
|
||||
@ -49,7 +49,7 @@ const Header = () => {
|
||||
<i className="ph ph-bold ph-map-pin" />
|
||||
<div>{basics.location}</div>
|
||||
</div>
|
||||
<div className="h-1 w-1 rounded-full bg-background last:hidden" />
|
||||
<div className="size-1 rounded-full bg-background last:hidden" />
|
||||
</>
|
||||
)}
|
||||
{basics.phone && (
|
||||
@ -60,7 +60,7 @@ const Header = () => {
|
||||
{basics.phone}
|
||||
</a>
|
||||
</div>
|
||||
<div className="h-1 w-1 rounded-full bg-background last:hidden" />
|
||||
<div className="size-1 rounded-full bg-background last:hidden" />
|
||||
</>
|
||||
)}
|
||||
{basics.email && (
|
||||
@ -71,13 +71,13 @@ const Header = () => {
|
||||
{basics.email}
|
||||
</a>
|
||||
</div>
|
||||
<div className="h-1 w-1 rounded-full bg-background last:hidden" />
|
||||
<div className="size-1 rounded-full bg-background last:hidden" />
|
||||
</>
|
||||
)}
|
||||
{isUrl(basics.url.href) && (
|
||||
<>
|
||||
<Link url={basics.url} />
|
||||
<div className="h-1 w-1 rounded-full bg-background last:hidden" />
|
||||
<div className="size-1 rounded-full bg-background last:hidden" />
|
||||
</>
|
||||
)}
|
||||
{basics.customFields.map((item) => (
|
||||
@ -86,7 +86,7 @@ const Header = () => {
|
||||
<i className={cn(`ph ph-bold ph-${item.icon}`)} />
|
||||
<span>{[item.name, item.value].filter(Boolean).join(": ")}</span>
|
||||
</div>
|
||||
<div className="h-1 w-1 rounded-full bg-background last:hidden" />
|
||||
<div className="size-1 rounded-full bg-background last:hidden" />
|
||||
</Fragment>
|
||||
))}
|
||||
</div>
|
||||
@ -258,7 +258,7 @@ const Experience = () => {
|
||||
return (
|
||||
<Section<Experience> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="flex items-start justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.company}</div>
|
||||
<div>{item.position}</div>
|
||||
@ -280,7 +280,7 @@ const Education = () => {
|
||||
return (
|
||||
<Section<Education> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="flex items-start justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.institution}</div>
|
||||
<div>{item.area}</div>
|
||||
@ -303,7 +303,7 @@ const Awards = () => {
|
||||
return (
|
||||
<Section<Award> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="flex items-start justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.title}</div>
|
||||
<div>{item.awarder}</div>
|
||||
@ -324,7 +324,7 @@ const Certifications = () => {
|
||||
return (
|
||||
<Section<Certification> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="flex items-start justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.name}</div>
|
||||
<div>{item.issuer}</div>
|
||||
@ -370,7 +370,7 @@ const Publications = () => {
|
||||
return (
|
||||
<Section<Publication> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="flex items-start justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.name}</div>
|
||||
<div>{item.publisher}</div>
|
||||
@ -391,7 +391,7 @@ const Volunteer = () => {
|
||||
return (
|
||||
<Section<Volunteer> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="flex items-start justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.organization}</div>
|
||||
<div>{item.position}</div>
|
||||
@ -428,7 +428,7 @@ const Projects = () => {
|
||||
return (
|
||||
<Section<Project> section={section} urlKey="url" summaryKey="summary" keywordsKey="keywords">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="flex items-start justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.name}</div>
|
||||
<div>{item.description}</div>
|
||||
@ -469,7 +469,7 @@ const Custom = ({ id }: { id: string }) => {
|
||||
keywordsKey="keywords"
|
||||
>
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="flex items-start justify-between group-[.sidebar]:flex-col group-[.sidebar]:items-start">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.name}</div>
|
||||
<div>{item.description}</div>
|
||||
|
||||
@ -100,7 +100,7 @@ const Rating = ({ level }: RatingProps) => (
|
||||
{Array.from({ length: 5 }).map((_, index) => (
|
||||
<div
|
||||
key={index}
|
||||
className={cn("h-2 w-2 rounded-full border border-primary", level > index && "bg-primary")}
|
||||
className={cn("size-2 rounded-full border border-primary", level > index && "bg-primary")}
|
||||
/>
|
||||
))}
|
||||
</div>
|
||||
@ -230,7 +230,7 @@ const Experience = () => {
|
||||
return (
|
||||
<Section<Experience> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between">
|
||||
<div className="flex items-start justify-between">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.company}</div>
|
||||
<div>{item.position}</div>
|
||||
@ -252,7 +252,7 @@ const Education = () => {
|
||||
return (
|
||||
<Section<Education> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between">
|
||||
<div className="flex items-start justify-between">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.institution}</div>
|
||||
<div>{item.area}</div>
|
||||
@ -275,7 +275,7 @@ const Awards = () => {
|
||||
return (
|
||||
<Section<Award> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between">
|
||||
<div className="flex items-start justify-between">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.title}</div>
|
||||
<div>{item.awarder}</div>
|
||||
@ -296,7 +296,7 @@ const Certifications = () => {
|
||||
return (
|
||||
<Section<Certification> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between">
|
||||
<div className="flex items-start justify-between">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.name}</div>
|
||||
<div>{item.issuer}</div>
|
||||
@ -342,7 +342,7 @@ const Publications = () => {
|
||||
return (
|
||||
<Section<Publication> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between">
|
||||
<div className="flex items-start justify-between">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.name}</div>
|
||||
<div>{item.publisher}</div>
|
||||
@ -363,7 +363,7 @@ const Volunteer = () => {
|
||||
return (
|
||||
<Section<Volunteer> section={section} urlKey="url" summaryKey="summary">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between">
|
||||
<div className="flex items-start justify-between">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.organization}</div>
|
||||
<div>{item.position}</div>
|
||||
@ -400,7 +400,7 @@ const Projects = () => {
|
||||
return (
|
||||
<Section<Project> section={section} urlKey="url" summaryKey="summary" keywordsKey="keywords">
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between">
|
||||
<div className="flex items-start justify-between">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.name}</div>
|
||||
<div>{item.description}</div>
|
||||
@ -441,7 +441,7 @@ const Custom = ({ id }: { id: string }) => {
|
||||
keywordsKey="keywords"
|
||||
>
|
||||
{(item) => (
|
||||
<div className="flex items-center justify-between">
|
||||
<div className="flex items-start justify-between">
|
||||
<div className="text-left">
|
||||
<div className="font-bold">{item.name}</div>
|
||||
<div>{item.description}</div>
|
||||
|
||||
@ -78,4 +78,3 @@
|
||||
},
|
||||
"tags": ["frontend"]
|
||||
}
|
||||
|
||||
|
||||
@ -7,6 +7,7 @@ import {
|
||||
CommandGroup,
|
||||
CommandInput,
|
||||
CommandItem,
|
||||
CommandList,
|
||||
Popover,
|
||||
PopoverContent,
|
||||
PopoverTrigger,
|
||||
@ -40,36 +41,40 @@ export const LocaleCombobox = ({ value, onValueChange }: Props) => {
|
||||
onValueChange={setSearch}
|
||||
placeholder={t`Search for a language`}
|
||||
/>
|
||||
<CommandEmpty>{t`No results found`}</CommandEmpty>
|
||||
<CommandGroup>
|
||||
<ScrollArea orientation="vertical">
|
||||
<div className="max-h-60">
|
||||
{options.map(({ original }) => (
|
||||
<CommandItem
|
||||
key={original.locale}
|
||||
value={original.locale.trim().toLowerCase()}
|
||||
onSelect={async (selectedValue) => {
|
||||
const result = options.find(
|
||||
({ original }) => original.locale.trim().toLowerCase() === selectedValue,
|
||||
);
|
||||
<CommandList>
|
||||
<CommandEmpty>{t`No results found`}</CommandEmpty>
|
||||
<CommandGroup>
|
||||
<ScrollArea orientation="vertical">
|
||||
<div className="max-h-60">
|
||||
{options.map(({ original }) => (
|
||||
<CommandItem
|
||||
disabled={false}
|
||||
key={original.locale}
|
||||
value={original.locale.trim()}
|
||||
onSelect={async (selectedValue) => {
|
||||
const result = options.find(
|
||||
({ original }) => original.locale.trim() === selectedValue,
|
||||
);
|
||||
|
||||
if (!result) return null;
|
||||
if (!result) return null;
|
||||
|
||||
onValueChange(result.original.locale);
|
||||
}}
|
||||
>
|
||||
<Check
|
||||
className={cn(
|
||||
"mr-2 h-4 w-4 opacity-0",
|
||||
value === original.locale && "opacity-100",
|
||||
)}
|
||||
/>
|
||||
{original.name} <span className="ml-1 text-xs opacity-50">({original.locale})</span>
|
||||
</CommandItem>
|
||||
))}
|
||||
</div>
|
||||
</ScrollArea>
|
||||
</CommandGroup>
|
||||
onValueChange(result.original.locale);
|
||||
}}
|
||||
>
|
||||
<Check
|
||||
className={cn(
|
||||
"mr-2 size-4 opacity-0",
|
||||
value === original.locale && "opacity-100",
|
||||
)}
|
||||
/>
|
||||
{original.name}{" "}
|
||||
<span className="ml-1 text-xs opacity-50">({original.locale})</span>
|
||||
</CommandItem>
|
||||
))}
|
||||
</div>
|
||||
</ScrollArea>
|
||||
</CommandGroup>
|
||||
</CommandList>
|
||||
</Command>
|
||||
);
|
||||
};
|
||||
@ -101,7 +106,7 @@ export const LocaleComboboxPopover = ({ value, onValueChange }: Props) => {
|
||||
</span>
|
||||
<CaretDown
|
||||
className={cn(
|
||||
"ml-2 h-4 w-4 shrink-0 rotate-0 opacity-50 transition-transform",
|
||||
"ml-2 size-4 shrink-0 rotate-0 opacity-50 transition-transform",
|
||||
open && "rotate-180",
|
||||
)}
|
||||
/>
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: af\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-11-26 14:53\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Afrikaans\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -150,7 +150,7 @@ msgstr ""
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:125
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr ""
|
||||
|
||||
@ -235,7 +235,7 @@ msgstr ""
|
||||
msgid "By the community, for the community."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
|
||||
@ -318,7 +318,7 @@ msgstr ""
|
||||
msgid "Copy to Clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
@ -328,7 +328,7 @@ msgstr ""
|
||||
msgid "Create a new account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
||||
msgid "Create a new item"
|
||||
msgstr ""
|
||||
|
||||
@ -377,15 +377,15 @@ msgstr ""
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:85
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||
msgid "Date or Date Range"
|
||||
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:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:157
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:134
|
||||
@ -398,11 +398,11 @@ msgstr ""
|
||||
msgid "Delete Account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:71
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
@ -462,7 +462,7 @@ msgstr ""
|
||||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:170
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:245
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:102
|
||||
@ -470,7 +470,7 @@ msgstr ""
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
msgid "Duplicate an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:90
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
|
||||
msgid "Hidden"
|
||||
msgstr ""
|
||||
@ -686,7 +686,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>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -788,10 +788,10 @@ msgstr ""
|
||||
msgid "JSON"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
@ -823,7 +823,7 @@ msgid "Letter"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
||||
msgid "Level"
|
||||
msgstr ""
|
||||
|
||||
@ -852,7 +852,7 @@ msgstr ""
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83
|
||||
@ -900,7 +900,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||
msgid "March 2023 - Present"
|
||||
msgstr ""
|
||||
@ -914,13 +914,13 @@ msgid "MIT License"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:106
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:57
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:43
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||
msgid "Name"
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -993,7 +993,7 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:46
|
||||
#: apps/client/src/pages/auth/layout.tsx:47
|
||||
msgctxt "The user can either login with email/password, or continue with GitHub or Google."
|
||||
msgid "or continue with"
|
||||
msgstr ""
|
||||
@ -1030,7 +1030,7 @@ msgstr ""
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:75
|
||||
#: apps/client/src/pages/auth/layout.tsx:76
|
||||
msgid "Photograph by Patrick Tomasso"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1194,7 +1194,7 @@ msgstr ""
|
||||
msgid "Rounded"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1370,10 +1370,10 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
@ -1435,7 +1435,7 @@ msgstr ""
|
||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:127
|
||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||
msgstr ""
|
||||
|
||||
@ -1531,7 +1531,7 @@ msgstr ""
|
||||
msgid "Unverified"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||
msgid "Update an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1613,11 +1613,11 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
@ -1629,10 +1629,10 @@ msgstr ""
|
||||
msgid "What's new in the latest version"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:112
|
||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: am\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-11-26 14:53\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Amharic\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
@ -150,7 +150,7 @@ msgstr ""
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:125
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr ""
|
||||
|
||||
@ -235,7 +235,7 @@ msgstr ""
|
||||
msgid "By the community, for the community."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
|
||||
@ -318,7 +318,7 @@ msgstr ""
|
||||
msgid "Copy to Clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
@ -328,7 +328,7 @@ msgstr ""
|
||||
msgid "Create a new account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
||||
msgid "Create a new item"
|
||||
msgstr ""
|
||||
|
||||
@ -377,15 +377,15 @@ msgstr ""
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:85
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||
msgid "Date or Date Range"
|
||||
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:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:157
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:134
|
||||
@ -398,11 +398,11 @@ msgstr ""
|
||||
msgid "Delete Account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:71
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
@ -462,7 +462,7 @@ msgstr ""
|
||||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:170
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:245
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:102
|
||||
@ -470,7 +470,7 @@ msgstr ""
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
msgid "Duplicate an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:90
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
|
||||
msgid "Hidden"
|
||||
msgstr ""
|
||||
@ -686,7 +686,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>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -788,10 +788,10 @@ msgstr ""
|
||||
msgid "JSON"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
@ -823,7 +823,7 @@ msgid "Letter"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
||||
msgid "Level"
|
||||
msgstr ""
|
||||
|
||||
@ -852,7 +852,7 @@ msgstr ""
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83
|
||||
@ -900,7 +900,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||
msgid "March 2023 - Present"
|
||||
msgstr ""
|
||||
@ -914,13 +914,13 @@ msgid "MIT License"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:106
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:57
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:43
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||
msgid "Name"
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -993,7 +993,7 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:46
|
||||
#: apps/client/src/pages/auth/layout.tsx:47
|
||||
msgctxt "The user can either login with email/password, or continue with GitHub or Google."
|
||||
msgid "or continue with"
|
||||
msgstr ""
|
||||
@ -1030,7 +1030,7 @@ msgstr ""
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:75
|
||||
#: apps/client/src/pages/auth/layout.tsx:76
|
||||
msgid "Photograph by Patrick Tomasso"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1194,7 +1194,7 @@ msgstr ""
|
||||
msgid "Rounded"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1370,10 +1370,10 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
@ -1435,7 +1435,7 @@ msgstr ""
|
||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:127
|
||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||
msgstr ""
|
||||
|
||||
@ -1531,7 +1531,7 @@ msgstr ""
|
||||
msgid "Unverified"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||
msgid "Update an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1613,11 +1613,11 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
@ -1629,10 +1629,10 @@ msgstr ""
|
||||
msgid "What's new in the latest version"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:112
|
||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ar\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-01-03 00:07\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Arabic\n"
|
||||
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||
@ -150,7 +150,7 @@ msgstr "يمكن لأي شخص لديه هذا الرابط مشاهدة وتن
|
||||
msgid "API Key"
|
||||
msgstr "مفتاح واجهة برمجة التطبيقات (API)"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:125
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr "هل أنت متأكد من أنك تريد حذف هذا العنصر؟"
|
||||
|
||||
@ -235,7 +235,7 @@ msgstr "بنيت باستخدام"
|
||||
msgid "By the community, for the community."
|
||||
msgstr "من قبل المجتمع، من أجل المجتمع."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
|
||||
@ -318,7 +318,7 @@ msgstr "انسخ الرابط للسيرة الذاتية"
|
||||
msgid "Copy to Clipboard"
|
||||
msgstr "نسخ إلى الحافظة"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||
msgid "Create"
|
||||
msgstr "إنشاء"
|
||||
@ -328,7 +328,7 @@ msgstr "إنشاء"
|
||||
msgid "Create a new account"
|
||||
msgstr "إنشاء حساب جديد"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
||||
msgid "Create a new item"
|
||||
msgstr "إنشاء عنصر جديد"
|
||||
|
||||
@ -377,15 +377,15 @@ msgstr "داكن"
|
||||
msgid "Date"
|
||||
msgstr "التاريخ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:85
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||
msgid "Date or Date Range"
|
||||
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:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:157
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:134
|
||||
@ -398,11 +398,11 @@ msgstr "حذف"
|
||||
msgid "Delete Account"
|
||||
msgstr "حذف الحساب"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:71
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
||||
msgid "Description"
|
||||
msgstr "الوصف"
|
||||
|
||||
@ -462,7 +462,7 @@ msgstr ""
|
||||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:170
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:245
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:102
|
||||
@ -470,7 +470,7 @@ msgstr ""
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
msgid "Duplicate an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:90
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
|
||||
msgid "Hidden"
|
||||
msgstr ""
|
||||
@ -686,7 +686,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>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -788,10 +788,10 @@ msgstr ""
|
||||
msgid "JSON"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
@ -823,7 +823,7 @@ msgid "Letter"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
||||
msgid "Level"
|
||||
msgstr ""
|
||||
|
||||
@ -852,7 +852,7 @@ msgstr ""
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83
|
||||
@ -900,7 +900,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||
msgid "March 2023 - Present"
|
||||
msgstr ""
|
||||
@ -914,13 +914,13 @@ msgid "MIT License"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:106
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:57
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:43
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||
msgid "Name"
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -993,7 +993,7 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:46
|
||||
#: apps/client/src/pages/auth/layout.tsx:47
|
||||
msgctxt "The user can either login with email/password, or continue with GitHub or Google."
|
||||
msgid "or continue with"
|
||||
msgstr ""
|
||||
@ -1030,7 +1030,7 @@ msgstr ""
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:75
|
||||
#: apps/client/src/pages/auth/layout.tsx:76
|
||||
msgid "Photograph by Patrick Tomasso"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1194,7 +1194,7 @@ msgstr ""
|
||||
msgid "Rounded"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1370,10 +1370,10 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
@ -1435,7 +1435,7 @@ msgstr ""
|
||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:127
|
||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||
msgstr ""
|
||||
|
||||
@ -1531,7 +1531,7 @@ msgstr ""
|
||||
msgid "Unverified"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||
msgid "Update an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1613,11 +1613,11 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
@ -1629,10 +1629,10 @@ msgstr ""
|
||||
msgid "What's new in the latest version"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:112
|
||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: bg\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-11-26 14:53\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Bulgarian\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -150,7 +150,7 @@ msgstr ""
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:125
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr ""
|
||||
|
||||
@ -235,7 +235,7 @@ msgstr ""
|
||||
msgid "By the community, for the community."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
|
||||
@ -318,7 +318,7 @@ msgstr ""
|
||||
msgid "Copy to Clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
@ -328,7 +328,7 @@ msgstr ""
|
||||
msgid "Create a new account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
||||
msgid "Create a new item"
|
||||
msgstr ""
|
||||
|
||||
@ -377,15 +377,15 @@ msgstr ""
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:85
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||
msgid "Date or Date Range"
|
||||
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:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:157
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:134
|
||||
@ -398,11 +398,11 @@ msgstr ""
|
||||
msgid "Delete Account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:71
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
@ -462,7 +462,7 @@ msgstr ""
|
||||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:170
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:245
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:102
|
||||
@ -470,7 +470,7 @@ msgstr ""
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
msgid "Duplicate an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:90
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
|
||||
msgid "Hidden"
|
||||
msgstr ""
|
||||
@ -686,7 +686,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>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -788,10 +788,10 @@ msgstr ""
|
||||
msgid "JSON"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
@ -823,7 +823,7 @@ msgid "Letter"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
||||
msgid "Level"
|
||||
msgstr ""
|
||||
|
||||
@ -852,7 +852,7 @@ msgstr ""
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83
|
||||
@ -900,7 +900,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||
msgid "March 2023 - Present"
|
||||
msgstr ""
|
||||
@ -914,13 +914,13 @@ msgid "MIT License"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:106
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:57
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:43
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||
msgid "Name"
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -993,7 +993,7 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:46
|
||||
#: apps/client/src/pages/auth/layout.tsx:47
|
||||
msgctxt "The user can either login with email/password, or continue with GitHub or Google."
|
||||
msgid "or continue with"
|
||||
msgstr ""
|
||||
@ -1030,7 +1030,7 @@ msgstr ""
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:75
|
||||
#: apps/client/src/pages/auth/layout.tsx:76
|
||||
msgid "Photograph by Patrick Tomasso"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1194,7 +1194,7 @@ msgstr ""
|
||||
msgid "Rounded"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1370,10 +1370,10 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
@ -1435,7 +1435,7 @@ msgstr ""
|
||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:127
|
||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||
msgstr ""
|
||||
|
||||
@ -1531,7 +1531,7 @@ msgstr ""
|
||||
msgid "Unverified"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||
msgid "Update an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1613,11 +1613,11 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
@ -1629,10 +1629,10 @@ msgstr ""
|
||||
msgid "What's new in the latest version"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:112
|
||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: bn\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-11-26 14:53\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Bengali\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -150,7 +150,7 @@ msgstr ""
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:125
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr ""
|
||||
|
||||
@ -235,7 +235,7 @@ msgstr ""
|
||||
msgid "By the community, for the community."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
|
||||
@ -318,7 +318,7 @@ msgstr ""
|
||||
msgid "Copy to Clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
@ -328,7 +328,7 @@ msgstr ""
|
||||
msgid "Create a new account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
||||
msgid "Create a new item"
|
||||
msgstr ""
|
||||
|
||||
@ -377,15 +377,15 @@ msgstr ""
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:85
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||
msgid "Date or Date Range"
|
||||
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:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:157
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:134
|
||||
@ -398,11 +398,11 @@ msgstr ""
|
||||
msgid "Delete Account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:71
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
@ -462,7 +462,7 @@ msgstr ""
|
||||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:170
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:245
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:102
|
||||
@ -470,7 +470,7 @@ msgstr ""
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
msgid "Duplicate an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:90
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
|
||||
msgid "Hidden"
|
||||
msgstr "গোপন করা"
|
||||
@ -686,7 +686,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>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr "আইকন"
|
||||
|
||||
@ -788,10 +788,10 @@ msgstr ""
|
||||
msgid "JSON"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
@ -823,7 +823,7 @@ msgid "Letter"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
||||
msgid "Level"
|
||||
msgstr ""
|
||||
|
||||
@ -852,7 +852,7 @@ msgstr ""
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83
|
||||
@ -900,7 +900,7 @@ msgstr "মার্চ ২০২৩"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "মার্চ ২০২৩ - বর্তমান"
|
||||
@ -914,13 +914,13 @@ msgid "MIT License"
|
||||
msgstr "এমআইটি লাইসেন্স"
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:106
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:57
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:43
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||
msgid "Name"
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr "নাম"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr "নেটওয়ার্ক"
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr "নেটওয়ার্ক"
|
||||
msgid "New Password"
|
||||
msgstr "নতুন পাসওয়ার্ড"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr "কোন ফলাফল খুঁজে পাওয়া যায়নি"
|
||||
|
||||
@ -993,7 +993,7 @@ msgstr "OpenAI ইন্টিগ্রেশন"
|
||||
msgid "Options"
|
||||
msgstr "বিকল্পসমূহ"
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:46
|
||||
#: apps/client/src/pages/auth/layout.tsx:47
|
||||
msgctxt "The user can either login with email/password, or continue with GitHub or Google."
|
||||
msgid "or continue with"
|
||||
msgstr ""
|
||||
@ -1030,7 +1030,7 @@ msgstr "প্রতিটি জীবনবৃত্তান্তের(resu
|
||||
msgid "Phone"
|
||||
msgstr "ফোন"
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:75
|
||||
#: apps/client/src/pages/auth/layout.tsx:76
|
||||
msgid "Photograph by Patrick Tomasso"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr "অবস্থান"
|
||||
msgid "Powered by"
|
||||
msgstr "দ্বারা চালিত"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr "<0>সাধারণ আইকন</0> দ্বারা চালিত"
|
||||
|
||||
@ -1194,7 +1194,7 @@ msgstr ""
|
||||
msgid "Rounded"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1370,10 +1370,10 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
@ -1435,7 +1435,7 @@ msgstr ""
|
||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:127
|
||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||
msgstr ""
|
||||
|
||||
@ -1531,7 +1531,7 @@ msgstr ""
|
||||
msgid "Unverified"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||
msgid "Update an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1613,11 +1613,11 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
@ -1629,10 +1629,10 @@ msgstr ""
|
||||
msgid "What's new in the latest version"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:112
|
||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ca\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-11-26 14:53\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Catalan\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -150,7 +150,7 @@ msgstr ""
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:125
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr ""
|
||||
|
||||
@ -235,7 +235,7 @@ msgstr ""
|
||||
msgid "By the community, for the community."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
|
||||
@ -318,7 +318,7 @@ msgstr ""
|
||||
msgid "Copy to Clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
@ -328,7 +328,7 @@ msgstr ""
|
||||
msgid "Create a new account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
||||
msgid "Create a new item"
|
||||
msgstr ""
|
||||
|
||||
@ -377,15 +377,15 @@ msgstr ""
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:85
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||
msgid "Date or Date Range"
|
||||
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:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:157
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:134
|
||||
@ -398,11 +398,11 @@ msgstr ""
|
||||
msgid "Delete Account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:71
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
@ -462,7 +462,7 @@ msgstr ""
|
||||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:170
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:245
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:102
|
||||
@ -470,7 +470,7 @@ msgstr ""
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
msgid "Duplicate an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:90
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
|
||||
msgid "Hidden"
|
||||
msgstr ""
|
||||
@ -686,7 +686,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>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -788,10 +788,10 @@ msgstr ""
|
||||
msgid "JSON"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
@ -823,7 +823,7 @@ msgid "Letter"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
||||
msgid "Level"
|
||||
msgstr ""
|
||||
|
||||
@ -852,7 +852,7 @@ msgstr ""
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83
|
||||
@ -900,7 +900,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||
msgid "March 2023 - Present"
|
||||
msgstr ""
|
||||
@ -914,13 +914,13 @@ msgid "MIT License"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:106
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:57
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:43
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||
msgid "Name"
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -993,7 +993,7 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:46
|
||||
#: apps/client/src/pages/auth/layout.tsx:47
|
||||
msgctxt "The user can either login with email/password, or continue with GitHub or Google."
|
||||
msgid "or continue with"
|
||||
msgstr ""
|
||||
@ -1030,7 +1030,7 @@ msgstr ""
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:75
|
||||
#: apps/client/src/pages/auth/layout.tsx:76
|
||||
msgid "Photograph by Patrick Tomasso"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1194,7 +1194,7 @@ msgstr ""
|
||||
msgid "Rounded"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1370,10 +1370,10 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
@ -1435,7 +1435,7 @@ msgstr ""
|
||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:127
|
||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||
msgstr ""
|
||||
|
||||
@ -1531,7 +1531,7 @@ msgstr ""
|
||||
msgid "Unverified"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||
msgid "Update an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1613,11 +1613,11 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
@ -1629,10 +1629,10 @@ msgstr ""
|
||||
msgid "What's new in the latest version"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:112
|
||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: cs\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-11-26 14:53\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Czech\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n"
|
||||
@ -150,7 +150,7 @@ msgstr ""
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:125
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr ""
|
||||
|
||||
@ -235,7 +235,7 @@ msgstr ""
|
||||
msgid "By the community, for the community."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
|
||||
@ -318,7 +318,7 @@ msgstr ""
|
||||
msgid "Copy to Clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
@ -328,7 +328,7 @@ msgstr ""
|
||||
msgid "Create a new account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
||||
msgid "Create a new item"
|
||||
msgstr ""
|
||||
|
||||
@ -377,15 +377,15 @@ msgstr ""
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:85
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||
msgid "Date or Date Range"
|
||||
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:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:157
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:134
|
||||
@ -398,11 +398,11 @@ msgstr ""
|
||||
msgid "Delete Account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:71
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
@ -462,7 +462,7 @@ msgstr ""
|
||||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:170
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:245
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:102
|
||||
@ -470,7 +470,7 @@ msgstr ""
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
msgid "Duplicate an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:90
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
|
||||
msgid "Hidden"
|
||||
msgstr ""
|
||||
@ -686,7 +686,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>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -788,10 +788,10 @@ msgstr ""
|
||||
msgid "JSON"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
@ -823,7 +823,7 @@ msgid "Letter"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
||||
msgid "Level"
|
||||
msgstr ""
|
||||
|
||||
@ -852,7 +852,7 @@ msgstr ""
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83
|
||||
@ -900,7 +900,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||
msgid "March 2023 - Present"
|
||||
msgstr ""
|
||||
@ -914,13 +914,13 @@ msgid "MIT License"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:106
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:57
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:43
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||
msgid "Name"
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -993,7 +993,7 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:46
|
||||
#: apps/client/src/pages/auth/layout.tsx:47
|
||||
msgctxt "The user can either login with email/password, or continue with GitHub or Google."
|
||||
msgid "or continue with"
|
||||
msgstr ""
|
||||
@ -1030,7 +1030,7 @@ msgstr ""
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:75
|
||||
#: apps/client/src/pages/auth/layout.tsx:76
|
||||
msgid "Photograph by Patrick Tomasso"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1194,7 +1194,7 @@ msgstr ""
|
||||
msgid "Rounded"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1370,10 +1370,10 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
@ -1435,7 +1435,7 @@ msgstr ""
|
||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:127
|
||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||
msgstr ""
|
||||
|
||||
@ -1531,7 +1531,7 @@ msgstr ""
|
||||
msgid "Unverified"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||
msgid "Update an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1613,11 +1613,11 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
@ -1629,10 +1629,10 @@ msgstr ""
|
||||
msgid "What's new in the latest version"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:112
|
||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: da\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-12-14 00:08\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Danish\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -20,7 +20,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:169
|
||||
msgid "You have enabled two-factor authentication successfully."
|
||||
msgstr "Du har aktiveret to-faktor godkendelse."
|
||||
msgstr "Du har aktiveret to-faktor-godkendelse."
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:57
|
||||
msgid "{templatesCount} resume templates to choose from"
|
||||
@ -150,7 +150,7 @@ msgstr "Alle med dette link kan se og downloade CV'et. Del det på din profil el
|
||||
msgid "API Key"
|
||||
msgstr "API nøgle"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:125
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr "Er du sikker på, at du vil slette dette element?"
|
||||
|
||||
@ -235,7 +235,7 @@ msgstr "Lavet med"
|
||||
msgid "By the community, for the community."
|
||||
msgstr "Af fællesskabet, for fællesskabet."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
|
||||
@ -318,7 +318,7 @@ msgstr "Kopiér link til CV"
|
||||
msgid "Copy to Clipboard"
|
||||
msgstr "Kopiér til Udklipsholder"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||
msgid "Create"
|
||||
msgstr "Opret"
|
||||
@ -328,7 +328,7 @@ msgstr "Opret"
|
||||
msgid "Create a new account"
|
||||
msgstr "Opret en ny konto"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
||||
msgid "Create a new item"
|
||||
msgstr "Opret et nyt emne"
|
||||
|
||||
@ -377,15 +377,15 @@ msgstr "Mørk"
|
||||
msgid "Date"
|
||||
msgstr "Dato"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:85
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||
msgid "Date or Date Range"
|
||||
msgstr "Dato eller datointerval"
|
||||
|
||||
#: 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:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:157
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:134
|
||||
@ -398,11 +398,11 @@ msgstr "Slet"
|
||||
msgid "Delete Account"
|
||||
msgstr "Slet Konto"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:71
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
||||
msgid "Description"
|
||||
msgstr "Beskriveslse"
|
||||
|
||||
@ -462,7 +462,7 @@ msgstr "Download PDF"
|
||||
msgid "Downloads"
|
||||
msgstr "Downloads"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:170
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:245
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:102
|
||||
@ -470,7 +470,7 @@ msgstr "Downloads"
|
||||
msgid "Duplicate"
|
||||
msgstr "Duplikér"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
msgid "Duplicate an existing item"
|
||||
msgstr "Duplikér et eksisterende element"
|
||||
|
||||
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr "Her kan du opdatere din profil for at tilpasse og personliggøre din oplevelse."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:90
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
|
||||
msgid "Hidden"
|
||||
msgstr "Skjult"
|
||||
@ -686,7 +686,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>."
|
||||
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:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr "Ikon"
|
||||
|
||||
@ -788,10 +788,10 @@ msgstr "anders.andersen@example.com"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
|
||||
msgid "Keywords"
|
||||
msgstr "Nøgleord"
|
||||
|
||||
@ -823,7 +823,7 @@ msgid "Letter"
|
||||
msgstr "Brev"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
||||
msgid "Level"
|
||||
msgstr "Niveau"
|
||||
|
||||
@ -852,7 +852,7 @@ msgstr "LinkedIn, JSON CV osv."
|
||||
msgid "List"
|
||||
msgstr "Liste"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83
|
||||
@ -900,7 +900,7 @@ msgstr "Marts 2023"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "Marts 2023 - nutid"
|
||||
@ -914,13 +914,13 @@ msgid "MIT License"
|
||||
msgstr "MIT-licens"
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:106
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:57
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:43
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||
msgid "Name"
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr "Navn"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr "Netværk"
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr "Netværk"
|
||||
msgid "New Password"
|
||||
msgstr "Ny adgangskode"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr "Ingen resultater fundet"
|
||||
|
||||
@ -993,7 +993,7 @@ msgstr "OpenAI-integration"
|
||||
msgid "Options"
|
||||
msgstr "Indstillinger"
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:46
|
||||
#: apps/client/src/pages/auth/layout.tsx:47
|
||||
msgctxt "The user can either login with email/password, or continue with GitHub or Google."
|
||||
msgid "or continue with"
|
||||
msgstr "eller fortsæt med"
|
||||
@ -1030,7 +1030,7 @@ msgstr "Personlige noter til hvert CV"
|
||||
msgid "Phone"
|
||||
msgstr "Telefon"
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:75
|
||||
#: apps/client/src/pages/auth/layout.tsx:76
|
||||
msgid "Photograph by Patrick Tomasso"
|
||||
msgstr "Foto af Patrick Tomasso"
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr "Stilling"
|
||||
msgid "Powered by"
|
||||
msgstr "Drevet af"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr "Drevet af <0>Simple Icons</0>"
|
||||
|
||||
@ -1194,7 +1194,7 @@ msgstr "Rig på funktioner, ikke på priser."
|
||||
msgid "Rounded"
|
||||
msgstr "Afrundet"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
|
||||
@ -1222,7 +1222,7 @@ msgstr "Søg efter et skrifttypeundersæt"
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Søg efter en skrifttypevariant"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr "Søg efter et sprog"
|
||||
|
||||
@ -1370,10 +1370,10 @@ msgstr "Gemt"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
@ -1435,7 +1435,7 @@ msgstr "Tema"
|
||||
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."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:127
|
||||
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."
|
||||
|
||||
@ -1531,7 +1531,7 @@ msgstr "Hvis du låser et CV op, kan du ændre det igen."
|
||||
msgid "Unverified"
|
||||
msgstr "Ikke verificeret"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||
msgid "Update an existing item"
|
||||
msgstr "Opdater et eksisterende element"
|
||||
|
||||
@ -1561,7 +1561,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."
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr "Brugernavn"
|
||||
@ -1613,11 +1613,11 @@ msgstr "Vi bekræfter kun din e-mailadresse for at sikre, at vi kan sende dig et
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
@ -1629,10 +1629,10 @@ msgstr "Hjemmeside"
|
||||
msgid "What's new in the latest version"
|
||||
msgstr "Hvad er nyt i den seneste version"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:112
|
||||
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."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: de\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-11-28 00:08\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: German\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -150,7 +150,7 @@ msgstr "Jeder, der den Link hat, kann den Lebenslauf ansehen und herunterladen.
|
||||
msgid "API Key"
|
||||
msgstr "API-Schlüssel"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:125
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr "Sicher, dass Du diesen Eintrag löschen möchtest?"
|
||||
|
||||
@ -235,7 +235,7 @@ msgstr "Gebaut mit"
|
||||
msgid "By the community, for the community."
|
||||
msgstr "Von der Gemeinschaft, für die Gemeinschaft."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
|
||||
@ -318,7 +318,7 @@ msgstr "Link zum Lebenslauf kopieren"
|
||||
msgid "Copy to Clipboard"
|
||||
msgstr "In die Zwischenablage kopieren"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||
msgid "Create"
|
||||
msgstr "Erstellen"
|
||||
@ -328,7 +328,7 @@ msgstr "Erstellen"
|
||||
msgid "Create a new account"
|
||||
msgstr "Neues Konto erstellen"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
||||
msgid "Create a new item"
|
||||
msgstr "Neuen Eintrag erstellen"
|
||||
|
||||
@ -377,15 +377,15 @@ msgstr "Dunkel"
|
||||
msgid "Date"
|
||||
msgstr "Zeitraum"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:85
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||
msgid "Date or Date Range"
|
||||
msgstr "Darum oder Zeitraum"
|
||||
|
||||
#: 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:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:157
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:134
|
||||
@ -398,11 +398,11 @@ msgstr "Löschen"
|
||||
msgid "Delete Account"
|
||||
msgstr "Konto löschen"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:71
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
||||
msgid "Description"
|
||||
msgstr "Beschreibung"
|
||||
|
||||
@ -462,7 +462,7 @@ msgstr "PDF herunterladen"
|
||||
msgid "Downloads"
|
||||
msgstr "Downloads"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:170
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:245
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:102
|
||||
@ -470,7 +470,7 @@ msgstr "Downloads"
|
||||
msgid "Duplicate"
|
||||
msgstr "Duplizieren"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
msgid "Duplicate an existing item"
|
||||
msgstr "Vorhandenen Eintrag duplizieren"
|
||||
|
||||
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr "Hier kannst du dein Profil aktualisieren, um deine Erfahrung individuell anzupassen und zu personalisieren."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:90
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
|
||||
msgid "Hidden"
|
||||
msgstr "Ausgeblendet"
|
||||
@ -686,7 +686,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>."
|
||||
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:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr "Symbol"
|
||||
|
||||
@ -788,10 +788,10 @@ msgstr "max.mustermann@beispiel.de"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
|
||||
msgid "Keywords"
|
||||
msgstr "Schlüsselwörter"
|
||||
|
||||
@ -823,7 +823,7 @@ msgid "Letter"
|
||||
msgstr "US Letter"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
||||
msgid "Level"
|
||||
msgstr "Niveau"
|
||||
|
||||
@ -852,7 +852,7 @@ msgstr "LinkedIn, Lebenslauf als JSON, etc."
|
||||
msgid "List"
|
||||
msgstr "Listenansicht"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83
|
||||
@ -900,7 +900,7 @@ msgstr "März 2023"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "März 2023 – Heute"
|
||||
@ -914,13 +914,13 @@ msgid "MIT License"
|
||||
msgstr "MIT Lizenz"
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:106
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:57
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:43
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||
msgid "Name"
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr "Name"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr "Netzwerk"
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr "Netzwerk"
|
||||
msgid "New Password"
|
||||
msgstr "Neues Passwort"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr "Keine Ergebnisse gefunden"
|
||||
|
||||
@ -993,7 +993,7 @@ msgstr "OpenAI Integration"
|
||||
msgid "Options"
|
||||
msgstr "Optionen"
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:46
|
||||
#: apps/client/src/pages/auth/layout.tsx:47
|
||||
msgctxt "The user can either login with email/password, or continue with GitHub or Google."
|
||||
msgid "or continue with"
|
||||
msgstr "oder anmelden mit"
|
||||
@ -1030,7 +1030,7 @@ msgstr "Persönliche Notizen zu jedem Lebenslauf"
|
||||
msgid "Phone"
|
||||
msgstr "Telefon"
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:75
|
||||
#: apps/client/src/pages/auth/layout.tsx:76
|
||||
msgid "Photograph by Patrick Tomasso"
|
||||
msgstr "Foto: Patrick Tomasso"
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr "Position"
|
||||
msgid "Powered by"
|
||||
msgstr "Powered by"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr "Powered by <0>Simple Icons</0>"
|
||||
|
||||
@ -1194,7 +1194,7 @@ msgstr "Nur die Anzahl der Funktionen ist hoch, nicht der Preis."
|
||||
msgid "Rounded"
|
||||
msgstr "Abgerundet"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
|
||||
@ -1222,7 +1222,7 @@ msgstr "Nach einem Schriftart-Subset suchen"
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Nach einer Schriftvariante suchen"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr "Nach einer Sprache suchen"
|
||||
|
||||
@ -1370,10 +1370,10 @@ msgstr "Gespeichert"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
@ -1435,7 +1435,7 @@ msgstr "Design"
|
||||
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."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:127
|
||||
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."
|
||||
|
||||
@ -1531,7 +1531,7 @@ msgstr "Wenn Du Deinen Lebenslauf entsperrst, kannst Du wieder Änderungen daran
|
||||
msgid "Unverified"
|
||||
msgstr "Noch nicht verifiziert"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||
msgid "Update an existing item"
|
||||
msgstr "Vorhandenen Eintrag verändern"
|
||||
|
||||
@ -1561,7 +1561,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."
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr "Benutzername"
|
||||
@ -1613,11 +1613,11 @@ msgstr "Wir verifizieren deine E-Mail-Adresse nur, um sicherzustellen, dass wir
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
@ -1629,10 +1629,10 @@ msgstr "Webseite"
|
||||
msgid "What's new in the latest version"
|
||||
msgstr "Was ist neu in der aktuellsten Version"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:112
|
||||
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."
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -150,7 +150,7 @@ msgstr "Anyone with this link can view and download the resume. Share it on your
|
||||
msgid "API Key"
|
||||
msgstr "API Key"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:125
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr "Are you sure you want to delete this item?"
|
||||
|
||||
@ -235,7 +235,7 @@ msgstr "Built with"
|
||||
msgid "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:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
|
||||
@ -318,7 +318,7 @@ msgstr "Copy Link to Resume"
|
||||
msgid "Copy to Clipboard"
|
||||
msgstr "Copy to Clipboard"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||
msgid "Create"
|
||||
msgstr "Create"
|
||||
@ -328,7 +328,7 @@ msgstr "Create"
|
||||
msgid "Create a new account"
|
||||
msgstr "Create a new account"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
||||
msgid "Create a new item"
|
||||
msgstr "Create a new item"
|
||||
|
||||
@ -377,15 +377,15 @@ msgstr "Dark"
|
||||
msgid "Date"
|
||||
msgstr "Date"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:85
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||
msgid "Date or Date Range"
|
||||
msgstr "Date or Date Range"
|
||||
|
||||
#: 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:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:157
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:134
|
||||
@ -398,11 +398,11 @@ msgstr "Delete"
|
||||
msgid "Delete Account"
|
||||
msgstr "Delete Account"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:71
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
||||
msgid "Description"
|
||||
msgstr "Description"
|
||||
|
||||
@ -462,7 +462,7 @@ msgstr "Download PDF"
|
||||
msgid "Downloads"
|
||||
msgstr "Downloads"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:170
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:245
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:102
|
||||
@ -470,7 +470,7 @@ msgstr "Downloads"
|
||||
msgid "Duplicate"
|
||||
msgstr "Duplicate"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
msgid "Duplicate an existing item"
|
||||
msgstr "Duplicate an existing item"
|
||||
|
||||
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr "Here, you can update your profile to customize and personalize your experience."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:90
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
|
||||
msgid "Hidden"
|
||||
msgstr "Hidden"
|
||||
@ -686,7 +686,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>."
|
||||
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:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr "Icon"
|
||||
|
||||
@ -788,10 +788,10 @@ msgstr "john.doe@example.com"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
|
||||
msgid "Keywords"
|
||||
msgstr "Keywords"
|
||||
|
||||
@ -823,7 +823,7 @@ msgid "Letter"
|
||||
msgstr "Letter"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
||||
msgid "Level"
|
||||
msgstr "Level"
|
||||
|
||||
@ -852,7 +852,7 @@ msgstr "LinkedIn, JSON Resume, etc."
|
||||
msgid "List"
|
||||
msgstr "List"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83
|
||||
@ -900,7 +900,7 @@ msgstr "March 2023"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "March 2023 - Present"
|
||||
@ -914,13 +914,13 @@ msgid "MIT License"
|
||||
msgstr "MIT License"
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:106
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:57
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:43
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||
msgid "Name"
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr "Name"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr "Network"
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr "Network"
|
||||
msgid "New Password"
|
||||
msgstr "New Password"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr "No results found"
|
||||
|
||||
@ -993,7 +993,7 @@ msgstr "OpenAI Integration"
|
||||
msgid "Options"
|
||||
msgstr "Options"
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:46
|
||||
#: apps/client/src/pages/auth/layout.tsx:47
|
||||
msgctxt "The user can either login with email/password, or continue with GitHub or Google."
|
||||
msgid "or continue with"
|
||||
msgstr "or continue with"
|
||||
@ -1030,7 +1030,7 @@ msgstr "Personal notes for each resume"
|
||||
msgid "Phone"
|
||||
msgstr "Phone"
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:75
|
||||
#: apps/client/src/pages/auth/layout.tsx:76
|
||||
msgid "Photograph by Patrick Tomasso"
|
||||
msgstr "Photograph by Patrick Tomasso"
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr "Position"
|
||||
msgid "Powered by"
|
||||
msgstr "Powered by"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr "Powered by <0>Simple Icons</0>"
|
||||
|
||||
@ -1194,7 +1194,7 @@ msgstr "Rich in features, not in pricing."
|
||||
msgid "Rounded"
|
||||
msgstr "Rounded"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
|
||||
@ -1222,7 +1222,7 @@ msgstr "Search for a font subset"
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Search for a font variant"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr "Search for a language"
|
||||
|
||||
@ -1370,10 +1370,10 @@ msgstr "Stored"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
@ -1435,7 +1435,7 @@ msgstr "Theme"
|
||||
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."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:127
|
||||
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."
|
||||
|
||||
@ -1531,7 +1531,7 @@ msgstr "Unlocking a resume will allow you to make changes to it again."
|
||||
msgid "Unverified"
|
||||
msgstr "Unverified"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||
msgid "Update an existing item"
|
||||
msgstr "Update an existing item"
|
||||
|
||||
@ -1561,7 +1561,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."
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr "Username"
|
||||
@ -1613,11 +1613,11 @@ msgstr "We verify your email address only to ensure that we can send you a passw
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
@ -1629,10 +1629,10 @@ msgstr "Website"
|
||||
msgid "What's new in the latest version"
|
||||
msgstr "What's new in the latest version"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:112
|
||||
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."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: es\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-12-26 00:07\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:30\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Spanish\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -150,7 +150,7 @@ msgstr "Cualquier persona que tenga este enlace puede ver y descargar el curríc
|
||||
msgid "API Key"
|
||||
msgstr "Clave API"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:125
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr "¿Seguro que deseas eliminar este elemento?"
|
||||
|
||||
@ -235,7 +235,7 @@ msgstr "Creado con"
|
||||
msgid "By the community, for the community."
|
||||
msgstr "Por la comunidad, para la comunidad."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
|
||||
@ -318,7 +318,7 @@ msgstr "Copiar enlace al currículum"
|
||||
msgid "Copy to Clipboard"
|
||||
msgstr "Copiar al portapapeles"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||
msgid "Create"
|
||||
msgstr "Crear"
|
||||
@ -328,7 +328,7 @@ msgstr "Crear"
|
||||
msgid "Create a new account"
|
||||
msgstr "Crear una nueva cuenta"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
||||
msgid "Create a new item"
|
||||
msgstr "Crear un elemento nuevo"
|
||||
|
||||
@ -377,15 +377,15 @@ msgstr "Oscuro"
|
||||
msgid "Date"
|
||||
msgstr "Fecha"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:85
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||
msgid "Date or Date Range"
|
||||
msgstr "Fecha o rango de fechas"
|
||||
|
||||
#: 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:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:157
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:134
|
||||
@ -398,11 +398,11 @@ msgstr "Eliminar"
|
||||
msgid "Delete Account"
|
||||
msgstr "Eliminar cuenta"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:71
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
||||
msgid "Description"
|
||||
msgstr "Descripción"
|
||||
|
||||
@ -462,7 +462,7 @@ msgstr "Descargar PDF"
|
||||
msgid "Downloads"
|
||||
msgstr "Descargas"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:170
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:245
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:102
|
||||
@ -470,7 +470,7 @@ msgstr "Descargas"
|
||||
msgid "Duplicate"
|
||||
msgstr "Duplicar"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
msgid "Duplicate an existing item"
|
||||
msgstr "Duplicar un elemento existente"
|
||||
|
||||
@ -524,7 +524,7 @@ msgstr "Errores"
|
||||
|
||||
#: apps/client/src/pages/home/sections/support/index.tsx:78
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
msgstr ""
|
||||
msgstr "Incluso si no te encuentras en la posición de contribuir financieramente, puedes marcar la diferencia guardando el repositorio con una estrella, hablando de él con tus amigos o dejando un mensaje para saber cómo te ha ayudado Reactive Resume. ¡Tu feedback y apoyo son siempre bienvenidos y gratamente apreciados!"
|
||||
|
||||
#: apps/client/src/pages/home/sections/templates/index.tsx:12
|
||||
msgid "Explore the templates available in Reactive Resume and view the resumes crafted with them. They could also serve as examples to help guide the creation of your next resume."
|
||||
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr "Aquí puedes actualizar tu perfil para modificar y personalizar tu experiencia."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:90
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
|
||||
msgid "Hidden"
|
||||
msgstr "Oculto"
|
||||
@ -686,7 +686,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>."
|
||||
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:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr "Icono"
|
||||
|
||||
@ -751,7 +751,7 @@ msgstr "Parece que el código de respaldo que proporcionaste no es válido o est
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:15
|
||||
msgid "It looks like the reset token you provided is invalid. Please try restarting the password reset process again."
|
||||
msgstr ""
|
||||
msgstr "Parece que el token que has proporcionado no es válido. Por favor, prueba a reiniciar el proceso de restablecimiento de contraseña."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:33
|
||||
msgid "It looks like the resume you're looking for doesn't exist."
|
||||
@ -772,26 +772,26 @@ msgstr "Parece que tu dirección de correo electrónico ya ha sido verificada."
|
||||
#: apps/client/src/pages/auth/register/page.tsx:109
|
||||
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
|
||||
msgid "John Doe"
|
||||
msgstr ""
|
||||
msgstr "Juan Nadie"
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:130
|
||||
msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish."
|
||||
msgid "john.doe"
|
||||
msgstr ""
|
||||
msgstr "Juan.Nadie"
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:151
|
||||
msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish."
|
||||
msgid "john.doe@example.com"
|
||||
msgstr ""
|
||||
msgstr "juan.nadie@ejemplo.es"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
|
||||
msgid "Keywords"
|
||||
msgstr "Palabras clave"
|
||||
|
||||
@ -820,10 +820,10 @@ msgstr "Aprende más"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44
|
||||
msgid "Letter"
|
||||
msgstr ""
|
||||
msgstr "Carta"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
||||
msgid "Level"
|
||||
msgstr "Nivel"
|
||||
|
||||
@ -852,7 +852,7 @@ msgstr "LinkedIn, currículum JSON, etc."
|
||||
msgid "List"
|
||||
msgstr "Lista"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83
|
||||
@ -900,7 +900,7 @@ msgstr "Marzo de 2023"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "Marzo 2023 - Presente"
|
||||
@ -914,13 +914,13 @@ msgid "MIT License"
|
||||
msgstr "Licencia MIT"
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:106
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:57
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:43
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||
msgid "Name"
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr "Nombre"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr "Red"
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr "Red"
|
||||
msgid "New Password"
|
||||
msgstr "Nueva contraseña"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr "No se han encontrado resultados"
|
||||
|
||||
@ -993,7 +993,7 @@ msgstr "Integración con OpenAI"
|
||||
msgid "Options"
|
||||
msgstr "Opciones"
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:46
|
||||
#: apps/client/src/pages/auth/layout.tsx:47
|
||||
msgctxt "The user can either login with email/password, or continue with GitHub or Google."
|
||||
msgid "or continue with"
|
||||
msgstr "o continuar con"
|
||||
@ -1030,7 +1030,7 @@ msgstr "Notas personales para cada currículum"
|
||||
msgid "Phone"
|
||||
msgstr "Teléfono"
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:75
|
||||
#: apps/client/src/pages/auth/layout.tsx:76
|
||||
msgid "Photograph by Patrick Tomasso"
|
||||
msgstr "Fotografía de Patrick Tomasso"
|
||||
|
||||
@ -1070,11 +1070,11 @@ msgstr "Posición"
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:97
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
msgstr "Impulsado por"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
msgstr "Impulsado por <0>Simple Icons</0>"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43
|
||||
msgid "Primary Color"
|
||||
@ -1121,15 +1121,15 @@ msgstr "Reactive Resume"
|
||||
|
||||
#: apps/client/src/pages/home/sections/logo-cloud/index.tsx:39
|
||||
msgid "Reactive Resume has helped people land jobs at these great companies:"
|
||||
msgstr ""
|
||||
msgstr "Reactive Resume ha ayudado a personas a conseguir puestos de trabajo en estas grandes compañías:"
|
||||
|
||||
#: apps/client/src/pages/home/sections/support/index.tsx:12
|
||||
msgid "Reactive Resume is a free and open-source project crafted mostly by me, and your support would be greatly appreciated. If you're inclined to contribute, and only if you can afford to, consider making a donation through any of the listed platforms. Additionally, donations to Reactive Resume through Open Collective are tax-exempt, as the project is fiscally hosted by Open Collective Europe."
|
||||
msgstr ""
|
||||
msgstr "Reactive Resume es un proyecto gratuito y de código abierto construido mayoritariamente por mí y tu apoyo sería gratamente apreciado. Si estás dispuesto a contribuir, solo si te lo puedes permitir, considera realizar una donación por medio de alguna de las plataformas listadas. Adicionalmente, las donaciones a Reactive Resume por medio de Open Collective están libres de impuestos, ya que el proyecto está financiado por Open Collective Europe."
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:108
|
||||
msgid "Reactive Resume is a passion project of over 3 years of hard work, and with that comes a number of re-iterated ideas and features that have been built to (near) perfection."
|
||||
msgstr ""
|
||||
msgstr "Reactive Resume es un proyecto pasional de más de 3 años de duro trabajo, con ello existen una serie de ideas reiteradas y funcionalidades que han sido construidas hasta la (casi) perfección."
|
||||
|
||||
#: apps/client/src/pages/home/sections/contributors/index.tsx:22
|
||||
msgid "Reactive Resume thrives thanks to its vibrant community. This project owes its progress to numerous individuals who've dedicated their time and skills. Below, we celebrate the coders who've enhanced its features on GitHub and the linguists whose translations on Crowdin have made it accessible to a broader audience."
|
||||
@ -1194,7 +1194,7 @@ msgstr "Rico en funciones, no en precios."
|
||||
msgid "Rounded"
|
||||
msgstr "Redondeado"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
|
||||
@ -1222,7 +1222,7 @@ msgstr "Buscar un subconjunto de fuentes"
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Buscar una variante de fuente"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr "Buscar un idioma"
|
||||
|
||||
@ -1236,7 +1236,7 @@ msgstr "Seguridad"
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:50
|
||||
msgid "Self-host with Docker"
|
||||
msgstr ""
|
||||
msgstr "Auto alojamiento con Docker"
|
||||
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:98
|
||||
msgid "Send Email"
|
||||
@ -1282,36 +1282,36 @@ msgstr "Barra lateral"
|
||||
#: apps/client/src/pages/auth/login/page.tsx:116
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:92
|
||||
msgid "Sign in"
|
||||
msgstr ""
|
||||
msgstr "Iniciar sesión"
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:77
|
||||
msgid "Sign in now"
|
||||
msgstr ""
|
||||
msgstr "Inicia sesión"
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:55
|
||||
#: apps/client/src/pages/auth/login/page.tsx:60
|
||||
msgid "Sign in to your account"
|
||||
msgstr ""
|
||||
msgstr "Inicia sesión a tu cuenta"
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:55
|
||||
msgid "Sign in with Email"
|
||||
msgstr ""
|
||||
msgstr "Inicia sesión con Email"
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:53
|
||||
msgid "Sign in with GitHub"
|
||||
msgstr ""
|
||||
msgstr "Inicia sesión con GitHub"
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:54
|
||||
msgid "Sign in with Google"
|
||||
msgstr ""
|
||||
msgstr "Inicia sesión con Google"
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:185
|
||||
msgid "Sign up"
|
||||
msgstr ""
|
||||
msgstr "Registrarse"
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:85
|
||||
msgid "Signups are currently disabled by the administrator."
|
||||
msgstr ""
|
||||
msgstr "Los registros están actualmente deshabilitados por el administrador."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:72
|
||||
msgid "Size (in px)"
|
||||
@ -1323,15 +1323,15 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:39
|
||||
msgid "Something went wrong while grabbing a preview your resume. Please try again later or raise an issue on GitHub."
|
||||
msgstr ""
|
||||
msgstr "Algo salió mal al obtener una vista previa de tu currículum. Por favor, vuelva a intentarlo más tarde o plantee un problema en GitHub."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:37
|
||||
msgid "Something went wrong while printing your resume. Please try again later or raise an issue on GitHub."
|
||||
msgstr ""
|
||||
msgstr "Algo salió mal al imprimir tu currículum. Por favor, vuelva a intentarlo más tarde o plantee un error en GitHub."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:41
|
||||
msgid "Something went wrong while processing your request. Please try again later or raise an issue on GitHub."
|
||||
msgstr ""
|
||||
msgstr "Algo salió mal procesando su solicitud. Por favor, vuelva a intentarlo más tarde o plantee un error en GitHub."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:137
|
||||
@ -1370,10 +1370,10 @@ msgstr "Almacenado"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
@ -1435,7 +1435,7 @@ msgstr "Tema"
|
||||
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."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:127
|
||||
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."
|
||||
|
||||
@ -1484,19 +1484,19 @@ msgstr "Seguimiento de visitas y descargas"
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr ""
|
||||
msgstr "Autenticación de doble factor"
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:23
|
||||
msgid "Two-factor authentication is already enabled for this account."
|
||||
msgstr ""
|
||||
msgstr "La autenticación de doble factor ya está habilitada para esta cuenta."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:21
|
||||
msgid "Two-factor authentication is not enabled for this account."
|
||||
msgstr ""
|
||||
msgstr "La autenticación de doble factor no está habilitada para esta cuenta."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84
|
||||
msgid "Type <0>delete</0> to confirm deleting your account."
|
||||
msgstr ""
|
||||
msgstr "Escriba <0>eliminar</0> para confirmar la eliminación de tu cuenta."
|
||||
|
||||
#. For example, Bachelor's Degree or Master's Degree
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54
|
||||
@ -1531,7 +1531,7 @@ msgstr "Desbloquear un currículum te permitirá realizar cambios en él nuevame
|
||||
msgid "Unverified"
|
||||
msgstr "Sin verificar"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||
msgid "Update an existing item"
|
||||
msgstr "Actualizar un elemento existente"
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr "Usuario"
|
||||
@ -1588,7 +1588,7 @@ msgstr "Verificada"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:159
|
||||
msgid "Verify that two-factor authentication has been setup correctly"
|
||||
msgstr ""
|
||||
msgstr "Verifica que la autenticación de doble factor haya sido configurada correctamente"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:48
|
||||
@ -1613,11 +1613,11 @@ msgstr "Verificamos tu dirección de correo electrónico sólo para asegurarnos
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
@ -1629,10 +1629,10 @@ msgstr "Sitio Web"
|
||||
msgid "What's new in the latest version"
|
||||
msgstr "Novedades en la última versión"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:112
|
||||
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."
|
||||
|
||||
@ -1667,7 +1667,7 @@ msgstr "Tu cuenta y todos tus datos han sido eliminados con éxito. ¡Adiós!"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116
|
||||
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 "Su clave de 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."
|
||||
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:28
|
||||
msgid "Your email address has been verified successfully."
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: fa\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-11-26 14:53\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:30\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Persian\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -20,35 +20,35 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:169
|
||||
msgid "You have enabled two-factor authentication successfully."
|
||||
msgstr ""
|
||||
msgstr "احراز هویت دو مرحله ای را با موفقیت فعال کردید."
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:57
|
||||
msgid "{templatesCount} resume templates to choose from"
|
||||
msgstr ""
|
||||
msgstr "{templatesCount} قالب رزومه برای انتخاب"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:114
|
||||
msgid "{value, plural, one {Column} other {Columns}}"
|
||||
msgstr ""
|
||||
msgstr "{value, plural, one {ستون} other {ستون}}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
||||
msgid "<0>I built Reactive Resume mostly by myself during my spare time, with a lot of help from other great open-source contributors.</0><1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.</1>"
|
||||
msgstr ""
|
||||
msgstr "<0>من Reactive Resume را بیشتر در اوقات فراغت خودم و با کمک جامعه اوپنسورس ساختم.</0> <1>اگر این اپلیکیشن را دوست دارید و میخواهید از رایگان نگه داشتن آن برای همیشه حمایت کنید، لطفاً هر چقدر در توان شماست دونیت کنید.</1>"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||
msgstr ""
|
||||
msgstr "<0>مطمئنم که برنامه بینقص نیست، اما دوست دارم که باشد.</0> <1>اگر موقع ایجاد رزومه خودتان با مشکلی مواجه شدید یا ایدهای دارید که به شما و سایر کاربران در ساختن راحتتر رزومه کمک میکند، در گیتهاب پروژه یک issue ایجاد کنید یا به من ایمیل بفرستید.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126
|
||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||
msgstr ""
|
||||
msgstr "<0>توجه:</0> با استفاده از امکانات OpenAI API، <1>شرایط استفاده را تایید میکنید و میپذیرید</1> و <2>خط مشی رازداری</2> را که توسط OpenAI مشخص شده است. لطفاً توجه داشته باشید که Reactive Resume هیچ مسئولیتی در قبال هرگونه استفاده نادرست یا غیرمجاز از سرویس ندارد و هرگونه عواقب یا تعهدات ناشی از آن صرفاً بر عهده کاربر است."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr ""
|
||||
msgstr "<0>جامعه Reactive Resume زمان زیادی را صرف نوشتن مستندات کرده است، و من مطمئن هستم که به شما در شروع کار با برنامه کمک خواهد کرد.</0> <1>همچنین مثالها و تمپلتهای زیادی وجود دارد که به شما در شروع کار کمک میکند، و شاید این مثالها در شناخت امکاناتی که ممکن است در روند ساختن رزومه ندانید مفید باشند.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr ""
|
||||
msgstr "<0> احراز هویت دو مرحلهای در حال حاضر غیرفعال است.</0> می توانید با نصب یک اپلیکیشن احراز هویت (مثل Google Authenticator یا Microsoft Authenticator) و افزودن آن به حساب خود، ورود دو مرحلهای را فعال کنید."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
@ -150,7 +150,7 @@ msgstr ""
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:125
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr ""
|
||||
|
||||
@ -235,12 +235,12 @@ msgstr ""
|
||||
msgid "By the community, for the community."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
msgstr "انصراف"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
@ -282,168 +282,168 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:50
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr ""
|
||||
msgstr "کد باید دقیقاً 6 رقمی باشد."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:108
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
msgstr "ستونها"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
msgstr "شرکت"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
msgid "Confident"
|
||||
msgstr ""
|
||||
msgstr "مطمئن"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr ""
|
||||
msgstr "تایید گذرواژه جدید"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:232
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
msgstr "ادامه"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
||||
msgid "Copy"
|
||||
msgstr ""
|
||||
msgstr "کپی"
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:132
|
||||
msgid "Copy Link to Resume"
|
||||
msgstr ""
|
||||
msgstr "کپی لینک به رزومه"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78
|
||||
msgid "Copy to Clipboard"
|
||||
msgstr ""
|
||||
msgstr "کپی به کلیپبورد"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
msgstr "ایجاد"
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:67
|
||||
#: apps/client/src/pages/auth/register/page.tsx:72
|
||||
msgid "Create a new account"
|
||||
msgstr ""
|
||||
msgstr "ایجاد یک حساب جدید"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
||||
msgid "Create a new item"
|
||||
msgstr ""
|
||||
msgstr "ساخت آیتم جدید"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:177
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19
|
||||
msgid "Create a new resume"
|
||||
msgstr ""
|
||||
msgstr "ساخت رزومه جدید"
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:65
|
||||
msgctxt "This is a link to create a new account"
|
||||
msgid "Create one now"
|
||||
msgstr ""
|
||||
msgstr "اکنون یکی ایجاد کنید"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:258
|
||||
msgid "Create Sample Resume"
|
||||
msgstr ""
|
||||
msgstr "ایجاد نمونه رزومه"
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:62
|
||||
msgid "Custom resume sections"
|
||||
msgstr ""
|
||||
msgstr "بخشهای رزومه شخصیسازی شده"
|
||||
|
||||
#: apps/client/src/stores/resume.ts:45
|
||||
msgid "Custom Section"
|
||||
msgstr ""
|
||||
msgstr "بخش شخصیسازی شده"
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:60
|
||||
msgid "Customisable colour palettes"
|
||||
msgstr ""
|
||||
msgstr "پالتهای رنگی قابل تنظیم"
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:61
|
||||
msgid "Customisable layouts"
|
||||
msgstr ""
|
||||
msgstr "طرحهای قابل تنظیم"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62
|
||||
msgid "Danger Zone"
|
||||
msgstr ""
|
||||
msgstr "محدوده خطر"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:82
|
||||
msgid "Dark"
|
||||
msgstr ""
|
||||
msgstr "تاریک"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
msgstr "تاریخ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:85
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||
msgid "Date or Date Range"
|
||||
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:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:157
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:198
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
msgstr "حذف"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94
|
||||
msgid "Delete Account"
|
||||
msgstr ""
|
||||
msgstr "حذف حساب کاربری"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:71
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
msgstr "توضیحات"
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:58
|
||||
msgid "Design single/multi page resumes"
|
||||
msgstr ""
|
||||
msgstr "طراحی رزومه تک / چند صفحهای"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
msgstr "غیرفعال"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155
|
||||
msgid "Disable 2FA"
|
||||
msgstr ""
|
||||
msgstr "غیرفعالسازی ورود دو مرحلهای"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:128
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
msgstr "صرفنظر"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
msgstr "مستندات"
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:62
|
||||
msgid "Don't have an account?"
|
||||
msgstr ""
|
||||
msgstr "حساب کاربری ندارید؟"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||
msgid "Don't know where to begin? Hit the docs!"
|
||||
msgstr ""
|
||||
msgstr "نمی دانید از کجا شروع کنید؟ از مستندات!"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:101
|
||||
msgid "Don't see your language? <0>Help translate the app.</0>"
|
||||
msgstr ""
|
||||
msgstr "زبان خود را نمی بینید؟ <0>به ترجمه برنامه کمک کنید.</0>"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40
|
||||
msgid "Donate to Reactive Resume"
|
||||
msgstr ""
|
||||
msgstr "به Reactive Resume دونیت کنید"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56
|
||||
msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate."
|
||||
@ -460,31 +460,31 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58
|
||||
msgid "Downloads"
|
||||
msgstr ""
|
||||
msgstr "دانلود"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:170
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:245
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:102
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:182
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
msgstr "کپی کردن"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
msgid "Duplicate an existing item"
|
||||
msgstr ""
|
||||
msgstr "کپی یک مورد موجود"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:179
|
||||
msgid "Duplicate an existing resume"
|
||||
msgstr ""
|
||||
msgstr "کپی یک رزومه موجود"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
msgstr "ویرایش"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:174
|
||||
msgid "Effects"
|
||||
msgstr ""
|
||||
msgstr "جلوهها"
|
||||
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:82
|
||||
#: apps/client/src/pages/auth/login/page.tsx:84
|
||||
@ -492,27 +492,27 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
msgstr "ایمیل"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159
|
||||
msgid "Enable 2FA"
|
||||
msgstr ""
|
||||
msgstr "فعالسازی ورود دو مرحلهای"
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:67
|
||||
msgid "Enter a new password below, and make sure it's secure."
|
||||
msgstr ""
|
||||
msgstr "یک رمز عبور جدید در زیر وارد کنید و مطمئن شوید که ایمن است."
|
||||
|
||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:59
|
||||
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
|
||||
msgstr ""
|
||||
msgstr "یکی از 10 کد پشتیبان را که هنگام فعال کردن احراز هویت دو مرحلهای ذخیره کردهاید، وارد کنید."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:168
|
||||
msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly."
|
||||
msgstr ""
|
||||
msgstr "کد 6 رقمی را از برنامه احراز هویت خود وارد کنید تا تأیید شود که 2FA به درستی تنظیم شده است."
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:60
|
||||
msgid "Enter the one-time password provided by your authenticator app below."
|
||||
msgstr ""
|
||||
msgstr "رمز عبور یکبار مصرف ارائه شده توسط برنامه احراز هویت خود را در زیر وارد کنید."
|
||||
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:70
|
||||
msgid "Enter your email address and we will send you a link to reset your password if the account exists."
|
||||
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:90
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
|
||||
msgid "Hidden"
|
||||
msgstr ""
|
||||
@ -686,7 +686,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>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -788,10 +788,10 @@ msgstr ""
|
||||
msgid "JSON"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
@ -823,7 +823,7 @@ msgid "Letter"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
||||
msgid "Level"
|
||||
msgstr ""
|
||||
|
||||
@ -852,7 +852,7 @@ msgstr ""
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83
|
||||
@ -900,7 +900,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||
msgid "March 2023 - Present"
|
||||
msgstr ""
|
||||
@ -914,13 +914,13 @@ msgid "MIT License"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:106
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:57
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:43
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||
msgid "Name"
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -993,7 +993,7 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:46
|
||||
#: apps/client/src/pages/auth/layout.tsx:47
|
||||
msgctxt "The user can either login with email/password, or continue with GitHub or Google."
|
||||
msgid "or continue with"
|
||||
msgstr ""
|
||||
@ -1030,7 +1030,7 @@ msgstr ""
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:75
|
||||
#: apps/client/src/pages/auth/layout.tsx:76
|
||||
msgid "Photograph by Patrick Tomasso"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1194,7 +1194,7 @@ msgstr ""
|
||||
msgid "Rounded"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1370,10 +1370,10 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
@ -1435,7 +1435,7 @@ msgstr ""
|
||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:127
|
||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||
msgstr ""
|
||||
|
||||
@ -1531,7 +1531,7 @@ msgstr ""
|
||||
msgid "Unverified"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||
msgid "Update an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1613,11 +1613,11 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
@ -1629,10 +1629,10 @@ msgstr ""
|
||||
msgid "What's new in the latest version"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:112
|
||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: fi\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-11-26 14:53\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Finnish\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -150,7 +150,7 @@ msgstr ""
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:125
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr ""
|
||||
|
||||
@ -235,7 +235,7 @@ msgstr ""
|
||||
msgid "By the community, for the community."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
|
||||
@ -318,7 +318,7 @@ msgstr ""
|
||||
msgid "Copy to Clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
@ -328,7 +328,7 @@ msgstr ""
|
||||
msgid "Create a new account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
||||
msgid "Create a new item"
|
||||
msgstr ""
|
||||
|
||||
@ -377,15 +377,15 @@ msgstr ""
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:85
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||
msgid "Date or Date Range"
|
||||
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:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:157
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:134
|
||||
@ -398,11 +398,11 @@ msgstr ""
|
||||
msgid "Delete Account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:71
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
@ -462,7 +462,7 @@ msgstr ""
|
||||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:170
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:245
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:102
|
||||
@ -470,7 +470,7 @@ msgstr ""
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
msgid "Duplicate an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:90
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
|
||||
msgid "Hidden"
|
||||
msgstr ""
|
||||
@ -686,7 +686,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>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -788,10 +788,10 @@ msgstr ""
|
||||
msgid "JSON"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
@ -823,7 +823,7 @@ msgid "Letter"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
||||
msgid "Level"
|
||||
msgstr ""
|
||||
|
||||
@ -852,7 +852,7 @@ msgstr ""
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83
|
||||
@ -900,7 +900,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||
msgid "March 2023 - Present"
|
||||
msgstr ""
|
||||
@ -914,13 +914,13 @@ msgid "MIT License"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:106
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:57
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:43
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||
msgid "Name"
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -993,7 +993,7 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:46
|
||||
#: apps/client/src/pages/auth/layout.tsx:47
|
||||
msgctxt "The user can either login with email/password, or continue with GitHub or Google."
|
||||
msgid "or continue with"
|
||||
msgstr ""
|
||||
@ -1030,7 +1030,7 @@ msgstr ""
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:75
|
||||
#: apps/client/src/pages/auth/layout.tsx:76
|
||||
msgid "Photograph by Patrick Tomasso"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1194,7 +1194,7 @@ msgstr ""
|
||||
msgid "Rounded"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1370,10 +1370,10 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
@ -1435,7 +1435,7 @@ msgstr ""
|
||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:127
|
||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||
msgstr ""
|
||||
|
||||
@ -1531,7 +1531,7 @@ msgstr ""
|
||||
msgid "Unverified"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||
msgid "Update an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1613,11 +1613,11 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
@ -1629,10 +1629,10 @@ msgstr ""
|
||||
msgid "What's new in the latest version"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:112
|
||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: fr\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-12-19 00:08\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: French\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
@ -150,7 +150,7 @@ msgstr "Toute personne avec ce lien peut voir et télécharger le CV. Partagez l
|
||||
msgid "API Key"
|
||||
msgstr "Clé API"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:125
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr "Êtes-vous sûr de vouloir supprimer cet élément?"
|
||||
|
||||
@ -235,7 +235,7 @@ msgstr "Construit avec"
|
||||
msgid "By the community, for the community."
|
||||
msgstr "Par la communauté, pour la communauté."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
|
||||
@ -318,7 +318,7 @@ msgstr "Copier le lien vers le CV"
|
||||
msgid "Copy to Clipboard"
|
||||
msgstr "Copier dans le Presse-Papier"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||
msgid "Create"
|
||||
msgstr "Créer"
|
||||
@ -328,7 +328,7 @@ msgstr "Créer"
|
||||
msgid "Create a new account"
|
||||
msgstr "Créer un nouveau compte"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
||||
msgid "Create a new item"
|
||||
msgstr "Créer un nouvel élément"
|
||||
|
||||
@ -377,15 +377,15 @@ msgstr "Sombre"
|
||||
msgid "Date"
|
||||
msgstr "Date"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:85
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||
msgid "Date or Date Range"
|
||||
msgstr "Période ou date"
|
||||
|
||||
#: 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:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:157
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:134
|
||||
@ -398,11 +398,11 @@ msgstr "Supprimer"
|
||||
msgid "Delete Account"
|
||||
msgstr "Supprimer le compte"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:71
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
||||
msgid "Description"
|
||||
msgstr "Description"
|
||||
|
||||
@ -462,7 +462,7 @@ msgstr "Télécharger au format PDF"
|
||||
msgid "Downloads"
|
||||
msgstr "Télécharger"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:170
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:245
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:102
|
||||
@ -470,7 +470,7 @@ msgstr "Télécharger"
|
||||
msgid "Duplicate"
|
||||
msgstr "Dupliquer"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
msgid "Duplicate an existing item"
|
||||
msgstr "Dupliquer un élément existant"
|
||||
|
||||
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr "Ici, vous pouvez mettre à jour votre profil pour personnaliser et personnaliser votre expérience."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:90
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
|
||||
msgid "Hidden"
|
||||
msgstr "Masqué"
|
||||
@ -686,7 +686,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>."
|
||||
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:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr "Icône"
|
||||
|
||||
@ -788,10 +788,10 @@ msgstr "john.doe@example.com"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
|
||||
msgid "Keywords"
|
||||
msgstr "Mots-clés"
|
||||
|
||||
@ -823,7 +823,7 @@ msgid "Letter"
|
||||
msgstr "Lettre"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
||||
msgid "Level"
|
||||
msgstr "Niveau"
|
||||
|
||||
@ -852,7 +852,7 @@ msgstr "LinkedIn, CV JSON, etc."
|
||||
msgid "List"
|
||||
msgstr "Liste"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83
|
||||
@ -900,7 +900,7 @@ msgstr "Mars 2023"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "Mars 2023 - Aujourd'hui"
|
||||
@ -914,13 +914,13 @@ msgid "MIT License"
|
||||
msgstr "Licence MIT"
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:106
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:57
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:43
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||
msgid "Name"
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr "Nom"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr "Réseau"
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr "Réseau"
|
||||
msgid "New Password"
|
||||
msgstr "Nouveau mot de passe"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr "Aucun résultat trouvé"
|
||||
|
||||
@ -993,7 +993,7 @@ msgstr "Intégration OpenAI"
|
||||
msgid "Options"
|
||||
msgstr "Options"
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:46
|
||||
#: apps/client/src/pages/auth/layout.tsx:47
|
||||
msgctxt "The user can either login with email/password, or continue with GitHub or Google."
|
||||
msgid "or continue with"
|
||||
msgstr "ou continuer avec"
|
||||
@ -1030,7 +1030,7 @@ msgstr "Notes personnelles pour chaque CV"
|
||||
msgid "Phone"
|
||||
msgstr "Téléphone"
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:75
|
||||
#: apps/client/src/pages/auth/layout.tsx:76
|
||||
msgid "Photograph by Patrick Tomasso"
|
||||
msgstr "Photographie de Patrick Tomasso"
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr "Poste"
|
||||
msgid "Powered by"
|
||||
msgstr "Propulsé par"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr "Réalisé par <0>Simple Icons</0>"
|
||||
|
||||
@ -1194,7 +1194,7 @@ msgstr "Riche en fonctionnalités, pas en prix."
|
||||
msgid "Rounded"
|
||||
msgstr "Arrondi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
|
||||
@ -1222,7 +1222,7 @@ msgstr "Rechercher un sous-ensemble de polices"
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Rechercher une variante de police"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr "Rechercher une langue"
|
||||
|
||||
@ -1370,10 +1370,10 @@ msgstr "Stocké"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
@ -1435,7 +1435,7 @@ msgstr "Thème"
|
||||
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."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:127
|
||||
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."
|
||||
|
||||
@ -1531,7 +1531,7 @@ msgstr "Le déverrouillage d'un CV vous permettra de le modifier à nouveau."
|
||||
msgid "Unverified"
|
||||
msgstr "Non vérifié"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||
msgid "Update an existing item"
|
||||
msgstr "Mettre à jour un élément existant"
|
||||
|
||||
@ -1561,7 +1561,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."
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr "Nom d’utilisateur"
|
||||
@ -1613,11 +1613,11 @@ msgstr "Nous vérifions votre adresse électronique uniquement pour nous assurer
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
@ -1629,10 +1629,10 @@ msgstr "Site Web"
|
||||
msgid "What's new in the latest version"
|
||||
msgstr "Quoi de neuf dans la dernière version"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:112
|
||||
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."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: he\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-12-12 00:08\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Hebrew\n"
|
||||
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n"
|
||||
@ -150,7 +150,7 @@ msgstr "כל מי שמחזיק בקישור הזה יכול לצפות ולהו
|
||||
msgid "API Key"
|
||||
msgstr "מפתח API"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:125
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr "למחוק את הפריט הזה?"
|
||||
|
||||
@ -235,7 +235,7 @@ msgstr "נבנה עם"
|
||||
msgid "By the community, for the community."
|
||||
msgstr "על ידי הקהילה ועבורה."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
|
||||
@ -318,7 +318,7 @@ msgstr "העתקת הקישור לקורות החיים"
|
||||
msgid "Copy to Clipboard"
|
||||
msgstr "העתקה ללוח הגזירים"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||
msgid "Create"
|
||||
msgstr "יצירה"
|
||||
@ -328,7 +328,7 @@ msgstr "יצירה"
|
||||
msgid "Create a new account"
|
||||
msgstr "יצירת חשבון חדש"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
||||
msgid "Create a new item"
|
||||
msgstr "יצירת פריט חדש"
|
||||
|
||||
@ -377,15 +377,15 @@ msgstr "כהה"
|
||||
msgid "Date"
|
||||
msgstr "תאריך"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:85
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||
msgid "Date or Date Range"
|
||||
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:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:157
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:134
|
||||
@ -398,11 +398,11 @@ msgstr "מחיקה"
|
||||
msgid "Delete Account"
|
||||
msgstr "מחיקת חשבון"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:71
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
||||
msgid "Description"
|
||||
msgstr "תיאור"
|
||||
|
||||
@ -462,7 +462,7 @@ msgstr "הורדת PDF"
|
||||
msgid "Downloads"
|
||||
msgstr "הורדות"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:170
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:245
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:102
|
||||
@ -470,7 +470,7 @@ msgstr "הורדות"
|
||||
msgid "Duplicate"
|
||||
msgstr "שכפול"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
msgid "Duplicate an existing item"
|
||||
msgstr "שכפול פריט קיים"
|
||||
|
||||
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr "כאן אפשר לעדכן את הפרופיל שלך כדי להתאים ולהפוך את החוויה שלך לאישית יותר."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:90
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
|
||||
msgid "Hidden"
|
||||
msgstr "מוסתר"
|
||||
@ -686,7 +686,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>."
|
||||
msgstr "תמיד מעניין אותי לשמוע ממשתמשי Reactive Resume בנוגע למשוב שלהם. הנה חלק מההודעות שקיבלתי. אם יש לך משוב, אשמח לקבל ממך הודעה בדוא״ל אל <0>{email}</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr "סמל"
|
||||
|
||||
@ -788,10 +788,10 @@ msgstr "israel.israeli@israel.gov.il"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
|
||||
msgid "Keywords"
|
||||
msgstr "מילות מפתח"
|
||||
|
||||
@ -823,7 +823,7 @@ msgid "Letter"
|
||||
msgstr "מכתב"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
||||
msgid "Level"
|
||||
msgstr "רמה"
|
||||
|
||||
@ -852,7 +852,7 @@ msgstr "LinkedIn, JSON Resume וכו׳."
|
||||
msgid "List"
|
||||
msgstr "רשימה"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83
|
||||
@ -900,7 +900,7 @@ msgstr "מרץ 2023"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "מרץ 2023 - כרגע"
|
||||
@ -914,13 +914,13 @@ msgid "MIT License"
|
||||
msgstr "רישיון MIT"
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:106
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:57
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:43
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||
msgid "Name"
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr "שם"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr "רשת"
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr "רשת"
|
||||
msgid "New Password"
|
||||
msgstr "סיסמה חדשה"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr "לא נמצאו תוצאות"
|
||||
|
||||
@ -993,7 +993,7 @@ msgstr "שילוב מול OpenAI"
|
||||
msgid "Options"
|
||||
msgstr "אפשרויות"
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:46
|
||||
#: apps/client/src/pages/auth/layout.tsx:47
|
||||
msgctxt "The user can either login with email/password, or continue with GitHub or Google."
|
||||
msgid "or continue with"
|
||||
msgstr "או להמשיך עם"
|
||||
@ -1030,7 +1030,7 @@ msgstr "הערות אישיות לכל קורות חיים"
|
||||
msgid "Phone"
|
||||
msgstr "טלפון"
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:75
|
||||
#: apps/client/src/pages/auth/layout.tsx:76
|
||||
msgid "Photograph by Patrick Tomasso"
|
||||
msgstr "תמונה מאת פטריק טומאסו"
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr "תפקיד"
|
||||
msgid "Powered by"
|
||||
msgstr "מופעל על גבי"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr "נעזר ב־<0>Simple Icons</0>"
|
||||
|
||||
@ -1194,7 +1194,7 @@ msgstr "עשיר ביכולות, לא בממון."
|
||||
msgid "Rounded"
|
||||
msgstr "מעוגל"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
|
||||
@ -1222,7 +1222,7 @@ msgstr "חיפוש תת־קבוצת גופנים"
|
||||
msgid "Search for a font variant"
|
||||
msgstr "חיפוש הגוון גופן"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr "חיפוש שפה"
|
||||
|
||||
@ -1370,10 +1370,10 @@ msgstr "מאוחסן"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
@ -1435,7 +1435,7 @@ msgstr "ערכת עיצוב"
|
||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||
msgstr "קרתה תקלה בחיבור לדפדפן. נא לוודא ש־‚chrome’ פעיל ונגיש."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:127
|
||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||
msgstr "אפשר לחזור אחורה מהפעולה הזאת על ידי לחיצה על כפתור ההחזרה בסרגל הכלים המרחף."
|
||||
|
||||
@ -1531,7 +1531,7 @@ msgstr "שחרור קורות חיים יאפשר לערוך בו שינויים
|
||||
msgid "Unverified"
|
||||
msgstr "לא מאומת"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||
msgid "Update an existing item"
|
||||
msgstr "עדכון פריט קיים"
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr "למשתמש אין רשומת ‚סודות’ (secrets) משויכת אליו. נא לדווח על התקלה הזאת ב־GitHub."
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr "שם משתמש"
|
||||
@ -1613,11 +1613,11 @@ msgstr "אנו מאמתים את כתובת הדוא״ל שלך רק כדי לו
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
@ -1629,10 +1629,10 @@ msgstr "אתר אינטרנט"
|
||||
msgid "What's new in the latest version"
|
||||
msgstr "מה חדש בגרסה העדכנית"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:112
|
||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||
msgstr "אפשר להוסיף מספר מילות מפתח על ידי הפרדתן בפסיק או בלחיצה על Enter."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: hi\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-11-26 14:53\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Hindi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -150,7 +150,7 @@ msgstr "इस लिंक वाला कोई भी व्यक्ति
|
||||
msgid "API Key"
|
||||
msgstr "API कुंजी"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:125
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr "क्या आप बाकई यह आइटम डिलीट करना चाहते हैं?"
|
||||
|
||||
@ -235,7 +235,7 @@ msgstr "के साथ निर्मित"
|
||||
msgid "By the community, for the community."
|
||||
msgstr "समुदाय द्वारा, समुदाय के लिए."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
|
||||
@ -318,7 +318,7 @@ msgstr "फिर से शुरू करने के लिए लिंक
|
||||
msgid "Copy to Clipboard"
|
||||
msgstr "क्लिपबोर्ड पर कॉपी करें"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||
msgid "Create"
|
||||
msgstr "बनाएँ"
|
||||
@ -328,7 +328,7 @@ msgstr "बनाएँ"
|
||||
msgid "Create a new account"
|
||||
msgstr "एक नया खाता बनाएँ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
||||
msgid "Create a new item"
|
||||
msgstr "एक नया आइटम बनाएं"
|
||||
|
||||
@ -377,15 +377,15 @@ msgstr "गहरी"
|
||||
msgid "Date"
|
||||
msgstr "दिनांक"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:85
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||
msgid "Date or Date Range"
|
||||
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:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:157
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:134
|
||||
@ -398,11 +398,11 @@ msgstr "हटाएं"
|
||||
msgid "Delete Account"
|
||||
msgstr "खाता हटाएँ|"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:71
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
||||
msgid "Description"
|
||||
msgstr "विवरण"
|
||||
|
||||
@ -462,7 +462,7 @@ msgstr ""
|
||||
msgid "Downloads"
|
||||
msgstr "डाउनलोड"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:170
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:245
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:102
|
||||
@ -470,7 +470,7 @@ msgstr "डाउनलोड"
|
||||
msgid "Duplicate"
|
||||
msgstr "प्रतिरूप"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
msgid "Duplicate an existing item"
|
||||
msgstr "किसी मौजूदा आइटम का नक़ल बनाएं"
|
||||
|
||||
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr "यहां, आप अपने अनुभव को अनुकूलित और वैयक्तिकृत करने के लिए अपनी प्रोफ़ाइल को अपडेट कर सकते हैं।"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:90
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
|
||||
msgid "Hidden"
|
||||
msgstr "छुपा हुआ"
|
||||
@ -686,7 +686,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>."
|
||||
msgstr "मुझे हमेशा रिएक्टिव रेज़्यूमे के उपयोगकर्ताओं से प्रतिक्रिया या समर्थन सुनना अच्छा लगता है। यहां कुछ संदेश हैं जो मुझे प्राप्त हुए हैं। यदि आपके पास कोई प्रतिक्रिया है, तो बेझिझक मुझे <0>{email} पर एक ईमेल भेजें</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr "आइकॉन"
|
||||
|
||||
@ -788,10 +788,10 @@ msgstr "john.doe@example.com"
|
||||
msgid "JSON"
|
||||
msgstr "जेसन"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
|
||||
msgid "Keywords"
|
||||
msgstr "खोजशब्द:"
|
||||
|
||||
@ -823,7 +823,7 @@ msgid "Letter"
|
||||
msgstr "अक्षर"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
||||
msgid "Level"
|
||||
msgstr "स्तर"
|
||||
|
||||
@ -852,7 +852,7 @@ msgstr "लिंक्डइन, JSON बायोडाटा, आदि।"
|
||||
msgid "List"
|
||||
msgstr "सूची"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83
|
||||
@ -900,7 +900,7 @@ msgstr "मार्च 2023"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "मार्च 2023 - वर्तमान"
|
||||
@ -914,13 +914,13 @@ msgid "MIT License"
|
||||
msgstr "मआईटी लाईसन्स"
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:106
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:57
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:43
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||
msgid "Name"
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr "नाम"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr "नेटवर्क"
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr "नेटवर्क"
|
||||
msgid "New Password"
|
||||
msgstr "नया पासवर्ड"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr "कोई परिणाम नहीं मिला"
|
||||
|
||||
@ -993,7 +993,7 @@ msgstr "OpenAI एकीकरण"
|
||||
msgid "Options"
|
||||
msgstr "विकल्प"
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:46
|
||||
#: apps/client/src/pages/auth/layout.tsx:47
|
||||
msgctxt "The user can either login with email/password, or continue with GitHub or Google."
|
||||
msgid "or continue with"
|
||||
msgstr "या जारी रखें"
|
||||
@ -1030,7 +1030,7 @@ msgstr "प्रत्येक बायोडाटा के लिए व
|
||||
msgid "Phone"
|
||||
msgstr "फ़ोन"
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:75
|
||||
#: apps/client/src/pages/auth/layout.tsx:76
|
||||
msgid "Photograph by Patrick Tomasso"
|
||||
msgstr "फ़ोटोग्राफ़ पैट्रिक टोमासो द्वारा"
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr "स्थान"
|
||||
msgid "Powered by"
|
||||
msgstr "द्वारा संचालित"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr "<0>सिंपल आइकॉन</0> द्वारा संचालित"
|
||||
|
||||
@ -1194,7 +1194,7 @@ msgstr "सुविधाओं से भरपूर, कीमत से न
|
||||
msgid "Rounded"
|
||||
msgstr "गोल"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
|
||||
@ -1222,7 +1222,7 @@ msgstr "फ़ॉन्ट उपसमुच्चय खोजें"
|
||||
msgid "Search for a font variant"
|
||||
msgstr "फ़ॉन्ट प्रकार खोजें"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr "एक भाषा के लिए खोज करे"
|
||||
|
||||
@ -1370,10 +1370,10 @@ msgstr "संग्रहित"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
@ -1435,7 +1435,7 @@ msgstr "थीम"
|
||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||
msgstr "ब्राउज़र से कनेक्ट करने में त्रुटि हुई. कृपया सुनिश्चित करें कि 'क्रोम' चल रहा है और पहुंच योग्य है।"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:127
|
||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||
msgstr "फ़्लोटिंग टूलबार में पूर्ववत करें बटन पर क्लिक करके इस क्रिया को पूर्ववत किया जा सकता है।"
|
||||
|
||||
@ -1531,7 +1531,7 @@ msgstr "बायोडाटा को अनलॉक करने से आ
|
||||
msgid "Unverified"
|
||||
msgstr "असत्यापित"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||
msgid "Update an existing item"
|
||||
msgstr "किसी मौजूदा आइटम का नक़ल बनाएं"
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr "उपयोगकर्ता के पास कोई संबद्ध 'रहस्य' रिकॉर्ड नहीं है. कृपया इस समस्या की रिपोर्ट GitHub पर करें।"
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr "उपयोगकर्ता नाम"
|
||||
@ -1613,11 +1613,11 @@ msgstr "हम आपके ईमेल पते को केवल यह
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
@ -1629,10 +1629,10 @@ msgstr "वेबसाइट"
|
||||
msgid "What's new in the latest version"
|
||||
msgstr "नवीनतम संस्करण में नया क्या है"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:112
|
||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||
msgstr "आप एकाधिक कीवर्ड को अल्पविराम से अलग करके या एंटर दबाकर जोड़ सकते हैं।"
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: hu\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-01-05 00:08\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Hungarian\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -150,7 +150,7 @@ msgstr "A link birtokában bárki megtekintheti és letöltheti az önéletrajzo
|
||||
msgid "API Key"
|
||||
msgstr "API Kulcs"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:125
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr "Biztosan törölni szeretnéd ezt az elemet?"
|
||||
|
||||
@ -235,7 +235,7 @@ msgstr "Készült"
|
||||
msgid "By the community, for the community."
|
||||
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:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
|
||||
@ -318,7 +318,7 @@ msgstr ""
|
||||
msgid "Copy to Clipboard"
|
||||
msgstr "Másolás a vágólapra"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||
msgid "Create"
|
||||
msgstr "Létrehozás"
|
||||
@ -328,7 +328,7 @@ msgstr "Létrehozás"
|
||||
msgid "Create a new account"
|
||||
msgstr "Új fiók létrehozása"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
||||
msgid "Create a new item"
|
||||
msgstr "Új elem létrehozása"
|
||||
|
||||
@ -377,15 +377,15 @@ msgstr ""
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:85
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||
msgid "Date or Date Range"
|
||||
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:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:157
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:134
|
||||
@ -398,11 +398,11 @@ msgstr ""
|
||||
msgid "Delete Account"
|
||||
msgstr "Fiók törlése"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:71
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
||||
msgid "Description"
|
||||
msgstr "Leírás"
|
||||
|
||||
@ -462,7 +462,7 @@ msgstr "PDF letöltése"
|
||||
msgid "Downloads"
|
||||
msgstr "Letöltések"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:170
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:245
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:102
|
||||
@ -470,7 +470,7 @@ msgstr "Letöltések"
|
||||
msgid "Duplicate"
|
||||
msgstr "Duplikálás"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
msgid "Duplicate an existing item"
|
||||
msgstr "Meglévő elem duplikálása"
|
||||
|
||||
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:90
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
|
||||
msgid "Hidden"
|
||||
msgstr ""
|
||||
@ -686,7 +686,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>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -788,10 +788,10 @@ msgstr ""
|
||||
msgid "JSON"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
@ -823,7 +823,7 @@ msgid "Letter"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
||||
msgid "Level"
|
||||
msgstr ""
|
||||
|
||||
@ -852,7 +852,7 @@ msgstr ""
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83
|
||||
@ -900,7 +900,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||
msgid "March 2023 - Present"
|
||||
msgstr ""
|
||||
@ -914,13 +914,13 @@ msgid "MIT License"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:106
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:57
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:43
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||
msgid "Name"
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -993,7 +993,7 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:46
|
||||
#: apps/client/src/pages/auth/layout.tsx:47
|
||||
msgctxt "The user can either login with email/password, or continue with GitHub or Google."
|
||||
msgid "or continue with"
|
||||
msgstr ""
|
||||
@ -1030,7 +1030,7 @@ msgstr ""
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:75
|
||||
#: apps/client/src/pages/auth/layout.tsx:76
|
||||
msgid "Photograph by Patrick Tomasso"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1194,7 +1194,7 @@ msgstr ""
|
||||
msgid "Rounded"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1370,10 +1370,10 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
@ -1435,7 +1435,7 @@ msgstr ""
|
||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:127
|
||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||
msgstr ""
|
||||
|
||||
@ -1531,7 +1531,7 @@ msgstr ""
|
||||
msgid "Unverified"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||
msgid "Update an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1613,11 +1613,11 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
@ -1629,10 +1629,10 @@ msgstr ""
|
||||
msgid "What's new in the latest version"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:112
|
||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: id\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-11-26 14:53\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Indonesian\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
@ -20,172 +20,172 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:169
|
||||
msgid "You have enabled two-factor authentication successfully."
|
||||
msgstr ""
|
||||
msgstr "Anda telah berhasil mengaktifkan autentikasi dua faktor."
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:57
|
||||
msgid "{templatesCount} resume templates to choose from"
|
||||
msgstr ""
|
||||
msgstr "{templatesCount} templat resume yang dapat dipilih"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:114
|
||||
msgid "{value, plural, one {Column} other {Columns}}"
|
||||
msgstr ""
|
||||
msgstr "{value, plural, other {Kolom}}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20
|
||||
msgid "<0>I built Reactive Resume mostly by myself during my spare time, with a lot of help from other great open-source contributors.</0><1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give.</1>"
|
||||
msgstr ""
|
||||
msgstr "<0>Saya membuat Reactive Resume sendiri seringnya di waktu senggang, dengan banyak bantuan dari kontributor open source hebat lainnya.</0> <1>Jika Anda menyukai aplikasi ini dan ingin mendukung agar aplikasi ini tetap gratis selamanya, silakan sumbangkan berapa pun yang Anda mampu berikan.</1>"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51
|
||||
msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.</0><1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it.</1>"
|
||||
msgstr ""
|
||||
msgstr "<0>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:126
|
||||
msgid "<0>Note: </0>By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use</1> and <2>privacy policy</2> outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user."
|
||||
msgstr ""
|
||||
msgstr "<0>Catatan: </0>Dengan menggunakan API OpenAI, Anda mengakui dan menerima <1>persyaratan penggunaan</1> dan <2>kebijakan privasi</2> yang diuraikan oleh OpenAI. Harap diperhatikan bahwa Reactive Resume tidak bertanggung jawab atas penggunaan layanan yang tidak tepat atau tidak sah, dan segala dampak atau kewajiban yang timbul sepenuhnya menjadi tanggung jawab pengguna."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90
|
||||
msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.</0><1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume.</1>"
|
||||
msgstr ""
|
||||
msgstr "<0>Komunitas ini telah menghabiskan banyak waktu untuk menulis dokumentasi untuk Reactive Resume, dan saya yakin ini akan membantu Anda mulai menggunakan aplikasi ini.</0><1>Ada juga banyak contoh untuk membantu Anda memulai, dan fitur-fitur yang mungkin tidak Anda ketahui yang dapat membantu Anda membuat resume yang sempurna.</1>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr ""
|
||||
msgstr "<0>Autentikasi dua faktor saat ini dinonaktifkan.</0> Anda dapat mengaktifkannya dengan menambahkan aplikasi pengautentikasi ke akun Anda."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
msgstr ""
|
||||
msgstr "<0>Autentikasi dua faktor diaktifkan.</0> Anda akan diminta untuk memasukkan kode setiap kali masuk."
|
||||
|
||||
#: apps/client/src/pages/home/page.tsx:24
|
||||
#: apps/client/src/pages/home/sections/hero/index.tsx:42
|
||||
msgid "A free and open-source resume builder"
|
||||
msgstr ""
|
||||
msgstr "Pembuat resume gratis dan bersumber terbuka"
|
||||
|
||||
#: apps/client/src/pages/home/components/footer.tsx:20
|
||||
#: apps/client/src/pages/home/sections/hero/index.tsx:47
|
||||
msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume."
|
||||
msgstr ""
|
||||
msgstr "Pembuat resume gratis dan bersumber terbuka yang menyederhanakan proses pembuatan, pembaruan, dan berbagi resume Anda."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29
|
||||
msgid "A link has been copied to your clipboard."
|
||||
msgstr ""
|
||||
msgstr "Tautan telah disalin ke papan klip Anda."
|
||||
|
||||
#: apps/client/src/components/copyright.tsx:29
|
||||
msgid "A passion project by <0>Amruth Pillai</0>"
|
||||
msgstr ""
|
||||
msgstr "Sebuah proyek penuh semangat dari <0>Amruth Pillai</0>"
|
||||
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:57
|
||||
msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided."
|
||||
msgstr ""
|
||||
msgstr "Tautan pengaturan ulang kata sandi seharusnya sudah dikirim ke kotak masuk Anda, jika ada akun dengan email yang Anda berikan."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:31
|
||||
msgid "A resume with this slug already exists, please pick a different unique identifier."
|
||||
msgstr ""
|
||||
msgstr "Resume dengan slug ini sudah ada, silakan pilih pengenal unik yang berbeda."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:9
|
||||
msgid "A user with this email address and/or username already exists."
|
||||
msgstr ""
|
||||
msgstr "Pengguna dengan alamat email dan/atau nama pengguna ini sudah ada."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43
|
||||
msgid "A4"
|
||||
msgstr ""
|
||||
msgstr "A4"
|
||||
|
||||
#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json.
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:270
|
||||
msgid "Accepts only {accept} files"
|
||||
msgstr ""
|
||||
msgstr "Hanya menerima file {accept}"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
msgstr "Akun"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:124
|
||||
msgid "Add a custom field"
|
||||
msgstr ""
|
||||
msgstr "Tambahkan kolom kustom"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr ""
|
||||
msgstr "Tambah item baru"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:68
|
||||
msgid "Add a new item"
|
||||
msgstr ""
|
||||
msgstr "Tambah item baru"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:196
|
||||
msgid "Add a new section"
|
||||
msgstr ""
|
||||
msgstr "Tambahkan bagian baru"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:269
|
||||
msgid "Add New Page"
|
||||
msgstr ""
|
||||
msgstr "Tambah halaman baru"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:79
|
||||
msgid "AI"
|
||||
msgstr ""
|
||||
msgstr "Kecerdasan buatan"
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:74
|
||||
msgid "Already have an account?"
|
||||
msgstr ""
|
||||
msgstr "Sudah memiliki akun?"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:144
|
||||
msgid "An error occurred while validating the file."
|
||||
msgstr ""
|
||||
msgstr "Terjadi kesalahan saat memvalidasi file."
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:135
|
||||
msgid "and many more..."
|
||||
msgstr ""
|
||||
msgstr "dan masih banyak lagi..."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57
|
||||
msgid "Anyone with the link can view and download the resume."
|
||||
msgstr ""
|
||||
msgstr "Siapa pun yang memiliki tautan dapat melihat dan mengunduh resume."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30
|
||||
msgid "Anyone with this link can view and download the resume. Share it on your profile or with recruiters."
|
||||
msgstr ""
|
||||
msgstr "Siapa pun yang memiliki tautan ini dapat melihat dan mengunduh resume. Bagikan di profil Anda atau dengan perekrut."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
msgstr "API Key"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:125
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr ""
|
||||
msgstr "Apakah Anda yakin Anda ingin menghapus item ini?"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:148
|
||||
msgid "Are you sure you want to delete your resume?"
|
||||
msgstr ""
|
||||
msgstr "Apakah Anda yakin ingin menghapus resume Anda?"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:123
|
||||
msgid "Are you sure you want to disable two-factor authentication?"
|
||||
msgstr ""
|
||||
msgstr "Apakah Anda yakin ingin menonaktifkan autentikasi dua faktor?"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38
|
||||
msgid "Are you sure you want to lock this resume?"
|
||||
msgstr ""
|
||||
msgstr "Apakah Anda yakin ingin mengunci resume ini?"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39
|
||||
msgid "Are you sure you want to unlock this resume?"
|
||||
msgstr ""
|
||||
msgstr "Apakah Anda yakin ingin membuka resume ini?"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94
|
||||
msgid "Are you sure?"
|
||||
msgstr ""
|
||||
msgstr "Apakah Anda yakin?"
|
||||
|
||||
#. For example, Computer Science or Business Administration
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73
|
||||
msgid "Area of Study"
|
||||
msgstr ""
|
||||
msgstr "Area belajar"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:86
|
||||
msgid "Aspect Ratio"
|
||||
msgstr ""
|
||||
msgstr "Rasio Aspek"
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:51
|
||||
msgid "Available in {languagesCount} languages"
|
||||
msgstr ""
|
||||
msgstr "Tersedia dalam {languagesCount} bahasa"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53
|
||||
msgid "Awarder"
|
||||
@ -195,19 +195,19 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:94
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:236
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
msgstr "Kembali"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73
|
||||
msgid "Background Color"
|
||||
msgstr ""
|
||||
msgstr "Warna Latar Belakang"
|
||||
|
||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:75
|
||||
msgid "Backup Code"
|
||||
msgstr ""
|
||||
msgstr "Kode Cadangan"
|
||||
|
||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:80
|
||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||
msgstr ""
|
||||
msgstr "Kode Cadangan hanya boleh berisi huruf kecil atau angka, dan harus tepat 10 karakter."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:56
|
||||
msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc."
|
||||
@ -235,12 +235,12 @@ msgstr ""
|
||||
msgid "By the community, for the community."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
msgstr "Batalkan"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
@ -318,7 +318,7 @@ msgstr ""
|
||||
msgid "Copy to Clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
@ -328,7 +328,7 @@ msgstr ""
|
||||
msgid "Create a new account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
||||
msgid "Create a new item"
|
||||
msgstr ""
|
||||
|
||||
@ -377,15 +377,15 @@ msgstr ""
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:85
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||
msgid "Date or Date Range"
|
||||
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:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:157
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:134
|
||||
@ -398,11 +398,11 @@ msgstr ""
|
||||
msgid "Delete Account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:71
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
@ -462,7 +462,7 @@ msgstr ""
|
||||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:170
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:245
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:102
|
||||
@ -470,7 +470,7 @@ msgstr ""
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
msgid "Duplicate an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -655,38 +655,38 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:90
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
|
||||
msgid "Hidden"
|
||||
msgstr ""
|
||||
msgstr "Tersembunyi"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:78
|
||||
msgid "Hide"
|
||||
msgstr ""
|
||||
msgstr "Sembunyikan"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179
|
||||
msgid "Hide Icons"
|
||||
msgstr ""
|
||||
msgstr "Sembunyikan Ikon"
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:104
|
||||
#: apps/client/src/pages/auth/register/page.tsx:174
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:88
|
||||
msgid "Hold <0>Ctrl</0> to display your password temporarily."
|
||||
msgstr ""
|
||||
msgstr "Tahan <0>Ctrl</0> untuk menampilkan kata sandi Anda sementara."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:100
|
||||
msgid "Horizontal"
|
||||
msgstr ""
|
||||
msgstr "Horisontal"
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:67
|
||||
msgid "Host your resume publicly"
|
||||
msgstr ""
|
||||
msgstr "Tampilkan resume Anda secara publik"
|
||||
|
||||
#: apps/client/src/pages/home/sections/testimonials/index.tsx:70
|
||||
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 "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:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -788,10 +788,10 @@ msgstr ""
|
||||
msgid "JSON"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
@ -823,7 +823,7 @@ msgid "Letter"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
||||
msgid "Level"
|
||||
msgstr ""
|
||||
|
||||
@ -852,7 +852,7 @@ msgstr ""
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83
|
||||
@ -900,7 +900,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||
msgid "March 2023 - Present"
|
||||
msgstr ""
|
||||
@ -914,13 +914,13 @@ msgid "MIT License"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:106
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:57
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:43
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||
msgid "Name"
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -993,7 +993,7 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:46
|
||||
#: apps/client/src/pages/auth/layout.tsx:47
|
||||
msgctxt "The user can either login with email/password, or continue with GitHub or Google."
|
||||
msgid "or continue with"
|
||||
msgstr ""
|
||||
@ -1030,7 +1030,7 @@ msgstr ""
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:75
|
||||
#: apps/client/src/pages/auth/layout.tsx:76
|
||||
msgid "Photograph by Patrick Tomasso"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1194,7 +1194,7 @@ msgstr ""
|
||||
msgid "Rounded"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1370,10 +1370,10 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
@ -1435,7 +1435,7 @@ msgstr ""
|
||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:127
|
||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||
msgstr ""
|
||||
|
||||
@ -1531,7 +1531,7 @@ msgstr ""
|
||||
msgid "Unverified"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||
msgid "Update an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1613,11 +1613,11 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
@ -1629,10 +1629,10 @@ msgstr ""
|
||||
msgid "What's new in the latest version"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:112
|
||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: it\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-12-17 00:08\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Italian\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -150,7 +150,7 @@ msgstr "Chiunque abbia questo link può visualizzare e scaricare il curriculum.
|
||||
msgid "API Key"
|
||||
msgstr "Chiave API"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:125
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr "Sei sicuro di voler eliminare questo articolo?"
|
||||
|
||||
@ -235,7 +235,7 @@ msgstr "Costruito con"
|
||||
msgid "By the community, for the community."
|
||||
msgstr "Dalla comunità, per la comunità."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
|
||||
@ -318,7 +318,7 @@ msgstr "Copia collegamento per riprendere"
|
||||
msgid "Copy to Clipboard"
|
||||
msgstr "Copia negli appunti"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||
msgid "Create"
|
||||
msgstr "Crea"
|
||||
@ -328,7 +328,7 @@ msgstr "Crea"
|
||||
msgid "Create a new account"
|
||||
msgstr "Crea un nuovo account"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
||||
msgid "Create a new item"
|
||||
msgstr "Crea un nuovo elemento"
|
||||
|
||||
@ -377,15 +377,15 @@ msgstr "Scuro"
|
||||
msgid "Date"
|
||||
msgstr "Data"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:85
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||
msgid "Date or Date Range"
|
||||
msgstr "Data o Intervallo di date"
|
||||
|
||||
#: 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:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:157
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:134
|
||||
@ -398,11 +398,11 @@ msgstr "Elimina"
|
||||
msgid "Delete Account"
|
||||
msgstr "Elimina account"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:71
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
||||
msgid "Description"
|
||||
msgstr "Descrizione"
|
||||
|
||||
@ -462,7 +462,7 @@ msgstr "Scarica PDF"
|
||||
msgid "Downloads"
|
||||
msgstr "Downloads"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:170
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:245
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:102
|
||||
@ -470,7 +470,7 @@ msgstr "Downloads"
|
||||
msgid "Duplicate"
|
||||
msgstr "Duplica"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
msgid "Duplicate an existing item"
|
||||
msgstr "Duplica un elemento esistente"
|
||||
|
||||
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr "Qui può aggiornare il suo profilo per personalizzare la sua esperienza."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:90
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
|
||||
msgid "Hidden"
|
||||
msgstr "Nascosto"
|
||||
@ -686,7 +686,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>."
|
||||
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:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr "Icona"
|
||||
|
||||
@ -788,10 +788,10 @@ msgstr "mario.rossi@esempio.it"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
|
||||
msgid "Keywords"
|
||||
msgstr "Parole chiave"
|
||||
|
||||
@ -823,7 +823,7 @@ msgid "Letter"
|
||||
msgstr "Lettera"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
||||
msgid "Level"
|
||||
msgstr "Livello"
|
||||
|
||||
@ -852,7 +852,7 @@ msgstr "LinkedIn, curriculum JSON, ecc."
|
||||
msgid "List"
|
||||
msgstr "Lista"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83
|
||||
@ -900,7 +900,7 @@ msgstr "Marzo 2023"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "Marzo 2023 - Presente"
|
||||
@ -914,13 +914,13 @@ msgid "MIT License"
|
||||
msgstr "Licenza MIT"
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:106
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:57
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:43
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||
msgid "Name"
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr "Rete"
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr "Rete"
|
||||
msgid "New Password"
|
||||
msgstr "Nuova Password"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr "Nessun risultato trovato"
|
||||
|
||||
@ -993,7 +993,7 @@ msgstr "Integrazione OpenAI"
|
||||
msgid "Options"
|
||||
msgstr "Opzioni"
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:46
|
||||
#: apps/client/src/pages/auth/layout.tsx:47
|
||||
msgctxt "The user can either login with email/password, or continue with GitHub or Google."
|
||||
msgid "or continue with"
|
||||
msgstr "o continua con"
|
||||
@ -1030,7 +1030,7 @@ msgstr "Note personali per ogni curriculum"
|
||||
msgid "Phone"
|
||||
msgstr "Telefono"
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:75
|
||||
#: apps/client/src/pages/auth/layout.tsx:76
|
||||
msgid "Photograph by Patrick Tomasso"
|
||||
msgstr "Fotografia di Patrick Tomasso"
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr "Posizione"
|
||||
msgid "Powered by"
|
||||
msgstr "Offerto da"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr "Offerto da <0>Icone semplici</0>"
|
||||
|
||||
@ -1194,7 +1194,7 @@ msgstr "Ricco di funzionalità, non di prezzi."
|
||||
msgid "Rounded"
|
||||
msgstr "Arrotondato"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
|
||||
@ -1222,7 +1222,7 @@ msgstr "Cerca un sottoinsieme di caratteri"
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Cerca una variante del carattere"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr "Cerca una lingua"
|
||||
|
||||
@ -1370,10 +1370,10 @@ msgstr "Memorizzato"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
@ -1435,7 +1435,7 @@ msgstr "Tema"
|
||||
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."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:127
|
||||
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."
|
||||
|
||||
@ -1531,7 +1531,7 @@ msgstr "Sbloccando un curriculum potrà modificarlo nuovamente."
|
||||
msgid "Unverified"
|
||||
msgstr "Non verificato"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||
msgid "Update an existing item"
|
||||
msgstr "Aggiorna un elemento esistente"
|
||||
|
||||
@ -1561,7 +1561,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."
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr "Nome utente"
|
||||
@ -1613,11 +1613,11 @@ msgstr "Verifichiamo il suo indirizzo e-mail solo per assicurarci di poterle inv
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
@ -1629,10 +1629,10 @@ msgstr "Sito Web"
|
||||
msgid "What's new in the latest version"
|
||||
msgstr "Cosa c'è di nuovo nell'ultima versione"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:112
|
||||
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."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ja\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-01-04 00:08\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Japanese\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
@ -150,7 +150,7 @@ msgstr "このリンクを知っている人は誰でも履歴書を表示して
|
||||
msgid "API Key"
|
||||
msgstr "API キー"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:125
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr "このアイテムを削除してもよろしいですか?"
|
||||
|
||||
@ -233,9 +233,9 @@ msgstr "利用したソフトウェア"
|
||||
#: apps/client/src/components/copyright.tsx:27
|
||||
#: apps/client/src/pages/home/sections/contributors/index.tsx:20
|
||||
msgid "By the community, for the community."
|
||||
msgstr ""
|
||||
msgstr "コミュニティによるコミュニティのための。"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
|
||||
@ -254,7 +254,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
msgid "Change Password"
|
||||
msgstr ""
|
||||
msgstr "パスワードを変更"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
msgid "Change Tone"
|
||||
@ -274,11 +274,11 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:242
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
msgstr "終了"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
msgstr "コード"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:50
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
@ -308,7 +308,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
||||
msgid "Copy"
|
||||
msgstr ""
|
||||
msgstr "コピー"
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:132
|
||||
msgid "Copy Link to Resume"
|
||||
@ -318,7 +318,7 @@ msgstr ""
|
||||
msgid "Copy to Clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
@ -328,7 +328,7 @@ msgstr ""
|
||||
msgid "Create a new account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
||||
msgid "Create a new item"
|
||||
msgstr ""
|
||||
|
||||
@ -377,32 +377,32 @@ msgstr ""
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:85
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||
msgid "Date or Date Range"
|
||||
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:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:157
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:198
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
msgstr "削除する"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94
|
||||
msgid "Delete Account"
|
||||
msgstr ""
|
||||
msgstr "アカウントを削除する"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:71
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
@ -462,7 +462,7 @@ msgstr ""
|
||||
msgid "Downloads"
|
||||
msgstr "ダウンロード"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:170
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:245
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:102
|
||||
@ -470,7 +470,7 @@ msgstr "ダウンロード"
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
msgid "Duplicate an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -492,7 +492,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
msgstr "Eメール"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159
|
||||
msgid "Enable 2FA"
|
||||
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:90
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
|
||||
msgid "Hidden"
|
||||
msgstr ""
|
||||
@ -686,7 +686,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>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr "アイコン"
|
||||
|
||||
@ -788,10 +788,10 @@ msgstr ""
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
@ -823,7 +823,7 @@ msgid "Letter"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
||||
msgid "Level"
|
||||
msgstr "レベル"
|
||||
|
||||
@ -852,7 +852,7 @@ msgstr ""
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83
|
||||
@ -900,7 +900,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||
msgid "March 2023 - Present"
|
||||
msgstr ""
|
||||
@ -914,13 +914,13 @@ msgid "MIT License"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:106
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:57
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:43
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||
msgid "Name"
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -993,7 +993,7 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:46
|
||||
#: apps/client/src/pages/auth/layout.tsx:47
|
||||
msgctxt "The user can either login with email/password, or continue with GitHub or Google."
|
||||
msgid "or continue with"
|
||||
msgstr ""
|
||||
@ -1030,7 +1030,7 @@ msgstr ""
|
||||
msgid "Phone"
|
||||
msgstr "電話番号"
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:75
|
||||
#: apps/client/src/pages/auth/layout.tsx:76
|
||||
msgid "Photograph by Patrick Tomasso"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1194,7 +1194,7 @@ msgstr ""
|
||||
msgid "Rounded"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1370,10 +1370,10 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
@ -1435,7 +1435,7 @@ msgstr "テーマ"
|
||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:127
|
||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||
msgstr ""
|
||||
|
||||
@ -1531,7 +1531,7 @@ msgstr ""
|
||||
msgid "Unverified"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||
msgid "Update an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1613,11 +1613,11 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
@ -1629,10 +1629,10 @@ msgstr "Webサイト"
|
||||
msgid "What's new in the latest version"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:112
|
||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: km\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-11-26 14:53\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Khmer\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
@ -150,7 +150,7 @@ msgstr ""
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:125
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr ""
|
||||
|
||||
@ -235,7 +235,7 @@ msgstr ""
|
||||
msgid "By the community, for the community."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
|
||||
@ -318,7 +318,7 @@ msgstr ""
|
||||
msgid "Copy to Clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
@ -328,7 +328,7 @@ msgstr ""
|
||||
msgid "Create a new account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
||||
msgid "Create a new item"
|
||||
msgstr ""
|
||||
|
||||
@ -377,15 +377,15 @@ msgstr ""
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:85
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||
msgid "Date or Date Range"
|
||||
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:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:157
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:134
|
||||
@ -398,11 +398,11 @@ msgstr ""
|
||||
msgid "Delete Account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:71
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
@ -462,7 +462,7 @@ msgstr ""
|
||||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:170
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:245
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:102
|
||||
@ -470,7 +470,7 @@ msgstr ""
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
msgid "Duplicate an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:90
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
|
||||
msgid "Hidden"
|
||||
msgstr ""
|
||||
@ -686,7 +686,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>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -788,10 +788,10 @@ msgstr ""
|
||||
msgid "JSON"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
@ -823,7 +823,7 @@ msgid "Letter"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
||||
msgid "Level"
|
||||
msgstr ""
|
||||
|
||||
@ -852,7 +852,7 @@ msgstr ""
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83
|
||||
@ -900,7 +900,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||
msgid "March 2023 - Present"
|
||||
msgstr ""
|
||||
@ -914,13 +914,13 @@ msgid "MIT License"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:106
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:57
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:43
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||
msgid "Name"
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -993,7 +993,7 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:46
|
||||
#: apps/client/src/pages/auth/layout.tsx:47
|
||||
msgctxt "The user can either login with email/password, or continue with GitHub or Google."
|
||||
msgid "or continue with"
|
||||
msgstr ""
|
||||
@ -1030,7 +1030,7 @@ msgstr ""
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:75
|
||||
#: apps/client/src/pages/auth/layout.tsx:76
|
||||
msgid "Photograph by Patrick Tomasso"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1194,7 +1194,7 @@ msgstr ""
|
||||
msgid "Rounded"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1370,10 +1370,10 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
@ -1435,7 +1435,7 @@ msgstr ""
|
||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:127
|
||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||
msgstr ""
|
||||
|
||||
@ -1531,7 +1531,7 @@ msgstr ""
|
||||
msgid "Unverified"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||
msgid "Update an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1613,11 +1613,11 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
@ -1629,10 +1629,10 @@ msgstr ""
|
||||
msgid "What's new in the latest version"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:112
|
||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: kn\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-11-26 14:53\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Kannada\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -150,7 +150,7 @@ msgstr "ಈ ಲಿಂಕ್ ಹೊಂದಿರುವ ಯಾರಾದರೂ ರ
|
||||
msgid "API Key"
|
||||
msgstr "API ಕೀಲಿ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:125
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr "ಈ ಐಟಂ ಅನ್ನು ಅಳಿಸಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?"
|
||||
|
||||
@ -235,7 +235,7 @@ msgstr "ಇದರೊಂದಿಗೆ ನಿರ್ಮಿಸಲಾಗಿದೆ"
|
||||
msgid "By the community, for the community."
|
||||
msgstr "ಸಮುದಾಯದಿಂದ, ಸಮುದಾಯಕ್ಕಾಗಿ."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
|
||||
@ -318,7 +318,7 @@ msgstr "ರೆಸ್ಯೂಮ್ ಲಿಂಕ್ ಅನ್ನು ನಕಲಿ
|
||||
msgid "Copy to Clipboard"
|
||||
msgstr "ಕ್ಲಿಪ್ಬೋರ್ಡ್ಗೆ ನಕಲಿಸಿ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||
msgid "Create"
|
||||
msgstr "ರಚಿಸಿ"
|
||||
@ -328,7 +328,7 @@ msgstr "ರಚಿಸಿ"
|
||||
msgid "Create a new account"
|
||||
msgstr "ಹೊಸ ಖಾತೆಯನ್ನು ರಚಿಸಿ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
||||
msgid "Create a new item"
|
||||
msgstr "ಹೊಸ ಐಟಂ ರಚಿಸಿ"
|
||||
|
||||
@ -377,15 +377,15 @@ msgstr "ಕತ್ತಲು"
|
||||
msgid "Date"
|
||||
msgstr "ದಿನಾಂಕ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:85
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||
msgid "Date or Date Range"
|
||||
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:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:157
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:134
|
||||
@ -398,11 +398,11 @@ msgstr "ಅಳಿಸಿ"
|
||||
msgid "Delete Account"
|
||||
msgstr "ಖಾತೆಯನ್ನು ಅಳಿಸಿ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:71
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
||||
msgid "Description"
|
||||
msgstr "ವಿವರಣೆ"
|
||||
|
||||
@ -462,7 +462,7 @@ msgstr ""
|
||||
msgid "Downloads"
|
||||
msgstr "ಡೌನ್ಲೋಡ್ಗಳು"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:170
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:245
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:102
|
||||
@ -470,7 +470,7 @@ msgstr "ಡೌನ್ಲೋಡ್ಗಳು"
|
||||
msgid "Duplicate"
|
||||
msgstr "ನಕಲು"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
msgid "Duplicate an existing item"
|
||||
msgstr "ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ಐಟಂ ಅನ್ನು ನಕಲು ಮಾಡಿ"
|
||||
|
||||
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr "ಇಲ್ಲಿ, ನಿಮ್ಮ ಅನುಭವವನ್ನು ಕಸ್ಟಮೈಸ್ ಮಾಡಲು ಮತ್ತು ವೈಯಕ್ತೀಕರಿಸಲು ನಿಮ್ಮ ಪ್ರೊಫೈಲ್ ಅನ್ನು ನೀವು ನವೀಕರಿಸಬಹುದು."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:90
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
|
||||
msgid "Hidden"
|
||||
msgstr "ಮರೆಮಾಡಲಾಗಿದೆ"
|
||||
@ -686,7 +686,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>."
|
||||
msgstr "ಪ್ರತಿಕ್ರಿಯೆ ಅಥವಾ ಬೆಂಬಲದೊಂದಿಗೆ ರಿಯಾಕ್ಟಿವ್ ರೆಸ್ಯೂಮೇನ ಬಳಕೆದಾರರಿಂದ ಕೇಳಲು ನಾನು ಯಾವಾಗಲೂ ಇಷ್ಟಪಡುತ್ತೇನೆ. ನಾನು ಸ್ವೀಕರಿಸಿದ ಕೆಲವು ಸಂದೇಶಗಳು ಇಲ್ಲಿವೆ. ನೀವು ಯಾವುದೇ ಪ್ರತಿಕ್ರಿಯೆಯನ್ನು ಹೊಂದಿದ್ದರೆ, <0>{email} ನಲ್ಲಿ ನನಗೆ ಇಮೇಲ್ ಅನ್ನು ಡ್ರಾಪ್ ಮಾಡಲು ಹಿಂಜರಿಯಬೇಡಿ</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr "ಐಕಾನ್"
|
||||
|
||||
@ -788,10 +788,10 @@ msgstr "john.doe@example.com"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
|
||||
msgid "Keywords"
|
||||
msgstr "ಕೀವರ್ಡ್ಗಳು"
|
||||
|
||||
@ -823,7 +823,7 @@ msgid "Letter"
|
||||
msgstr "ಪತ್ರಗಳು"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
||||
msgid "Level"
|
||||
msgstr "ಮಟ್ಟ"
|
||||
|
||||
@ -852,7 +852,7 @@ msgstr "ಲಿಂಕ್ಡ್ಇನ್, JSON ರೆಸ್ಯೂಮ್, ಇತ
|
||||
msgid "List"
|
||||
msgstr "ಪಟ್ಟಿ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83
|
||||
@ -900,7 +900,7 @@ msgstr "ಮಾರ್ಚ್ 2023"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "ಮಾರ್ಚ್ 2023 - ಪ್ರಸ್ತುತ"
|
||||
@ -914,13 +914,13 @@ msgid "MIT License"
|
||||
msgstr "MIT ಪರವಾನಗಿ"
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:106
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:57
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:43
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||
msgid "Name"
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr "ಹೆಸರು"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr "ನೆಟ್ವರ್ಕ್"
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr "ನೆಟ್ವರ್ಕ್"
|
||||
msgid "New Password"
|
||||
msgstr "ಹೊಸ ಪಾಸ್ವರ್ಡ್"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr "ಯಾವುದೇ ಫಲಿತಾಂಶಗಳು ಕಂಡುಬರಲಿಲ್ಲ"
|
||||
|
||||
@ -993,7 +993,7 @@ msgstr "OpenAI ಏಕೀಕರಣ"
|
||||
msgid "Options"
|
||||
msgstr "ಆಯ್ಕೆಗಳು"
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:46
|
||||
#: apps/client/src/pages/auth/layout.tsx:47
|
||||
msgctxt "The user can either login with email/password, or continue with GitHub or Google."
|
||||
msgid "or continue with"
|
||||
msgstr "ಅಥವಾ ಮುಂದುವರಿಸಿ"
|
||||
@ -1030,7 +1030,7 @@ msgstr "ಪ್ರತಿ ರೆಸ್ಯೂಮ್ ವೈಯಕ್ತಿಕ ಟಿ
|
||||
msgid "Phone"
|
||||
msgstr "ದೂರವಾಣಿ"
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:75
|
||||
#: apps/client/src/pages/auth/layout.tsx:76
|
||||
msgid "Photograph by Patrick Tomasso"
|
||||
msgstr "ಪ್ಯಾಟ್ರಿಕ್ ಟೊಮಾಸೊ ಅವರ ಛಾಯಾಚಿತ್ರ"
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr "ಸ್ಥಾನ"
|
||||
msgid "Powered by"
|
||||
msgstr "ಇವರಿಂದ ನಡೆಸಲ್ಪಡುತ್ತಿದೆ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr "<0>ಸರಳ ಐಕಾನ್ಗಳಿಂದ</0> ನಡೆಸಲ್ಪಡುತ್ತಿದೆ"
|
||||
|
||||
@ -1194,7 +1194,7 @@ msgstr "ವೈಶಿಷ್ಟ್ಯಗಳಲ್ಲಿ ಸಮೃದ್ಧವಾ
|
||||
msgid "Rounded"
|
||||
msgstr "ದುಂಡಾದ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
|
||||
@ -1222,7 +1222,7 @@ msgstr "ಫಾಂಟ್ ಉಪವಿಭಾಗಕ್ಕಾಗಿ ಹುಡುಕ
|
||||
msgid "Search for a font variant"
|
||||
msgstr "ಫಾಂಟ್ ಉಪವಿಭಾಗಕ್ಕಾಗಿ ಹುಡುಕಿ"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr "ಭಾಷೆಗಾಗಿ ಹುಡುಕಿ"
|
||||
|
||||
@ -1370,10 +1370,10 @@ msgstr "ಸಂಗ್ರಹಿಸಲಾಗಿದೆ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
@ -1435,7 +1435,7 @@ msgstr "ಥೀಮ್"
|
||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||
msgstr "ಬ್ರೌಸರ್ಗೆ ಸಂಪರ್ಕಿಸುವಲ್ಲಿ ದೋಷ ಕಂಡುಬಂದಿದೆ. ದಯವಿಟ್ಟು 'ಕ್ರೋಮ್' ಚಾಲನೆಯಲ್ಲಿದೆ ಮತ್ತು ತಲುಪಬಹುದೆಂದು ಖಚಿತಪಡಿಸಿಕೊಳ್ಳಿ."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:127
|
||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||
msgstr "ಫ್ಲೋಟಿಂಗ್ ಟೂಲ್ಬಾರ್ನಲ್ಲಿರುವ ರದ್ದುಗೊಳಿಸು ಬಟನ್ ಅನ್ನು ಕ್ಲಿಕ್ ಮಾಡುವ ಮೂಲಕ ಈ ಕ್ರಿಯೆಯನ್ನು ಹಿಂತಿರುಗಿಸಬಹುದು."
|
||||
|
||||
@ -1531,7 +1531,7 @@ msgstr "ರೆಸ್ಯೂಮ್ ಅನ್ನು ಅನ್ಲಾಕ್ ಮಾ
|
||||
msgid "Unverified"
|
||||
msgstr "ಪರಿಶೀಲಿಸಲಾಗಿಲ್ಲ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||
msgid "Update an existing item"
|
||||
msgstr "ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ಐಟಂ ಅನ್ನು ನವೀಕರಿಸಿ"
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr "ಬಳಕೆದಾರರು ಸಂಬಂಧಿತ 'ರಹಸ್ಯ' ದಾಖಲೆಯನ್ನು ಹೊಂದಿಲ್ಲ. ದಯವಿಟ್ಟು ಈ ಸಮಸ್ಯೆಯನ್ನು GitHub ನಲ್ಲಿ ವರದಿ ಮಾಡಿ."
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr "ಬಳಕೆದಾರರ ಹೆಸರು"
|
||||
@ -1613,11 +1613,11 @@ msgstr "ನಿಮ್ಮ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ನೀವ
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
@ -1629,10 +1629,10 @@ msgstr "ಜಾಲತಾಣ"
|
||||
msgid "What's new in the latest version"
|
||||
msgstr "ಇತ್ತೀಚಿನ ಆವೃತ್ತಿಯಲ್ಲಿ ಹೊಸದೇನಿದೆ"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:112
|
||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||
msgstr "ಅಲ್ಪವಿರಾಮದಿಂದ ಬೇರ್ಪಡಿಸುವ ಮೂಲಕ ಅಥವಾ ಎಂಟರ್ ಒತ್ತುವ ಮೂಲಕ ನೀವು ಬಹು ಕೀವರ್ಡ್ಗಳನ್ನು ಸೇರಿಸಬಹುದು."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ko\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-12-29 00:06\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Korean\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
@ -150,7 +150,7 @@ msgstr "이 링크가 있는 사람은 누구나 이력서를 보고 다운로
|
||||
msgid "API Key"
|
||||
msgstr "API Key"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:125
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr "이 항목을 삭제하시겠습니까?"
|
||||
|
||||
@ -235,7 +235,7 @@ msgstr "Built with"
|
||||
msgid "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:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
|
||||
@ -318,7 +318,7 @@ msgstr ""
|
||||
msgid "Copy to Clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
@ -328,7 +328,7 @@ msgstr ""
|
||||
msgid "Create a new account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
||||
msgid "Create a new item"
|
||||
msgstr ""
|
||||
|
||||
@ -377,15 +377,15 @@ msgstr ""
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:85
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||
msgid "Date or Date Range"
|
||||
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:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:157
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:134
|
||||
@ -398,11 +398,11 @@ msgstr ""
|
||||
msgid "Delete Account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:71
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
@ -462,7 +462,7 @@ msgstr "PDF 다운로드"
|
||||
msgid "Downloads"
|
||||
msgstr "다운로드"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:170
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:245
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:102
|
||||
@ -470,7 +470,7 @@ msgstr "다운로드"
|
||||
msgid "Duplicate"
|
||||
msgstr "복제"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
msgid "Duplicate an existing item"
|
||||
msgstr "기존 항목 복제"
|
||||
|
||||
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:90
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
|
||||
msgid "Hidden"
|
||||
msgstr ""
|
||||
@ -686,7 +686,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>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -788,10 +788,10 @@ msgstr ""
|
||||
msgid "JSON"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
@ -823,7 +823,7 @@ msgid "Letter"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
||||
msgid "Level"
|
||||
msgstr ""
|
||||
|
||||
@ -852,7 +852,7 @@ msgstr ""
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83
|
||||
@ -900,7 +900,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||
msgid "March 2023 - Present"
|
||||
msgstr ""
|
||||
@ -914,13 +914,13 @@ msgid "MIT License"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:106
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:57
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:43
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||
msgid "Name"
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -993,7 +993,7 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:46
|
||||
#: apps/client/src/pages/auth/layout.tsx:47
|
||||
msgctxt "The user can either login with email/password, or continue with GitHub or Google."
|
||||
msgid "or continue with"
|
||||
msgstr ""
|
||||
@ -1030,7 +1030,7 @@ msgstr ""
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:75
|
||||
#: apps/client/src/pages/auth/layout.tsx:76
|
||||
msgid "Photograph by Patrick Tomasso"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1194,7 +1194,7 @@ msgstr ""
|
||||
msgid "Rounded"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1370,10 +1370,10 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
@ -1435,7 +1435,7 @@ msgstr ""
|
||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:127
|
||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||
msgstr ""
|
||||
|
||||
@ -1531,7 +1531,7 @@ msgstr ""
|
||||
msgid "Unverified"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||
msgid "Update an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1613,11 +1613,11 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
@ -1629,10 +1629,10 @@ msgstr ""
|
||||
msgid "What's new in the latest version"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:112
|
||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: lt\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-12-20 00:06\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Lithuanian\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && (n%100>19 || n%100<11) ? 0 : (n%10>=2 && n%10<=9) && (n%100>19 || n%100<11) ? 1 : n%1!=0 ? 2: 3);\n"
|
||||
@ -150,7 +150,7 @@ msgstr "Kiekvienas, pasinaudojęs šia nuoroda, gali peržiūrėti ir atsisiųst
|
||||
msgid "API Key"
|
||||
msgstr "API raktas"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:125
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr "Ar tikrai norite ištrinti šį elementą?"
|
||||
|
||||
@ -235,7 +235,7 @@ msgstr "Pastatytas su"
|
||||
msgid "By the community, for the community."
|
||||
msgstr "Bendruomenės ir bendruomenei."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
|
||||
@ -318,7 +318,7 @@ msgstr "Nukopijuokite nuorodą į gyvenimo aprašymą"
|
||||
msgid "Copy to Clipboard"
|
||||
msgstr "Kopijuoti į iškarpinę"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||
msgid "Create"
|
||||
msgstr "Sukurti"
|
||||
@ -328,7 +328,7 @@ msgstr "Sukurti"
|
||||
msgid "Create a new account"
|
||||
msgstr "Sukurti naują paskyrą"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
||||
msgid "Create a new item"
|
||||
msgstr "Sukurti naują elementą"
|
||||
|
||||
@ -377,15 +377,15 @@ msgstr "Tamsus"
|
||||
msgid "Date"
|
||||
msgstr "Data"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:85
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||
msgid "Date or Date Range"
|
||||
msgstr "Data arba datos intervalas"
|
||||
|
||||
#: 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:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:157
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:134
|
||||
@ -398,11 +398,11 @@ msgstr "Ištrinti"
|
||||
msgid "Delete Account"
|
||||
msgstr "Ištrinti paskyrą"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:71
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
||||
msgid "Description"
|
||||
msgstr "Aprašymas"
|
||||
|
||||
@ -462,7 +462,7 @@ msgstr "Atsisiųsti PDF"
|
||||
msgid "Downloads"
|
||||
msgstr "Atsisiuntimai"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:170
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:245
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:102
|
||||
@ -470,7 +470,7 @@ msgstr "Atsisiuntimai"
|
||||
msgid "Duplicate"
|
||||
msgstr "Dublikatas"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
msgid "Duplicate an existing item"
|
||||
msgstr "Dubliuoti esamą elementą"
|
||||
|
||||
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr "Čia galite atnaujinti savo profilį, kad pritaikytumėte ir suasmenintumėte savo patirtį."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:90
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
|
||||
msgid "Hidden"
|
||||
msgstr "Paslėptas"
|
||||
@ -686,7 +686,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>."
|
||||
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:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr "Ikona"
|
||||
|
||||
@ -788,10 +788,10 @@ msgstr "jonas.jonaitis@pavyzdys.com"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
|
||||
msgid "Keywords"
|
||||
msgstr "Raktiniai žodžiai"
|
||||
|
||||
@ -823,7 +823,7 @@ msgid "Letter"
|
||||
msgstr "Laiškas"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
||||
msgid "Level"
|
||||
msgstr "Lygis"
|
||||
|
||||
@ -852,7 +852,7 @@ msgstr "LinkedIn, JSON CV ir kt."
|
||||
msgid "List"
|
||||
msgstr "Sąrašas"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83
|
||||
@ -900,7 +900,7 @@ msgstr "2023 m. kovo mėn"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "2023 m. kovo mėn. - dabartis"
|
||||
@ -914,13 +914,13 @@ msgid "MIT License"
|
||||
msgstr "MIT licencija"
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:106
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:57
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:43
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||
msgid "Name"
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr "Vardas"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr "Tinklas"
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr "Tinklas"
|
||||
msgid "New Password"
|
||||
msgstr "Naujas slaptažodis"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr "Rezultatų nerasta"
|
||||
|
||||
@ -993,7 +993,7 @@ msgstr "\"OpenAI\" integracija"
|
||||
msgid "Options"
|
||||
msgstr "Parinktys"
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:46
|
||||
#: apps/client/src/pages/auth/layout.tsx:47
|
||||
msgctxt "The user can either login with email/password, or continue with GitHub or Google."
|
||||
msgid "or continue with"
|
||||
msgstr "arba tęsti su"
|
||||
@ -1030,7 +1030,7 @@ msgstr "Asmeninės pastabos prie kiekvieno gyvenimo aprašymo"
|
||||
msgid "Phone"
|
||||
msgstr "Telefonas"
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:75
|
||||
#: apps/client/src/pages/auth/layout.tsx:76
|
||||
msgid "Photograph by Patrick Tomasso"
|
||||
msgstr "Patrick Tomasso nuotrauka"
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr "Pozicija"
|
||||
msgid "Powered by"
|
||||
msgstr "Sukurta naudojant"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr "Sukurta naudojant <0>Simple Icons</0>"
|
||||
|
||||
@ -1194,7 +1194,7 @@ msgstr "Turtingas funkcijomis, bet ne kainomis."
|
||||
msgid "Rounded"
|
||||
msgstr "Suapvalintas"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
|
||||
@ -1222,7 +1222,7 @@ msgstr "Šrifto poaibio paieška"
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Šrifto varianto paieška"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr "Kalbos paieška"
|
||||
|
||||
@ -1370,10 +1370,10 @@ msgstr "Saugoma"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
@ -1435,7 +1435,7 @@ msgstr "Tema"
|
||||
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."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:127
|
||||
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ą."
|
||||
|
||||
@ -1531,7 +1531,7 @@ msgstr "Atrakinę gyvenimo aprašymą galėsite vėl jį keisti."
|
||||
msgid "Unverified"
|
||||
msgstr "Nepatikrintas"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||
msgid "Update an existing item"
|
||||
msgstr "Atnaujinti esamą elementą"
|
||||
|
||||
@ -1561,7 +1561,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."
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr "Vartotojo vardas"
|
||||
@ -1613,11 +1613,11 @@ msgstr "Jūsų el. pašto adresą tikriname tik tam, kad galėtume atsiųsti sla
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
@ -1629,10 +1629,10 @@ msgstr "Tinklalapis"
|
||||
msgid "What's new in the latest version"
|
||||
msgstr "Kas naujo naujausioje versijoje"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:112
|
||||
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."
|
||||
|
||||
|
||||
1691
apps/client/src/locales/lv-LV/messages.po
Normal file
1691
apps/client/src/locales/lv-LV/messages.po
Normal file
File diff suppressed because it is too large
Load Diff
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ml\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-11-26 14:53\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Malayalam\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -150,7 +150,7 @@ msgstr ""
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:125
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr ""
|
||||
|
||||
@ -235,7 +235,7 @@ msgstr ""
|
||||
msgid "By the community, for the community."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
|
||||
@ -318,7 +318,7 @@ msgstr ""
|
||||
msgid "Copy to Clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
@ -328,7 +328,7 @@ msgstr ""
|
||||
msgid "Create a new account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
||||
msgid "Create a new item"
|
||||
msgstr ""
|
||||
|
||||
@ -377,15 +377,15 @@ msgstr ""
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:85
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||
msgid "Date or Date Range"
|
||||
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:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:157
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:134
|
||||
@ -398,11 +398,11 @@ msgstr ""
|
||||
msgid "Delete Account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:71
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
@ -462,7 +462,7 @@ msgstr ""
|
||||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:170
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:245
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:102
|
||||
@ -470,7 +470,7 @@ msgstr ""
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
msgid "Duplicate an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:90
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
|
||||
msgid "Hidden"
|
||||
msgstr ""
|
||||
@ -686,7 +686,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>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -788,10 +788,10 @@ msgstr ""
|
||||
msgid "JSON"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
@ -823,7 +823,7 @@ msgid "Letter"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
||||
msgid "Level"
|
||||
msgstr ""
|
||||
|
||||
@ -852,7 +852,7 @@ msgstr ""
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83
|
||||
@ -900,7 +900,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||
msgid "March 2023 - Present"
|
||||
msgstr ""
|
||||
@ -914,13 +914,13 @@ msgid "MIT License"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:106
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:57
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:43
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||
msgid "Name"
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -993,7 +993,7 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:46
|
||||
#: apps/client/src/pages/auth/layout.tsx:47
|
||||
msgctxt "The user can either login with email/password, or continue with GitHub or Google."
|
||||
msgid "or continue with"
|
||||
msgstr ""
|
||||
@ -1030,7 +1030,7 @@ msgstr ""
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:75
|
||||
#: apps/client/src/pages/auth/layout.tsx:76
|
||||
msgid "Photograph by Patrick Tomasso"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1194,7 +1194,7 @@ msgstr ""
|
||||
msgid "Rounded"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1370,10 +1370,10 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
@ -1435,7 +1435,7 @@ msgstr ""
|
||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:127
|
||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||
msgstr ""
|
||||
|
||||
@ -1531,7 +1531,7 @@ msgstr ""
|
||||
msgid "Unverified"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||
msgid "Update an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1613,11 +1613,11 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
@ -1629,10 +1629,10 @@ msgstr ""
|
||||
msgid "What's new in the latest version"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:112
|
||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: mr\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-01-12 00:08\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Marathi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -150,7 +150,7 @@ msgstr ""
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:125
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr ""
|
||||
|
||||
@ -235,7 +235,7 @@ msgstr "याने बनवले:"
|
||||
msgid "By the community, for the community."
|
||||
msgstr "समाजाने, समाजासाठी."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
|
||||
@ -318,7 +318,7 @@ msgstr ""
|
||||
msgid "Copy to Clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
@ -328,7 +328,7 @@ msgstr ""
|
||||
msgid "Create a new account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
||||
msgid "Create a new item"
|
||||
msgstr ""
|
||||
|
||||
@ -377,15 +377,15 @@ msgstr "गडद"
|
||||
msgid "Date"
|
||||
msgstr "तारीख"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:85
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||
msgid "Date or Date Range"
|
||||
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:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:157
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:134
|
||||
@ -398,11 +398,11 @@ msgstr "हटवा"
|
||||
msgid "Delete Account"
|
||||
msgstr "खाते हटवा"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:71
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
||||
msgid "Description"
|
||||
msgstr "वर्णन"
|
||||
|
||||
@ -462,7 +462,7 @@ msgstr "PDF डाउनलोड करा"
|
||||
msgid "Downloads"
|
||||
msgstr "डाउनलोड"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:170
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:245
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:102
|
||||
@ -470,7 +470,7 @@ msgstr "डाउनलोड"
|
||||
msgid "Duplicate"
|
||||
msgstr "नक्कल"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
msgid "Duplicate an existing item"
|
||||
msgstr "अस्तित्वात असलेल्या वस्तूची नक्कल करा"
|
||||
|
||||
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:90
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
|
||||
msgid "Hidden"
|
||||
msgstr ""
|
||||
@ -686,7 +686,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>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -788,10 +788,10 @@ msgstr "john.doe@example.com"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
|
||||
msgid "Keywords"
|
||||
msgstr "कीवर्ड"
|
||||
|
||||
@ -823,7 +823,7 @@ msgid "Letter"
|
||||
msgstr "पत्र"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
||||
msgid "Level"
|
||||
msgstr "स्तर"
|
||||
|
||||
@ -852,7 +852,7 @@ msgstr "LinkedIn, JSON Resume, इ."
|
||||
msgid "List"
|
||||
msgstr "यादी"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83
|
||||
@ -900,7 +900,7 @@ msgstr "मार्च २०२३"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "मार्च २०२३ - वर्तमान"
|
||||
@ -914,13 +914,13 @@ msgid "MIT License"
|
||||
msgstr "एमआयटी परवाना"
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:106
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:57
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:43
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||
msgid "Name"
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr "नाव"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr "नेटवर्क"
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr "नेटवर्क"
|
||||
msgid "New Password"
|
||||
msgstr "नवीन पासवर्ड"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr "कोणतेही परिणाम आढळले नाहीत"
|
||||
|
||||
@ -993,7 +993,7 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr "विकल्प"
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:46
|
||||
#: apps/client/src/pages/auth/layout.tsx:47
|
||||
msgctxt "The user can either login with email/password, or continue with GitHub or Google."
|
||||
msgid "or continue with"
|
||||
msgstr ""
|
||||
@ -1030,7 +1030,7 @@ msgstr ""
|
||||
msgid "Phone"
|
||||
msgstr "फोन"
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:75
|
||||
#: apps/client/src/pages/auth/layout.tsx:76
|
||||
msgid "Photograph by Patrick Tomasso"
|
||||
msgstr "पॅट्रिक टोमासो यांचे छायाचित्र"
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1194,7 +1194,7 @@ msgstr ""
|
||||
msgid "Rounded"
|
||||
msgstr "गोलाकार केलेले"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
|
||||
@ -1222,7 +1222,7 @@ msgstr "फाँट उपसंचाचा शोध घ्या"
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr "भाषेचा शोध घ्या"
|
||||
|
||||
@ -1370,10 +1370,10 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
@ -1435,7 +1435,7 @@ msgstr ""
|
||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:127
|
||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||
msgstr ""
|
||||
|
||||
@ -1531,7 +1531,7 @@ msgstr "रेझ्युमेचा कुलूप उघडून आपण
|
||||
msgid "Unverified"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||
msgid "Update an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr "वापरकर्तानाव"
|
||||
@ -1613,11 +1613,11 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
@ -1629,10 +1629,10 @@ msgstr "संकेतस्थळ"
|
||||
msgid "What's new in the latest version"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:112
|
||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ne\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-11-26 14:53\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Nepali\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -150,7 +150,7 @@ msgstr ""
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:125
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr ""
|
||||
|
||||
@ -235,7 +235,7 @@ msgstr ""
|
||||
msgid "By the community, for the community."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
|
||||
@ -318,7 +318,7 @@ msgstr ""
|
||||
msgid "Copy to Clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
@ -328,7 +328,7 @@ msgstr ""
|
||||
msgid "Create a new account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
||||
msgid "Create a new item"
|
||||
msgstr ""
|
||||
|
||||
@ -377,15 +377,15 @@ msgstr ""
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:85
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||
msgid "Date or Date Range"
|
||||
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:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:157
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:134
|
||||
@ -398,11 +398,11 @@ msgstr ""
|
||||
msgid "Delete Account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:71
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
@ -462,7 +462,7 @@ msgstr ""
|
||||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:170
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:245
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:102
|
||||
@ -470,7 +470,7 @@ msgstr ""
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
msgid "Duplicate an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:90
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
|
||||
msgid "Hidden"
|
||||
msgstr ""
|
||||
@ -686,7 +686,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>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -788,10 +788,10 @@ msgstr ""
|
||||
msgid "JSON"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
@ -823,7 +823,7 @@ msgid "Letter"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
||||
msgid "Level"
|
||||
msgstr ""
|
||||
|
||||
@ -852,7 +852,7 @@ msgstr ""
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83
|
||||
@ -900,7 +900,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||
msgid "March 2023 - Present"
|
||||
msgstr ""
|
||||
@ -914,13 +914,13 @@ msgid "MIT License"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:106
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:57
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:43
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||
msgid "Name"
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -993,7 +993,7 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:46
|
||||
#: apps/client/src/pages/auth/layout.tsx:47
|
||||
msgctxt "The user can either login with email/password, or continue with GitHub or Google."
|
||||
msgid "or continue with"
|
||||
msgstr ""
|
||||
@ -1030,7 +1030,7 @@ msgstr ""
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:75
|
||||
#: apps/client/src/pages/auth/layout.tsx:76
|
||||
msgid "Photograph by Patrick Tomasso"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1194,7 +1194,7 @@ msgstr ""
|
||||
msgid "Rounded"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1370,10 +1370,10 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
@ -1435,7 +1435,7 @@ msgstr ""
|
||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:127
|
||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||
msgstr ""
|
||||
|
||||
@ -1531,7 +1531,7 @@ msgstr ""
|
||||
msgid "Unverified"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||
msgid "Update an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1613,11 +1613,11 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
@ -1629,10 +1629,10 @@ msgstr ""
|
||||
msgid "What's new in the latest version"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:112
|
||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||
msgstr ""
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: no\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-11-26 14:53\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Norwegian\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -87,7 +87,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43
|
||||
msgid "A4"
|
||||
msgstr ""
|
||||
msgstr "A4"
|
||||
|
||||
#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json.
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:270
|
||||
@ -96,30 +96,30 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
msgstr "Konto"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:124
|
||||
msgid "Add a custom field"
|
||||
msgstr ""
|
||||
msgstr "Legg til egendefinert felt"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:108
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr ""
|
||||
msgstr "Legg til nytt element"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:68
|
||||
msgid "Add a new item"
|
||||
msgstr ""
|
||||
msgstr "Legg til nytt element"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:196
|
||||
msgid "Add a new section"
|
||||
msgstr ""
|
||||
msgstr "Legg til ny seksjon"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:269
|
||||
msgid "Add New Page"
|
||||
msgstr ""
|
||||
msgstr "Legg til ny side"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:79
|
||||
msgid "AI"
|
||||
@ -127,11 +127,11 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:74
|
||||
msgid "Already have an account?"
|
||||
msgstr ""
|
||||
msgstr "Har du allerede en konto?"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:144
|
||||
msgid "An error occurred while validating the file."
|
||||
msgstr ""
|
||||
msgstr "Det oppstod en feil under validering av filen."
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:135
|
||||
msgid "and many more..."
|
||||
@ -139,7 +139,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57
|
||||
msgid "Anyone with the link can view and download the resume."
|
||||
msgstr ""
|
||||
msgstr "Alle med linken kan se og laste ned CV-en."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:30
|
||||
@ -150,7 +150,7 @@ msgstr ""
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:125
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr ""
|
||||
|
||||
@ -235,7 +235,7 @@ msgstr ""
|
||||
msgid "By the community, for the community."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
|
||||
@ -318,7 +318,7 @@ msgstr ""
|
||||
msgid "Copy to Clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
@ -328,7 +328,7 @@ msgstr ""
|
||||
msgid "Create a new account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
||||
msgid "Create a new item"
|
||||
msgstr ""
|
||||
|
||||
@ -377,15 +377,15 @@ msgstr ""
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:85
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||
msgid "Date or Date Range"
|
||||
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:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:157
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:134
|
||||
@ -398,11 +398,11 @@ msgstr ""
|
||||
msgid "Delete Account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:71
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
@ -462,7 +462,7 @@ msgstr ""
|
||||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:170
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:245
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:102
|
||||
@ -470,7 +470,7 @@ msgstr ""
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
msgid "Duplicate an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:90
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
|
||||
msgid "Hidden"
|
||||
msgstr ""
|
||||
@ -686,7 +686,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>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -788,10 +788,10 @@ msgstr ""
|
||||
msgid "JSON"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
@ -823,7 +823,7 @@ msgid "Letter"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
||||
msgid "Level"
|
||||
msgstr ""
|
||||
|
||||
@ -852,7 +852,7 @@ msgstr ""
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83
|
||||
@ -900,7 +900,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||
msgid "March 2023 - Present"
|
||||
msgstr ""
|
||||
@ -914,13 +914,13 @@ msgid "MIT License"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:106
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:57
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:43
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||
msgid "Name"
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -993,7 +993,7 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:46
|
||||
#: apps/client/src/pages/auth/layout.tsx:47
|
||||
msgctxt "The user can either login with email/password, or continue with GitHub or Google."
|
||||
msgid "or continue with"
|
||||
msgstr ""
|
||||
@ -1030,7 +1030,7 @@ msgstr ""
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:75
|
||||
#: apps/client/src/pages/auth/layout.tsx:76
|
||||
msgid "Photograph by Patrick Tomasso"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1194,7 +1194,7 @@ msgstr ""
|
||||
msgid "Rounded"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1370,15 +1370,15 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
msgstr "Sammendrag"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
||||
msgid "Support the app by donating what you can!"
|
||||
@ -1435,7 +1435,7 @@ msgstr ""
|
||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:127
|
||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||
msgstr ""
|
||||
|
||||
@ -1531,7 +1531,7 @@ msgstr ""
|
||||
msgid "Unverified"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||
msgid "Update an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1613,11 +1613,11 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
@ -1629,10 +1629,10 @@ msgstr ""
|
||||
msgid "What's new in the latest version"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:112
|
||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: or\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-11-26 14:53\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:30\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Odia\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -150,7 +150,7 @@ msgstr ""
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:125
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr ""
|
||||
|
||||
@ -235,7 +235,7 @@ msgstr ""
|
||||
msgid "By the community, for the community."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
|
||||
@ -318,7 +318,7 @@ msgstr ""
|
||||
msgid "Copy to Clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
@ -328,7 +328,7 @@ msgstr ""
|
||||
msgid "Create a new account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
||||
msgid "Create a new item"
|
||||
msgstr ""
|
||||
|
||||
@ -377,15 +377,15 @@ msgstr ""
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:85
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||
msgid "Date or Date Range"
|
||||
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:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:157
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:134
|
||||
@ -398,11 +398,11 @@ msgstr ""
|
||||
msgid "Delete Account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:71
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
@ -462,7 +462,7 @@ msgstr ""
|
||||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:170
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:245
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:102
|
||||
@ -470,7 +470,7 @@ msgstr ""
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
msgid "Duplicate an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:90
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
|
||||
msgid "Hidden"
|
||||
msgstr ""
|
||||
@ -686,7 +686,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>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -788,10 +788,10 @@ msgstr ""
|
||||
msgid "JSON"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
@ -823,7 +823,7 @@ msgid "Letter"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
||||
msgid "Level"
|
||||
msgstr ""
|
||||
|
||||
@ -852,7 +852,7 @@ msgstr ""
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83
|
||||
@ -900,7 +900,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||
msgid "March 2023 - Present"
|
||||
msgstr ""
|
||||
@ -914,13 +914,13 @@ msgid "MIT License"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:106
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:57
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:43
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||
msgid "Name"
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -993,7 +993,7 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:46
|
||||
#: apps/client/src/pages/auth/layout.tsx:47
|
||||
msgctxt "The user can either login with email/password, or continue with GitHub or Google."
|
||||
msgid "or continue with"
|
||||
msgstr ""
|
||||
@ -1030,7 +1030,7 @@ msgstr ""
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:75
|
||||
#: apps/client/src/pages/auth/layout.tsx:76
|
||||
msgid "Photograph by Patrick Tomasso"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1194,7 +1194,7 @@ msgstr ""
|
||||
msgid "Rounded"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1370,10 +1370,10 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
@ -1435,7 +1435,7 @@ msgstr ""
|
||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:127
|
||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||
msgstr ""
|
||||
|
||||
@ -1531,7 +1531,7 @@ msgstr ""
|
||||
msgid "Unverified"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||
msgid "Update an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1613,11 +1613,11 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
@ -1629,10 +1629,10 @@ msgstr ""
|
||||
msgid "What's new in the latest version"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:112
|
||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: pl\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-01-04 00:08\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:30\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Polish\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||
@ -150,7 +150,7 @@ msgstr "Każda osoba posiadająca ten link może wyświetlić i pobrać CV. Udos
|
||||
msgid "API Key"
|
||||
msgstr "Klucz API"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:125
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr "Czy na pewno chcesz usunąć ten element?"
|
||||
|
||||
@ -235,7 +235,7 @@ msgstr "Wykorzystane technologie"
|
||||
msgid "By the community, for the community."
|
||||
msgstr "Zbudowane przez społeczność dla społeczności."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
|
||||
@ -318,7 +318,7 @@ msgstr "Skopiuj link do CV"
|
||||
msgid "Copy to Clipboard"
|
||||
msgstr "Skopiuj do Schowka"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||
msgid "Create"
|
||||
msgstr "Stwórz"
|
||||
@ -328,7 +328,7 @@ msgstr "Stwórz"
|
||||
msgid "Create a new account"
|
||||
msgstr "Stwórz nowe konto"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
||||
msgid "Create a new item"
|
||||
msgstr "Stwórz nowy element"
|
||||
|
||||
@ -377,15 +377,15 @@ msgstr "Ciemny"
|
||||
msgid "Date"
|
||||
msgstr "Data"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:85
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||
msgid "Date or Date Range"
|
||||
msgstr "Data lub zakres dat"
|
||||
|
||||
#: 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:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:157
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:134
|
||||
@ -398,11 +398,11 @@ msgstr "Usuń"
|
||||
msgid "Delete Account"
|
||||
msgstr "Usuń konto"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:71
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
||||
msgid "Description"
|
||||
msgstr "Opis"
|
||||
|
||||
@ -462,7 +462,7 @@ msgstr "Pobierz PDF"
|
||||
msgid "Downloads"
|
||||
msgstr "Pliki do pobrania"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:170
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:245
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:102
|
||||
@ -470,7 +470,7 @@ msgstr "Pliki do pobrania"
|
||||
msgid "Duplicate"
|
||||
msgstr "Duplikat"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
msgid "Duplicate an existing item"
|
||||
msgstr "Duplikuj istniejący element"
|
||||
|
||||
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr "Tutaj możesz zaktualizować swój profil, aby dostosować i spersonalizować swoje doświadczenia."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:90
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
|
||||
msgid "Hidden"
|
||||
msgstr "Ukryte"
|
||||
@ -686,7 +686,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>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr "Ikona"
|
||||
|
||||
@ -788,10 +788,10 @@ msgstr "jan.kowalski@przyklad.pl"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
|
||||
msgid "Keywords"
|
||||
msgstr "Słowa Kluczowe"
|
||||
|
||||
@ -823,7 +823,7 @@ msgid "Letter"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
||||
msgid "Level"
|
||||
msgstr "Poziom"
|
||||
|
||||
@ -852,7 +852,7 @@ msgstr "LinkedIn, CV JSON itp."
|
||||
msgid "List"
|
||||
msgstr "Lista"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83
|
||||
@ -900,7 +900,7 @@ msgstr "Marzec 2023"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "Marzec 2023 – obecnie"
|
||||
@ -914,13 +914,13 @@ msgid "MIT License"
|
||||
msgstr "Licencja MIT"
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:106
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:57
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:43
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||
msgid "Name"
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr "Nazwa"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr "Sieć"
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr "Sieć"
|
||||
msgid "New Password"
|
||||
msgstr "Nowe Hasło"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr "Brak wyników"
|
||||
|
||||
@ -993,7 +993,7 @@ msgstr "Integracja z OpenAI"
|
||||
msgid "Options"
|
||||
msgstr "Opcje"
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:46
|
||||
#: apps/client/src/pages/auth/layout.tsx:47
|
||||
msgctxt "The user can either login with email/password, or continue with GitHub or Google."
|
||||
msgid "or continue with"
|
||||
msgstr "lub kontynuuj z"
|
||||
@ -1030,7 +1030,7 @@ msgstr "Osobiste notatki do każdego CV"
|
||||
msgid "Phone"
|
||||
msgstr "Telefon"
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:75
|
||||
#: apps/client/src/pages/auth/layout.tsx:76
|
||||
msgid "Photograph by Patrick Tomasso"
|
||||
msgstr "Zdjęcie: Patrick Tomasso"
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr "Napędzane przez"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr "Napędzane przez <0>Simple Icons</0>"
|
||||
|
||||
@ -1194,7 +1194,7 @@ msgstr ""
|
||||
msgid "Rounded"
|
||||
msgstr "Zaokrąklony"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
|
||||
@ -1222,7 +1222,7 @@ msgstr "Wyszukaj podzbiór czcionek"
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Wyszukaj wariant czcionki"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr "Wyszukaj język"
|
||||
|
||||
@ -1370,10 +1370,10 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
@ -1435,7 +1435,7 @@ msgstr "Motyw"
|
||||
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."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:127
|
||||
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."
|
||||
|
||||
@ -1531,7 +1531,7 @@ msgstr "Odblokowanie CV umożliwi ponowne wprowadzenie w nim zmian."
|
||||
msgid "Unverified"
|
||||
msgstr "Niezweryfikowany"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||
msgid "Update an existing item"
|
||||
msgstr "Zaktualizuj istniejący element"
|
||||
|
||||
@ -1561,7 +1561,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."
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr "Nazwa Użytkownika"
|
||||
@ -1613,11 +1613,11 @@ msgstr "Weryfikujemy Twój adres e-mail tylko po to, aby mieć pewność, że b
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
@ -1629,10 +1629,10 @@ msgstr "Strona"
|
||||
msgid "What's new in the latest version"
|
||||
msgstr "Co nowego w najnowszej wersji"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:112
|
||||
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."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: pt\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-12-06 00:08\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:30\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Portuguese, Brazilian\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -150,7 +150,7 @@ msgstr "Qualquer pessoa com este link pode visualizar e baixar o currículo. Com
|
||||
msgid "API Key"
|
||||
msgstr "Chave API"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:125
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr "Tem certeza de que deseja excluir este item?"
|
||||
|
||||
@ -235,7 +235,7 @@ msgstr "Construído com"
|
||||
msgid "By the community, for the community."
|
||||
msgstr "Construída pela comunidade para a comunidade."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
|
||||
@ -318,7 +318,7 @@ msgstr "Copiar link para currículo"
|
||||
msgid "Copy to Clipboard"
|
||||
msgstr "Copiar para Área de Transferência"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||
msgid "Create"
|
||||
msgstr "Criar"
|
||||
@ -328,7 +328,7 @@ msgstr "Criar"
|
||||
msgid "Create a new account"
|
||||
msgstr "Criar uma nova conta"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
||||
msgid "Create a new item"
|
||||
msgstr "Criar um novo item"
|
||||
|
||||
@ -377,15 +377,15 @@ msgstr "Escuro"
|
||||
msgid "Date"
|
||||
msgstr "Data"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:85
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||
msgid "Date or Date Range"
|
||||
msgstr "Data ou intervalo de datas"
|
||||
|
||||
#: 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:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:157
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:134
|
||||
@ -398,11 +398,11 @@ msgstr "Apagar"
|
||||
msgid "Delete Account"
|
||||
msgstr "Excluir conta"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:71
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
||||
msgid "Description"
|
||||
msgstr "Descrição"
|
||||
|
||||
@ -462,7 +462,7 @@ msgstr "Baixar PDF"
|
||||
msgid "Downloads"
|
||||
msgstr "Downloads"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:170
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:245
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:102
|
||||
@ -470,7 +470,7 @@ msgstr "Downloads"
|
||||
msgid "Duplicate"
|
||||
msgstr "Duplicar"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
msgid "Duplicate an existing item"
|
||||
msgstr "Duplicar um item existente"
|
||||
|
||||
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr "Aqui, você pode atualizar seu perfil para customizar e personalizar sua experiência."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:90
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
|
||||
msgid "Hidden"
|
||||
msgstr "Oculto"
|
||||
@ -686,7 +686,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>."
|
||||
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:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr "Ícone"
|
||||
|
||||
@ -700,7 +700,7 @@ msgstr "Se você desativar a autenticação em dois passos, não será mais nece
|
||||
|
||||
#: apps/client/src/pages/home/sections/support/index.tsx:59
|
||||
msgid "If you're multilingual, we'd love your help in bringing the app to more languages and communities. Don't worry if you don't see your language on the list - just give me a shout-out on GitHub, and I'll make sure to include it. Ready to get started? Jump into translation over at Crowdin by clicking the link below."
|
||||
msgstr ""
|
||||
msgstr "Se você é multilíngue, gostaríamos de contar com sua ajuda para levar o aplicativo a mais idiomas e comunidades. Não se preocupe se não encontrar seu idioma na lista - basta me avisar no GitHub, e eu me certificarei de incluí-lo. Pronto para começar? Entre na tradução no Crowdin clicando no link abaixo."
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:309
|
||||
msgid "Import"
|
||||
@ -718,15 +718,15 @@ msgstr "Melhorar a escrita"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:186
|
||||
msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app."
|
||||
msgstr ""
|
||||
msgstr "Caso você não consiga escanear este código QR, você também pode copiar e colar este link no seu aplicativo de autenticação."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70
|
||||
msgid "In this section, you can change your password and enable/disable two-factor authentication."
|
||||
msgstr ""
|
||||
msgstr "Nesta seção, você pode alterar sua senha e ativar/desativar a autenticação de dois fatores."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:64
|
||||
msgid "In this section, you can delete your account and all the data associated to your user, but please keep in mind that <0>this action is irreversible</0>."
|
||||
msgstr ""
|
||||
msgstr "Nesta seção você pode excluir sua conta e todos os dados associados ao seu usuário, mas lembre-se de que <0>esta ação é irreversível</0>."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:83
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122
|
||||
@ -743,31 +743,31 @@ msgstr "Emissor"
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:7
|
||||
msgid "It doesn't look like a user exists with the credentials you provided."
|
||||
msgstr ""
|
||||
msgstr "Parece que não existe um usuário com as credenciais que você forneceu."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:27
|
||||
msgid "It looks like the backup code you provided is invalid or used. Please try again."
|
||||
msgstr ""
|
||||
msgstr "Parece que o código de backup fornecido é inválido ou está sendo usado. Por favor, tente novamente."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:15
|
||||
msgid "It looks like the reset token you provided is invalid. Please try restarting the password reset process again."
|
||||
msgstr ""
|
||||
msgstr "Parece que o token de redefinição fornecido é inválido. Tente reiniciar o processo de redefinição de senha novamente."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:33
|
||||
msgid "It looks like the resume you're looking for doesn't exist."
|
||||
msgstr ""
|
||||
msgstr "Parece que o currículo que está procurando não existe."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:25
|
||||
msgid "It looks like the two-factor authentication code you provided is invalid. Please try again."
|
||||
msgstr ""
|
||||
msgstr "Parece que o código de autenticação de dois fatores fornecido é inválido. Por favor, tente novamente."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:17
|
||||
msgid "It looks like the verification token you provided is invalid. Please try restarting the verification process again."
|
||||
msgstr ""
|
||||
msgstr "Parece que o token de redefinição fornecido é inválido. Tente reiniciar o processo de redefinição de senha novamente."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:19
|
||||
msgid "It looks like your email address has already been verified."
|
||||
msgstr ""
|
||||
msgstr "Parece que seu endereço de e-mail já foi verificado."
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:109
|
||||
msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish."
|
||||
@ -788,10 +788,10 @@ msgstr "joao.silva@example.com"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
|
||||
msgid "Keywords"
|
||||
msgstr "Palavras-chave"
|
||||
|
||||
@ -807,7 +807,7 @@ msgstr "Idioma"
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:116
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:149
|
||||
msgid "Last updated {lastUpdated}"
|
||||
msgstr ""
|
||||
msgstr "Última atualização {lastUpdated}"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:65
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207
|
||||
@ -823,13 +823,13 @@ msgid "Letter"
|
||||
msgstr "Carta"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
||||
msgid "Level"
|
||||
msgstr "Nível"
|
||||
|
||||
#: apps/client/src/components/copyright.tsx:16
|
||||
msgid "Licensed under <0>MIT</0>"
|
||||
msgstr ""
|
||||
msgstr "Licenciado sob <0>MIT</0>"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:81
|
||||
msgid "Light"
|
||||
@ -846,13 +846,13 @@ msgstr "Altura da linha"
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23
|
||||
msgid "LinkedIn, JSON Resume, etc."
|
||||
msgstr ""
|
||||
msgstr "LinkedIn, currículo JSON, etc."
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/page.tsx:45
|
||||
msgid "List"
|
||||
msgstr "Lista"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83
|
||||
@ -872,7 +872,7 @@ msgstr "Bloqueie um currículo para evitar edição"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43
|
||||
msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it."
|
||||
msgstr ""
|
||||
msgstr "Bloquear um currículo impedirá quaisquer alterações adicionais nele. Isso é útil quando você já compartilhou seu currículo com alguém e não deseja fazer alterações nele acidentalmente."
|
||||
|
||||
#: apps/client/src/components/user-options.tsx:34
|
||||
#: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23
|
||||
@ -900,7 +900,7 @@ msgstr "Março de 2023"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "Março de 2023 - Presente"
|
||||
@ -914,13 +914,13 @@ msgid "MIT License"
|
||||
msgstr "Licença MIT"
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:106
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:57
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:43
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||
msgid "Name"
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr "Rede"
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr "Rede"
|
||||
msgid "New Password"
|
||||
msgstr "Nova Senha"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr "Nenhum resultado encontrado"
|
||||
|
||||
@ -993,7 +993,7 @@ msgstr "Integração com OpenAI"
|
||||
msgid "Options"
|
||||
msgstr "Opções"
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:46
|
||||
#: apps/client/src/pages/auth/layout.tsx:47
|
||||
msgctxt "The user can either login with email/password, or continue with GitHub or Google."
|
||||
msgid "or continue with"
|
||||
msgstr "ou continue com"
|
||||
@ -1024,19 +1024,19 @@ msgstr "PDF"
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:63
|
||||
msgid "Personal notes for each resume"
|
||||
msgstr ""
|
||||
msgstr "Notas pessoais para cada currículo"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73
|
||||
msgid "Phone"
|
||||
msgstr "Telefone"
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:75
|
||||
#: apps/client/src/pages/auth/layout.tsx:76
|
||||
msgid "Photograph by Patrick Tomasso"
|
||||
msgstr ""
|
||||
msgstr "Fotografia de Patrick Tomasso"
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:66
|
||||
msgid "Pick any font from Google Fonts"
|
||||
msgstr ""
|
||||
msgstr "Escolha qualquer fonte do Google Fonts"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:69
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120
|
||||
@ -1045,7 +1045,7 @@ msgstr "Foto"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:59
|
||||
msgid "Please note that this step is completely optional."
|
||||
msgstr ""
|
||||
msgstr "Por favor, note que esta etapa é completamente opcional."
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:225
|
||||
msgid "Please select a file type"
|
||||
@ -1053,7 +1053,7 @@ msgstr "Por favor, selecione um tipo de arquivo"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:226
|
||||
msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app."
|
||||
msgstr ""
|
||||
msgstr "Guarde seus códigos de backup em um local seguro. Você pode usar um desses códigos de uso único para fazer login caso perca o acesso ao seu aplicativo autenticador."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:106
|
||||
msgid "Portrait"
|
||||
@ -1072,7 +1072,7 @@ msgstr "Posição"
|
||||
msgid "Powered by"
|
||||
msgstr "Desenvolvido por"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr "Desenvolvido por <0>Simple Icons</0>"
|
||||
|
||||
@ -1083,7 +1083,7 @@ msgstr "Cor Primária"
|
||||
#: apps/client/src/components/ai-actions.tsx:109
|
||||
#: apps/client/src/components/ai-actions.tsx:112
|
||||
msgid "Professional"
|
||||
msgstr ""
|
||||
msgstr "Profissional"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:60
|
||||
msgid "Profile"
|
||||
@ -1095,7 +1095,7 @@ msgstr "Público"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53
|
||||
msgid "Publisher"
|
||||
msgstr ""
|
||||
msgstr "Editor"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69
|
||||
msgid "Raise an issue"
|
||||
@ -1121,19 +1121,19 @@ msgstr "Reactive Resume"
|
||||
|
||||
#: apps/client/src/pages/home/sections/logo-cloud/index.tsx:39
|
||||
msgid "Reactive Resume has helped people land jobs at these great companies:"
|
||||
msgstr ""
|
||||
msgstr "O Reactive Resume ajudou pessoas a conseguir empregos nestas grandes empresas:"
|
||||
|
||||
#: apps/client/src/pages/home/sections/support/index.tsx:12
|
||||
msgid "Reactive Resume is a free and open-source project crafted mostly by me, and your support would be greatly appreciated. If you're inclined to contribute, and only if you can afford to, consider making a donation through any of the listed platforms. Additionally, donations to Reactive Resume through Open Collective are tax-exempt, as the project is fiscally hosted by Open Collective Europe."
|
||||
msgstr ""
|
||||
msgstr "Reactive Resume é um projeto gratuito e de código aberto criado principalmente por mim, e seu apoio seria muito apreciado. Se você estiver disposto a contribuir, e somente se puder, considere fazer uma doação por meio de qualquer uma das plataformas listadas. Além disso, as doações para o Reactive Resume através do Open Collective são isentas de impostos, já que o projeto é hospedado fiscalmente pela Open Collective Europe."
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:108
|
||||
msgid "Reactive Resume is a passion project of over 3 years of hard work, and with that comes a number of re-iterated ideas and features that have been built to (near) perfection."
|
||||
msgstr ""
|
||||
msgstr "O Reactive Resume é um projeto de paixão de mais de 3 anos de trabalho árduo e, com isso, vem uma série de ideias e recursos reiterados que foram desenvolvidos com (quase) perfeição."
|
||||
|
||||
#: apps/client/src/pages/home/sections/contributors/index.tsx:22
|
||||
msgid "Reactive Resume thrives thanks to its vibrant community. This project owes its progress to numerous individuals who've dedicated their time and skills. Below, we celebrate the coders who've enhanced its features on GitHub and the linguists whose translations on Crowdin have made it accessible to a broader audience."
|
||||
msgstr ""
|
||||
msgstr "O Reactive Resume só dá certo graças à sua comunidade vibrante. Este projeto deve seu progresso a inúmeras pessoas que investiram seu tempo e habilidades. Abaixo, celebramos os programadores que aprimoraram seus recursos no GitHub e os linguistas cujas traduções no Crowdin o tornaram acessível para pessoas no mundo todo."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:72
|
||||
msgid "Redo"
|
||||
@ -1188,13 +1188,13 @@ msgstr "Currículos gerados"
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:106
|
||||
msgid "Rich in features, not in pricing."
|
||||
msgstr ""
|
||||
msgstr "Rico em recursos, não em preços."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143
|
||||
msgid "Rounded"
|
||||
msgstr "Arredondado"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
|
||||
@ -1203,7 +1203,7 @@ msgstr "Salvar Alterações"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:166
|
||||
msgid "Scan the QR code below with your authenticator app to setup 2FA on your account."
|
||||
msgstr ""
|
||||
msgstr "Leia o código QR abaixo com seu aplicativo de autenticação para configurar a autenticação em dois fatores em sua conta."
|
||||
|
||||
#. Score or honors for the degree, for example, CGPA or magna cum laude
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:92
|
||||
@ -1222,13 +1222,13 @@ msgstr "Procure um subconjunto de fontes"
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Procure uma variante de fonte"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
msgstr "Selecionar idioma"
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:56
|
||||
msgid "Secure with two-factor authentication"
|
||||
msgstr ""
|
||||
msgstr "Protegido com autenticação em dois fatores"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68
|
||||
msgid "Security"
|
||||
@ -1323,29 +1323,29 @@ msgstr "Permalink"
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:39
|
||||
msgid "Something went wrong while grabbing a preview your resume. Please try again later or raise an issue on GitHub."
|
||||
msgstr ""
|
||||
msgstr "Algo deu errado ao visualizar seu currículo. Tente novamente mais tarde ou relate seu problema no GitHub."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:37
|
||||
msgid "Something went wrong while printing your resume. Please try again later or raise an issue on GitHub."
|
||||
msgstr ""
|
||||
msgstr "Algo deu errado ao imprimir seu currículo. Tente novamente mais tarde ou relate seu problema no GitHub."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:41
|
||||
msgid "Something went wrong while processing your request. Please try again later or raise an issue on GitHub."
|
||||
msgstr ""
|
||||
msgstr "Algo deu errado ao processar sua solicitação. Tente novamente mais tarde ou relate seu problema no GitHub."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:94
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:137
|
||||
msgid "Square"
|
||||
msgstr ""
|
||||
msgstr "Quadrado"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24
|
||||
msgid "Start building from scratch"
|
||||
msgstr ""
|
||||
msgstr "Começar do zero"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:184
|
||||
msgid "Start building your resume by giving it a name."
|
||||
msgstr ""
|
||||
msgstr "Comece a construir seu currículo dando um nome ao arquivo."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23
|
||||
@ -1354,26 +1354,26 @@ msgstr "Estatísticas"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38
|
||||
msgid "Statistics are available only for public resumes."
|
||||
msgstr ""
|
||||
msgstr "As estatísticas só estão disponíveis para currículos públicos."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101
|
||||
msgid "Store Locally"
|
||||
msgstr ""
|
||||
msgstr "Salvar localmente"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:160
|
||||
msgid "Store your backup codes securely"
|
||||
msgstr ""
|
||||
msgstr "Armazene seus códigos de backup de forma segura"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101
|
||||
msgid "Stored"
|
||||
msgstr ""
|
||||
msgstr "Salvo"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
@ -1382,15 +1382,15 @@ msgstr "Resumo"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18
|
||||
msgid "Support the app by donating what you can!"
|
||||
msgstr ""
|
||||
msgstr "Apoie o aplicativo doando o que puder!"
|
||||
|
||||
#: apps/client/src/pages/home/sections/support/index.tsx:9
|
||||
msgid "Supporting Reactive Resume"
|
||||
msgstr ""
|
||||
msgstr "Apoiando o Reactive Resume"
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:65
|
||||
msgid "Supports A4/Letter page formats"
|
||||
msgstr ""
|
||||
msgstr "Suporta formatos de página A4 e carta"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:80
|
||||
msgid "System"
|
||||
@ -1415,15 +1415,15 @@ msgstr "Cor do texto"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25
|
||||
msgid "That doesn't look like a valid OpenAI API key."
|
||||
msgstr ""
|
||||
msgstr "Isso não parece uma chave de API OpenAI válida."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34
|
||||
msgid "The passwords you entered do not match."
|
||||
msgstr ""
|
||||
msgstr "As senhas informadas não são iguais."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:35
|
||||
msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it."
|
||||
msgstr ""
|
||||
msgstr "O currículo que você deseja atualizar está bloqueado. Desbloqueie-o antes de fazer alguma alteração nele."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:71
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20
|
||||
@ -1433,31 +1433,31 @@ msgstr "Tema"
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:29
|
||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||
msgstr ""
|
||||
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:117
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:127
|
||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||
msgstr ""
|
||||
msgstr "Essa ação pode ser revertida clicando no botão desfazer na barra de ferramentas flutuante."
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:150
|
||||
msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered."
|
||||
msgstr ""
|
||||
msgstr "Essa ação não pode ser desfeita. Isso excluirá permanentemente seu currículo sem oportunidade de recuperá-lo."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:13
|
||||
msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider."
|
||||
msgstr ""
|
||||
msgstr "Este endereço de e-mail está associado a uma conta OAuth. Faça login com seu provedor OAuth."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/header.tsx:53
|
||||
msgid "This resume is locked, please unlock to make further changes."
|
||||
msgstr ""
|
||||
msgstr "Esse currículo que você deseja atualizar está bloqueado. Ele precisa ser desbloqueado antes de fazer alterações."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23
|
||||
msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else."
|
||||
msgstr ""
|
||||
msgstr "Esta seção é reservada para suas anotações pessoais neste currículo. Esse conteúdo é privado e não é compartilhado com mais ninguém."
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:215
|
||||
msgid "Tip: You can name the resume referring to the position you are applying for."
|
||||
msgstr ""
|
||||
msgstr "Dica: você pode nomear o currículo referente à vaga para a qual está se candidatando."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39
|
||||
msgctxt "Name of the Award"
|
||||
@ -1470,47 +1470,47 @@ msgstr "Título"
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:106
|
||||
msgid "Toggle Page Break Line"
|
||||
msgstr ""
|
||||
msgstr "Alternar Quebra de Página"
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:118
|
||||
msgid "Toggle Page Numbers"
|
||||
msgstr ""
|
||||
msgstr "Alternar Número de Páginas"
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:68
|
||||
msgid "Track views and downloads"
|
||||
msgstr ""
|
||||
msgstr "Acompanhe visualizações e downloads"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:52
|
||||
#: apps/client/src/pages/auth/verify-otp/page.tsx:57
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135
|
||||
msgid "Two-Factor Authentication"
|
||||
msgstr ""
|
||||
msgstr "Autenticação de Dois Fatores"
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:23
|
||||
msgid "Two-factor authentication is already enabled for this account."
|
||||
msgstr ""
|
||||
msgstr "A autenticação de dois fatores está ativada para sua conta."
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:21
|
||||
msgid "Two-factor authentication is not enabled for this account."
|
||||
msgstr ""
|
||||
msgstr "A autenticação de dois fatores não está ativada para sua conta."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84
|
||||
msgid "Type <0>delete</0> to confirm deleting your account."
|
||||
msgstr ""
|
||||
msgstr "Digite <0>delete</0> para confirmar a exclusão de sua conta."
|
||||
|
||||
#. For example, Bachelor's Degree or Master's Degree
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54
|
||||
msgid "Type of Study"
|
||||
msgstr ""
|
||||
msgstr "Tipo de Formação"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/index.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66
|
||||
msgid "Typography"
|
||||
msgstr ""
|
||||
msgstr "Tipografia"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190
|
||||
msgid "Underline Links"
|
||||
msgstr ""
|
||||
msgstr "Sublinhar links"
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:66
|
||||
msgid "Undo"
|
||||
@ -1531,7 +1531,7 @@ msgstr "Desbloquear um currículo permitirá que você faça alterações nele n
|
||||
msgid "Unverified"
|
||||
msgstr "Não verificado"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||
msgid "Update an existing item"
|
||||
msgstr "Atualizar um item existente"
|
||||
|
||||
@ -1541,7 +1541,7 @@ msgstr "Atualizar um currículo existente"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:212
|
||||
msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing."
|
||||
msgstr ""
|
||||
msgstr "Carregue um arquivo de uma das fontes aceitas para o Reactive Resume para analisar os dados existentes e facilitar a edição."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73
|
||||
msgid "URL"
|
||||
@ -1558,10 +1558,10 @@ msgstr "Use um código de backup"
|
||||
|
||||
#: apps/client/src/services/errors/translate-error.ts:11
|
||||
msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub."
|
||||
msgstr ""
|
||||
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:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr "Nome de usuário"
|
||||
@ -1572,15 +1572,15 @@ msgstr "Usuários inscritos"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:296
|
||||
msgid "Validate"
|
||||
msgstr ""
|
||||
msgstr "Confirmar"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:314
|
||||
msgid "Validated"
|
||||
msgstr ""
|
||||
msgstr "Validado"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
msgstr "Valor"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191
|
||||
msgid "Verified"
|
||||
@ -1588,12 +1588,12 @@ msgstr "Verificado"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:159
|
||||
msgid "Verify that two-factor authentication has been setup correctly"
|
||||
msgstr ""
|
||||
msgstr "Verifique se a autenticação de dois fatores foi configurada corretamente"
|
||||
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:43
|
||||
#: apps/client/src/pages/auth/verify-email/page.tsx:48
|
||||
msgid "Verify your email address"
|
||||
msgstr ""
|
||||
msgstr "Confirme seu endereço de email"
|
||||
|
||||
#: apps/client/src/pages/home/sections/hero/index.tsx:26
|
||||
msgid "Version 4"
|
||||
@ -1609,15 +1609,15 @@ msgstr "Visível"
|
||||
|
||||
#: 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."
|
||||
msgstr ""
|
||||
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."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
@ -1629,24 +1629,24 @@ msgstr "Site"
|
||||
msgid "What's new in the latest version"
|
||||
msgstr "O que há de novo na versão mais recente"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:112
|
||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||
msgstr ""
|
||||
msgstr "Você pode adicionar várias palavras-chave separando-as com vírgula ou pressionando Enter."
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:88
|
||||
msgid "You can also enter your username."
|
||||
msgstr ""
|
||||
msgstr "Você também pode inserir seu nome de usuário."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
msgstr ""
|
||||
msgstr "Você pode usar a API OpenAI para ajudá-lo a gerar conteúdo ou melhorar seus textos ao escrever seu currículo."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40
|
||||
msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing."
|
||||
msgstr ""
|
||||
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:60
|
||||
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."
|
||||
@ -1675,11 +1675,11 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/services/openai/client.ts:11
|
||||
msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration."
|
||||
msgstr ""
|
||||
msgstr "Sua chave de API OpenAI ainda não foi definida. Acesse as configurações da sua conta para ativar a integração com a OpenAI."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr ""
|
||||
msgstr "Sua senha foi atualizada com sucesso."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:80
|
||||
msgid "Zoom In"
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: pt\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-11-29 00:08\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:30\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Portuguese\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -150,7 +150,7 @@ msgstr "Qualquer pessoa com o link pode ver e descarregar o currículo. Partilhe
|
||||
msgid "API Key"
|
||||
msgstr "Chave API"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:125
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr "Tem a certeza de que pretende eliminar este item?"
|
||||
|
||||
@ -235,7 +235,7 @@ msgstr "Construído com"
|
||||
msgid "By the community, for the community."
|
||||
msgstr "Pela comunidade, para a comunidade."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
|
||||
@ -318,7 +318,7 @@ msgstr "Copiar link para o currículo"
|
||||
msgid "Copy to Clipboard"
|
||||
msgstr "Copiar para a Área de Transferência"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||
msgid "Create"
|
||||
msgstr "Criar"
|
||||
@ -328,7 +328,7 @@ msgstr "Criar"
|
||||
msgid "Create a new account"
|
||||
msgstr "Criar conta"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
||||
msgid "Create a new item"
|
||||
msgstr "Criar um item"
|
||||
|
||||
@ -377,15 +377,15 @@ msgstr "Modo escuro"
|
||||
msgid "Date"
|
||||
msgstr "Data"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:85
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||
msgid "Date or Date Range"
|
||||
msgstr "Data ou intervalo de datas"
|
||||
|
||||
#: 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:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:157
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:134
|
||||
@ -398,11 +398,11 @@ msgstr "Apagar"
|
||||
msgid "Delete Account"
|
||||
msgstr "Apagar conta"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:71
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
||||
msgid "Description"
|
||||
msgstr "Descrição"
|
||||
|
||||
@ -462,7 +462,7 @@ msgstr "Baixar PDF"
|
||||
msgid "Downloads"
|
||||
msgstr "Downloads"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:170
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:245
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:102
|
||||
@ -470,7 +470,7 @@ msgstr "Downloads"
|
||||
msgid "Duplicate"
|
||||
msgstr "Duplicar"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
msgid "Duplicate an existing item"
|
||||
msgstr "Duplicar um item existente"
|
||||
|
||||
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr "Aqui, pode atualizar o seu perfil para personalizar a sua experiência."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:90
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
|
||||
msgid "Hidden"
|
||||
msgstr "Oculto"
|
||||
@ -686,7 +686,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>."
|
||||
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:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr "Ícone"
|
||||
|
||||
@ -788,10 +788,10 @@ msgstr "joao.silva@exemplo.com"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
|
||||
msgid "Keywords"
|
||||
msgstr "Palavras-chave"
|
||||
|
||||
@ -823,7 +823,7 @@ msgid "Letter"
|
||||
msgstr "Carta"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
||||
msgid "Level"
|
||||
msgstr "Nível"
|
||||
|
||||
@ -852,7 +852,7 @@ msgstr "LinkedIn, currículo JSON, etc."
|
||||
msgid "List"
|
||||
msgstr "Lista"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83
|
||||
@ -900,7 +900,7 @@ msgstr "Março de 2023"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "Março de 2023 - presente"
|
||||
@ -914,13 +914,13 @@ msgid "MIT License"
|
||||
msgstr "Licença MIT"
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:106
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:57
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:43
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||
msgid "Name"
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr "Rede Social"
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr "Rede Social"
|
||||
msgid "New Password"
|
||||
msgstr "Nova Senha"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr "Nenhum resultado encontrado"
|
||||
|
||||
@ -993,7 +993,7 @@ msgstr "Integração com OpenAI"
|
||||
msgid "Options"
|
||||
msgstr "Opções"
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:46
|
||||
#: apps/client/src/pages/auth/layout.tsx:47
|
||||
msgctxt "The user can either login with email/password, or continue with GitHub or Google."
|
||||
msgid "or continue with"
|
||||
msgstr "ou continuar com"
|
||||
@ -1030,7 +1030,7 @@ msgstr "Notas pessoais para cada currículo"
|
||||
msgid "Phone"
|
||||
msgstr "Telefone"
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:75
|
||||
#: apps/client/src/pages/auth/layout.tsx:76
|
||||
msgid "Photograph by Patrick Tomasso"
|
||||
msgstr "Fotografia de Patrick Tomasso"
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr "Cargo"
|
||||
msgid "Powered by"
|
||||
msgstr "Desenvolvido em"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr "Desenvolvido em <0>Simple Icons</0>"
|
||||
|
||||
@ -1194,7 +1194,7 @@ msgstr "Rico em funcionalidades, não em custo."
|
||||
msgid "Rounded"
|
||||
msgstr "Arredondado"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
|
||||
@ -1222,7 +1222,7 @@ msgstr "Procure por um subconjunto de fontes"
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Procure por uma variante de fonte"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr "Pesquise por uma língua"
|
||||
|
||||
@ -1370,10 +1370,10 @@ msgstr "Armazenado"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
@ -1435,7 +1435,7 @@ msgstr "Tema"
|
||||
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."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:127
|
||||
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."
|
||||
|
||||
@ -1531,7 +1531,7 @@ msgstr "Desbloquear um currículo permitirá que você faça alterações nele n
|
||||
msgid "Unverified"
|
||||
msgstr "Não verificado"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||
msgid "Update an existing item"
|
||||
msgstr "Atualizar um item existente"
|
||||
|
||||
@ -1561,7 +1561,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."
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr "Nome de usuário"
|
||||
@ -1613,11 +1613,11 @@ msgstr "Verificamos seu endereço de e-mail apenas para garantir que possamos en
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
@ -1629,10 +1629,10 @@ msgstr "Site"
|
||||
msgid "What's new in the latest version"
|
||||
msgstr "O que há de novo na versão mais recente"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:112
|
||||
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."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ro\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-01-12 00:08\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:30\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Romanian\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);\n"
|
||||
@ -150,7 +150,7 @@ msgstr "Oricine are acest link poate vizualiza și descărca CV-ul. Distribuiți
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:125
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr "Sunteţi sigur că doriţi să ștergeți acest element?"
|
||||
|
||||
@ -235,7 +235,7 @@ msgstr ""
|
||||
msgid "By the community, for the community."
|
||||
msgstr "Construit de comunitate, pentru comunitate."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
|
||||
@ -318,7 +318,7 @@ msgstr ""
|
||||
msgid "Copy to Clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||
msgid "Create"
|
||||
msgstr "Creează"
|
||||
@ -328,7 +328,7 @@ msgstr "Creează"
|
||||
msgid "Create a new account"
|
||||
msgstr "Creează un cont nou"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
||||
msgid "Create a new item"
|
||||
msgstr "Creați un element nou"
|
||||
|
||||
@ -377,15 +377,15 @@ msgstr ""
|
||||
msgid "Date"
|
||||
msgstr "Dată"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:85
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||
msgid "Date or Date Range"
|
||||
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:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:157
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:134
|
||||
@ -398,11 +398,11 @@ msgstr "Șterge"
|
||||
msgid "Delete Account"
|
||||
msgstr "Șterge Contul"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:71
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
||||
msgid "Description"
|
||||
msgstr "Descriere"
|
||||
|
||||
@ -462,7 +462,7 @@ msgstr "Descarcă PDF-ul"
|
||||
msgid "Downloads"
|
||||
msgstr "Descărcări"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:170
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:245
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:102
|
||||
@ -470,7 +470,7 @@ msgstr "Descărcări"
|
||||
msgid "Duplicate"
|
||||
msgstr "Duplică"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
msgid "Duplicate an existing item"
|
||||
msgstr "Duplicați un element existent"
|
||||
|
||||
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr "Aici, vă puteți actualiza profilul pentru a vă personaliza experiența."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:90
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
|
||||
msgid "Hidden"
|
||||
msgstr "Ascuns"
|
||||
@ -686,7 +686,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>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr "Iconiță"
|
||||
|
||||
@ -788,10 +788,10 @@ msgstr "john.doe@example.com"
|
||||
msgid "JSON"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
|
||||
msgid "Keywords"
|
||||
msgstr "Cuvinte cheie"
|
||||
|
||||
@ -823,7 +823,7 @@ msgid "Letter"
|
||||
msgstr "Scrisoare"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
||||
msgid "Level"
|
||||
msgstr "Nivel"
|
||||
|
||||
@ -852,7 +852,7 @@ msgstr ""
|
||||
msgid "List"
|
||||
msgstr "Listă"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83
|
||||
@ -900,7 +900,7 @@ msgstr "Martie 2023"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "Martie 2023 - Prezent"
|
||||
@ -914,13 +914,13 @@ msgid "MIT License"
|
||||
msgstr "Licență MIT"
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:106
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:57
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:43
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||
msgid "Name"
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr "Nume"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr "Rețea"
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr "Rețea"
|
||||
msgid "New Password"
|
||||
msgstr "Parola Nouă"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr "Nu s-a găsit niciun rezultat"
|
||||
|
||||
@ -993,7 +993,7 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr "Opțiuni"
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:46
|
||||
#: apps/client/src/pages/auth/layout.tsx:47
|
||||
msgctxt "The user can either login with email/password, or continue with GitHub or Google."
|
||||
msgid "or continue with"
|
||||
msgstr "sau continuați cu"
|
||||
@ -1030,7 +1030,7 @@ msgstr "Note personale pentru fiecare CV"
|
||||
msgid "Phone"
|
||||
msgstr "Telefon"
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:75
|
||||
#: apps/client/src/pages/auth/layout.tsx:76
|
||||
msgid "Photograph by Patrick Tomasso"
|
||||
msgstr "Fotografie de Patrick Tomasso"
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr "Poziție"
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1194,7 +1194,7 @@ msgstr "Bogat în caracteristici, nu în prețuri."
|
||||
msgid "Rounded"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
|
||||
@ -1222,7 +1222,7 @@ msgstr "Căutați un subset de fonturi"
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Căutați o variantă de font"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr "Căutați o limbă"
|
||||
|
||||
@ -1370,10 +1370,10 @@ msgstr "Stocat"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
@ -1435,7 +1435,7 @@ msgstr "Temă"
|
||||
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."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:127
|
||||
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."
|
||||
|
||||
@ -1531,7 +1531,7 @@ msgstr "Deblocarea unui CV vă va permite să-i faceți din nou modificări."
|
||||
msgid "Unverified"
|
||||
msgstr "Neverificat"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||
msgid "Update an existing item"
|
||||
msgstr "Actualizarea unui element existent"
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr "Nume utilizator"
|
||||
@ -1613,11 +1613,11 @@ msgstr "Vă verificăm adresa de e-mail numai pentru a ne asigura că vă putem
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
@ -1629,10 +1629,10 @@ msgstr "Website"
|
||||
msgid "What's new in the latest version"
|
||||
msgstr "Ce este nou în cea mai recentă versiune"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:112
|
||||
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."
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
1691
apps/client/src/locales/sq-AL/messages.po
Normal file
1691
apps/client/src/locales/sq-AL/messages.po
Normal file
File diff suppressed because it is too large
Load Diff
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: sr\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-11-26 14:53\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:30\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Serbian (Cyrillic)\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
@ -150,7 +150,7 @@ msgstr ""
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:125
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr ""
|
||||
|
||||
@ -235,7 +235,7 @@ msgstr ""
|
||||
msgid "By the community, for the community."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
|
||||
@ -318,7 +318,7 @@ msgstr ""
|
||||
msgid "Copy to Clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
@ -328,7 +328,7 @@ msgstr ""
|
||||
msgid "Create a new account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
||||
msgid "Create a new item"
|
||||
msgstr ""
|
||||
|
||||
@ -377,15 +377,15 @@ msgstr ""
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:85
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||
msgid "Date or Date Range"
|
||||
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:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:157
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:134
|
||||
@ -398,11 +398,11 @@ msgstr ""
|
||||
msgid "Delete Account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:71
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
@ -462,7 +462,7 @@ msgstr ""
|
||||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:170
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:245
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:102
|
||||
@ -470,7 +470,7 @@ msgstr ""
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
msgid "Duplicate an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:90
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
|
||||
msgid "Hidden"
|
||||
msgstr ""
|
||||
@ -686,7 +686,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>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -788,10 +788,10 @@ msgstr ""
|
||||
msgid "JSON"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
@ -823,7 +823,7 @@ msgid "Letter"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
||||
msgid "Level"
|
||||
msgstr ""
|
||||
|
||||
@ -852,7 +852,7 @@ msgstr ""
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83
|
||||
@ -900,7 +900,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||
msgid "March 2023 - Present"
|
||||
msgstr ""
|
||||
@ -914,13 +914,13 @@ msgid "MIT License"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:106
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:57
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:43
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||
msgid "Name"
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -993,7 +993,7 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:46
|
||||
#: apps/client/src/pages/auth/layout.tsx:47
|
||||
msgctxt "The user can either login with email/password, or continue with GitHub or Google."
|
||||
msgid "or continue with"
|
||||
msgstr ""
|
||||
@ -1030,7 +1030,7 @@ msgstr ""
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:75
|
||||
#: apps/client/src/pages/auth/layout.tsx:76
|
||||
msgid "Photograph by Patrick Tomasso"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1194,7 +1194,7 @@ msgstr ""
|
||||
msgid "Rounded"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1370,10 +1370,10 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
@ -1435,7 +1435,7 @@ msgstr ""
|
||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:127
|
||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||
msgstr ""
|
||||
|
||||
@ -1531,7 +1531,7 @@ msgstr ""
|
||||
msgid "Unverified"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||
msgid "Update an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1613,11 +1613,11 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
@ -1629,10 +1629,10 @@ msgstr ""
|
||||
msgid "What's new in the latest version"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:112
|
||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: sv\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-01-11 00:08\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:30\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Swedish\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -150,7 +150,7 @@ msgstr "Alla som har den här länken kan se och ladda ner CV:t. Dela det på di
|
||||
msgid "API Key"
|
||||
msgstr "API-nyckel"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:125
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr "Är du säker på att du vill ta bort detta objekt?"
|
||||
|
||||
@ -235,7 +235,7 @@ msgstr "Byggt med"
|
||||
msgid "By the community, for the community."
|
||||
msgstr "Av gemenskapen, för gemenskapen."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
|
||||
@ -318,7 +318,7 @@ msgstr "Kopiera länken till CV:t"
|
||||
msgid "Copy to Clipboard"
|
||||
msgstr "Kopiera till urklipp"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||
msgid "Create"
|
||||
msgstr "Skapa"
|
||||
@ -328,7 +328,7 @@ msgstr "Skapa"
|
||||
msgid "Create a new account"
|
||||
msgstr "Skapa ett nytt konto"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
||||
msgid "Create a new item"
|
||||
msgstr "Skapa ett nytt objekt"
|
||||
|
||||
@ -377,15 +377,15 @@ msgstr "Mörk"
|
||||
msgid "Date"
|
||||
msgstr "Datum"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:85
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||
msgid "Date or Date Range"
|
||||
msgstr "Datum eller datumintervall"
|
||||
|
||||
#: 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:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:157
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:134
|
||||
@ -398,11 +398,11 @@ msgstr "Radera"
|
||||
msgid "Delete Account"
|
||||
msgstr "Radera konto"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:71
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
||||
msgid "Description"
|
||||
msgstr "Beskrivning"
|
||||
|
||||
@ -462,7 +462,7 @@ msgstr "Ladda ner PDF"
|
||||
msgid "Downloads"
|
||||
msgstr "Nedladdningar"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:170
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:245
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:102
|
||||
@ -470,7 +470,7 @@ msgstr "Nedladdningar"
|
||||
msgid "Duplicate"
|
||||
msgstr "Duplicera"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
msgid "Duplicate an existing item"
|
||||
msgstr "Duplicera ett befintligt objekt"
|
||||
|
||||
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr "Här kan du uppdatera din profil för att anpassa och personifiera din upplevelse."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:90
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
|
||||
msgid "Hidden"
|
||||
msgstr "Dolt"
|
||||
@ -686,7 +686,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>."
|
||||
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:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr "Ikon"
|
||||
|
||||
@ -788,10 +788,10 @@ msgstr "sven.svensson@example.com"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
|
||||
msgid "Keywords"
|
||||
msgstr "Nyckelord"
|
||||
|
||||
@ -823,7 +823,7 @@ msgid "Letter"
|
||||
msgstr "Brev"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
||||
msgid "Level"
|
||||
msgstr "Nivå"
|
||||
|
||||
@ -852,7 +852,7 @@ msgstr "LinkedIn, JSON CV, osv."
|
||||
msgid "List"
|
||||
msgstr "Lista"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83
|
||||
@ -900,7 +900,7 @@ msgstr "mars 2023"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "mars 2023 - nutid"
|
||||
@ -914,13 +914,13 @@ msgid "MIT License"
|
||||
msgstr "MIT-licens"
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:106
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:57
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:43
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||
msgid "Name"
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr "Namn"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr "Nätverk"
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr "Nätverk"
|
||||
msgid "New Password"
|
||||
msgstr "Nytt lösenord"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr "Inga resultat hittades"
|
||||
|
||||
@ -993,7 +993,7 @@ msgstr "OpenAI-integration"
|
||||
msgid "Options"
|
||||
msgstr "Inställningar"
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:46
|
||||
#: apps/client/src/pages/auth/layout.tsx:47
|
||||
msgctxt "The user can either login with email/password, or continue with GitHub or Google."
|
||||
msgid "or continue with"
|
||||
msgstr "eller fortsätta med"
|
||||
@ -1030,7 +1030,7 @@ msgstr "Personliga anteckningar för varje CV"
|
||||
msgid "Phone"
|
||||
msgstr "Telefon"
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:75
|
||||
#: apps/client/src/pages/auth/layout.tsx:76
|
||||
msgid "Photograph by Patrick Tomasso"
|
||||
msgstr "Foto av Patrick Tomasso"
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr "Position"
|
||||
msgid "Powered by"
|
||||
msgstr "Drivs av"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr "Drivs av <0>Simple Icons</0>"
|
||||
|
||||
@ -1194,7 +1194,7 @@ msgstr "Rik på funktioner, inte på priser."
|
||||
msgid "Rounded"
|
||||
msgstr "Avrundad"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
|
||||
@ -1222,7 +1222,7 @@ msgstr "Sök efter en typsnittsundergrupp"
|
||||
msgid "Search for a font variant"
|
||||
msgstr "Sök efter en typsnittsvariant"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr "Sök efter ett språk"
|
||||
|
||||
@ -1370,10 +1370,10 @@ msgstr "Lagrad"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
@ -1435,7 +1435,7 @@ msgstr "Tema"
|
||||
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."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:127
|
||||
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."
|
||||
|
||||
@ -1531,7 +1531,7 @@ msgstr "Genom att låsa upp ett CV kan du göra ändringar i det igen."
|
||||
msgid "Unverified"
|
||||
msgstr "Ej verifierat"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||
msgid "Update an existing item"
|
||||
msgstr "Uppdatera ett befintligt objekt"
|
||||
|
||||
@ -1561,7 +1561,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."
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr "Användarnamn"
|
||||
@ -1613,11 +1613,11 @@ msgstr "Vi verifierar din e-postadress endast för att säkerställa att vi kan
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
@ -1629,10 +1629,10 @@ msgstr "Webbplats"
|
||||
msgid "What's new in the latest version"
|
||||
msgstr "Vad är nytt i den senaste versionen"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:112
|
||||
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."
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: ta\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-11-26 14:53\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:30\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Tamil\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -150,7 +150,7 @@ msgstr ""
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:125
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr ""
|
||||
|
||||
@ -235,7 +235,7 @@ msgstr ""
|
||||
msgid "By the community, for the community."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
|
||||
@ -318,7 +318,7 @@ msgstr ""
|
||||
msgid "Copy to Clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
@ -328,7 +328,7 @@ msgstr ""
|
||||
msgid "Create a new account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
||||
msgid "Create a new item"
|
||||
msgstr ""
|
||||
|
||||
@ -377,15 +377,15 @@ msgstr ""
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:85
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||
msgid "Date or Date Range"
|
||||
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:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:157
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:134
|
||||
@ -398,11 +398,11 @@ msgstr ""
|
||||
msgid "Delete Account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:71
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
@ -462,7 +462,7 @@ msgstr ""
|
||||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:170
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:245
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:102
|
||||
@ -470,7 +470,7 @@ msgstr ""
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
msgid "Duplicate an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:90
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
|
||||
msgid "Hidden"
|
||||
msgstr ""
|
||||
@ -686,7 +686,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>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -788,10 +788,10 @@ msgstr ""
|
||||
msgid "JSON"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
@ -823,7 +823,7 @@ msgid "Letter"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
||||
msgid "Level"
|
||||
msgstr ""
|
||||
|
||||
@ -852,7 +852,7 @@ msgstr ""
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83
|
||||
@ -900,7 +900,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||
msgid "March 2023 - Present"
|
||||
msgstr ""
|
||||
@ -914,13 +914,13 @@ msgid "MIT License"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:106
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:57
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:43
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||
msgid "Name"
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -993,7 +993,7 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:46
|
||||
#: apps/client/src/pages/auth/layout.tsx:47
|
||||
msgctxt "The user can either login with email/password, or continue with GitHub or Google."
|
||||
msgid "or continue with"
|
||||
msgstr ""
|
||||
@ -1030,7 +1030,7 @@ msgstr ""
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:75
|
||||
#: apps/client/src/pages/auth/layout.tsx:76
|
||||
msgid "Photograph by Patrick Tomasso"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1194,7 +1194,7 @@ msgstr ""
|
||||
msgid "Rounded"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1370,10 +1370,10 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
@ -1435,7 +1435,7 @@ msgstr ""
|
||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:127
|
||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||
msgstr ""
|
||||
|
||||
@ -1531,7 +1531,7 @@ msgstr ""
|
||||
msgid "Unverified"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||
msgid "Update an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1613,11 +1613,11 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
@ -1629,10 +1629,10 @@ msgstr ""
|
||||
msgid "What's new in the latest version"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:112
|
||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: te\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-11-26 14:53\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:30\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Telugu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
@ -150,7 +150,7 @@ msgstr ""
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:125
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr ""
|
||||
|
||||
@ -235,7 +235,7 @@ msgstr ""
|
||||
msgid "By the community, for the community."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
|
||||
@ -318,7 +318,7 @@ msgstr ""
|
||||
msgid "Copy to Clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
@ -328,7 +328,7 @@ msgstr ""
|
||||
msgid "Create a new account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
||||
msgid "Create a new item"
|
||||
msgstr ""
|
||||
|
||||
@ -377,15 +377,15 @@ msgstr ""
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:85
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||
msgid "Date or Date Range"
|
||||
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:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:157
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:134
|
||||
@ -398,11 +398,11 @@ msgstr ""
|
||||
msgid "Delete Account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:71
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
@ -462,7 +462,7 @@ msgstr ""
|
||||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:170
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:245
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:102
|
||||
@ -470,7 +470,7 @@ msgstr ""
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
msgid "Duplicate an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:90
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
|
||||
msgid "Hidden"
|
||||
msgstr ""
|
||||
@ -686,7 +686,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>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -788,10 +788,10 @@ msgstr ""
|
||||
msgid "JSON"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
@ -823,7 +823,7 @@ msgid "Letter"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
||||
msgid "Level"
|
||||
msgstr ""
|
||||
|
||||
@ -852,7 +852,7 @@ msgstr ""
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83
|
||||
@ -900,7 +900,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||
msgid "March 2023 - Present"
|
||||
msgstr ""
|
||||
@ -914,13 +914,13 @@ msgid "MIT License"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:106
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:57
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:43
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||
msgid "Name"
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -993,7 +993,7 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:46
|
||||
#: apps/client/src/pages/auth/layout.tsx:47
|
||||
msgctxt "The user can either login with email/password, or continue with GitHub or Google."
|
||||
msgid "or continue with"
|
||||
msgstr ""
|
||||
@ -1030,7 +1030,7 @@ msgstr ""
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:75
|
||||
#: apps/client/src/pages/auth/layout.tsx:76
|
||||
msgid "Photograph by Patrick Tomasso"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1194,7 +1194,7 @@ msgstr ""
|
||||
msgid "Rounded"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1370,10 +1370,10 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
@ -1435,7 +1435,7 @@ msgstr ""
|
||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:127
|
||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||
msgstr ""
|
||||
|
||||
@ -1531,7 +1531,7 @@ msgstr ""
|
||||
msgid "Unverified"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||
msgid "Update an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1613,11 +1613,11 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
@ -1629,10 +1629,10 @@ msgstr ""
|
||||
msgid "What's new in the latest version"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:112
|
||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: th\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-11-26 14:53\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:30\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Thai\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
@ -150,7 +150,7 @@ msgstr ""
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:125
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr ""
|
||||
|
||||
@ -235,7 +235,7 @@ msgstr ""
|
||||
msgid "By the community, for the community."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
|
||||
@ -318,7 +318,7 @@ msgstr ""
|
||||
msgid "Copy to Clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
@ -328,7 +328,7 @@ msgstr ""
|
||||
msgid "Create a new account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
||||
msgid "Create a new item"
|
||||
msgstr ""
|
||||
|
||||
@ -377,15 +377,15 @@ msgstr ""
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:85
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||
msgid "Date or Date Range"
|
||||
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:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:157
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:134
|
||||
@ -398,11 +398,11 @@ msgstr ""
|
||||
msgid "Delete Account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:71
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
@ -462,7 +462,7 @@ msgstr ""
|
||||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:170
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:245
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:102
|
||||
@ -470,7 +470,7 @@ msgstr ""
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
msgid "Duplicate an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:90
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
|
||||
msgid "Hidden"
|
||||
msgstr ""
|
||||
@ -686,7 +686,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>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -788,10 +788,10 @@ msgstr ""
|
||||
msgid "JSON"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
@ -823,7 +823,7 @@ msgid "Letter"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
||||
msgid "Level"
|
||||
msgstr ""
|
||||
|
||||
@ -852,7 +852,7 @@ msgstr ""
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83
|
||||
@ -900,7 +900,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||
msgid "March 2023 - Present"
|
||||
msgstr ""
|
||||
@ -914,13 +914,13 @@ msgid "MIT License"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:106
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:57
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:43
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||
msgid "Name"
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -993,7 +993,7 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:46
|
||||
#: apps/client/src/pages/auth/layout.tsx:47
|
||||
msgctxt "The user can either login with email/password, or continue with GitHub or Google."
|
||||
msgid "or continue with"
|
||||
msgstr ""
|
||||
@ -1030,7 +1030,7 @@ msgstr ""
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:75
|
||||
#: apps/client/src/pages/auth/layout.tsx:76
|
||||
msgid "Photograph by Patrick Tomasso"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1194,7 +1194,7 @@ msgstr ""
|
||||
msgid "Rounded"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1370,10 +1370,10 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
@ -1435,7 +1435,7 @@ msgstr ""
|
||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:127
|
||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||
msgstr ""
|
||||
|
||||
@ -1531,7 +1531,7 @@ msgstr ""
|
||||
msgid "Unverified"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||
msgid "Update an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1613,11 +1613,11 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
@ -1629,10 +1629,10 @@ msgstr ""
|
||||
msgid "What's new in the latest version"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:112
|
||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||
msgstr ""
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: uk\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-11-26 14:53\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:30\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Ukrainian\n"
|
||||
"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n"
|
||||
@ -20,11 +20,11 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:169
|
||||
msgid "You have enabled two-factor authentication successfully."
|
||||
msgstr ""
|
||||
msgstr "Ви успішно ввімкнули двофакторну автентифікацію."
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:57
|
||||
msgid "{templatesCount} resume templates to choose from"
|
||||
msgstr ""
|
||||
msgstr "{templatesCount} шаблонів резюме на вибір"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:114
|
||||
msgid "{value, plural, one {Column} other {Columns}}"
|
||||
@ -87,7 +87,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43
|
||||
msgid "A4"
|
||||
msgstr ""
|
||||
msgstr "A4"
|
||||
|
||||
#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json.
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:270
|
||||
@ -96,7 +96,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
msgstr "Обліковий запис"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:124
|
||||
msgid "Add a custom field"
|
||||
@ -106,11 +106,11 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx:147
|
||||
msgctxt "For example, add a new work experience, or add a new profile."
|
||||
msgid "Add a new item"
|
||||
msgstr ""
|
||||
msgstr "Додайте новий елемент"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:68
|
||||
msgid "Add a new item"
|
||||
msgstr ""
|
||||
msgstr "Додайте новий елемент"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:79
|
||||
#: apps/client/src/pages/builder/sidebars/left/index.tsx:196
|
||||
@ -119,11 +119,11 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:269
|
||||
msgid "Add New Page"
|
||||
msgstr ""
|
||||
msgstr "Додати нову сторінку"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:79
|
||||
msgid "AI"
|
||||
msgstr ""
|
||||
msgstr "ШІ"
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:74
|
||||
msgid "Already have an account?"
|
||||
@ -135,7 +135,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:135
|
||||
msgid "and many more..."
|
||||
msgstr ""
|
||||
msgstr "та багато іншого..."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:57
|
||||
msgid "Anyone with the link can view and download the resume."
|
||||
@ -148,9 +148,9 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:83
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
msgstr "Ключ API"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:125
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr ""
|
||||
|
||||
@ -168,11 +168,11 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39
|
||||
msgid "Are you sure you want to unlock this resume?"
|
||||
msgstr ""
|
||||
msgstr "Ви впевнені, що хочете розблокувати це резюме?"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94
|
||||
msgid "Are you sure?"
|
||||
msgstr ""
|
||||
msgstr "Ви впевнені?"
|
||||
|
||||
#. For example, Computer Science or Business Administration
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73
|
||||
@ -195,15 +195,15 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:94
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:236
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
msgstr "Назад"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73
|
||||
msgid "Background Color"
|
||||
msgstr ""
|
||||
msgstr "Колір фону"
|
||||
|
||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:75
|
||||
msgid "Backup Code"
|
||||
msgstr ""
|
||||
msgstr "Резервний код"
|
||||
|
||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:80
|
||||
msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters."
|
||||
@ -233,14 +233,14 @@ msgstr ""
|
||||
#: apps/client/src/components/copyright.tsx:27
|
||||
#: apps/client/src/pages/home/sections/contributors/index.tsx:20
|
||||
msgid "By the community, for the community."
|
||||
msgstr ""
|
||||
msgstr "Спільнотою, для спільноти."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
msgstr "Скасувати"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:103
|
||||
#: apps/client/src/components/ai-actions.tsx:106
|
||||
@ -254,7 +254,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:99
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121
|
||||
msgid "Change Password"
|
||||
msgstr ""
|
||||
msgstr "Змінити пароль"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:97
|
||||
msgid "Change Tone"
|
||||
@ -274,23 +274,23 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:242
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
msgstr "Закрити"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
msgstr "Код"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:50
|
||||
msgid "Code must be exactly 6 digits long."
|
||||
msgstr ""
|
||||
msgstr "Код має містити рівно 6 цифр."
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:108
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
msgstr "Стовпці"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
msgstr "Компанія"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:115
|
||||
#: apps/client/src/components/ai-actions.tsx:118
|
||||
@ -299,61 +299,61 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98
|
||||
msgid "Confirm New Password"
|
||||
msgstr ""
|
||||
msgstr "Підтвердити новий пароль"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:232
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
msgstr "Продовжити"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:94
|
||||
msgid "Copy"
|
||||
msgstr ""
|
||||
msgstr "Скопіювати"
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:132
|
||||
msgid "Copy Link to Resume"
|
||||
msgstr ""
|
||||
msgstr "Скопіювати посилання до резюме"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78
|
||||
msgid "Copy to Clipboard"
|
||||
msgstr ""
|
||||
msgstr "Копіювати до буфера обміну"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
msgstr "Створити"
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:67
|
||||
#: apps/client/src/pages/auth/register/page.tsx:72
|
||||
msgid "Create a new account"
|
||||
msgstr ""
|
||||
msgstr "Створити новий обліковий запис"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
||||
msgid "Create a new item"
|
||||
msgstr ""
|
||||
msgstr "Створити новий елемент"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:177
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19
|
||||
msgid "Create a new resume"
|
||||
msgstr ""
|
||||
msgstr "Створіть нове резюме"
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:65
|
||||
msgctxt "This is a link to create a new account"
|
||||
msgid "Create one now"
|
||||
msgstr ""
|
||||
msgstr "Створити зараз"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:258
|
||||
msgid "Create Sample Resume"
|
||||
msgstr ""
|
||||
msgstr "Створити зразок резюме"
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:62
|
||||
msgid "Custom resume sections"
|
||||
msgstr ""
|
||||
msgstr "Користувацькі розділи резюме"
|
||||
|
||||
#: apps/client/src/stores/resume.ts:45
|
||||
msgid "Custom Section"
|
||||
msgstr ""
|
||||
msgstr "Користувацький розділ"
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:60
|
||||
msgid "Customisable colour palettes"
|
||||
@ -365,46 +365,46 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62
|
||||
msgid "Danger Zone"
|
||||
msgstr ""
|
||||
msgstr "Небезпечна зона"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:82
|
||||
msgid "Dark"
|
||||
msgstr ""
|
||||
msgstr "Темний"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
msgstr "Дата"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:85
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||
msgid "Date or Date Range"
|
||||
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:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:157
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:198
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
msgstr "Видалити"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94
|
||||
msgid "Delete Account"
|
||||
msgstr ""
|
||||
msgstr "Видалити обліковий запис"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:71
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
msgstr "Опис"
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:58
|
||||
msgid "Design single/multi page resumes"
|
||||
@ -412,7 +412,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
msgstr "Вимкнути"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155
|
||||
msgid "Disable 2FA"
|
||||
@ -427,11 +427,11 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
msgstr "Документація"
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:62
|
||||
msgid "Don't have an account?"
|
||||
msgstr ""
|
||||
msgstr "Немає облікового запису?"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88
|
||||
msgid "Don't know where to begin? Hit the docs!"
|
||||
@ -456,21 +456,21 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:144
|
||||
#: apps/client/src/pages/public/page.tsx:103
|
||||
msgid "Download PDF"
|
||||
msgstr ""
|
||||
msgstr "Завантажити в PDF"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58
|
||||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:170
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:245
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:102
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:182
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
msgstr "Дублювати"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
msgid "Duplicate an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -480,7 +480,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:90
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
msgstr "Редагувати"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:174
|
||||
msgid "Effects"
|
||||
@ -492,15 +492,15 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
msgstr "Пошта"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159
|
||||
msgid "Enable 2FA"
|
||||
msgstr ""
|
||||
msgstr "Увімкнути 2FA"
|
||||
|
||||
#: apps/client/src/pages/auth/reset-password/page.tsx:67
|
||||
msgid "Enter a new password below, and make sure it's secure."
|
||||
msgstr ""
|
||||
msgstr "Введіть новий пароль нижче та переконайтеся, що він безпечний."
|
||||
|
||||
#: apps/client/src/pages/auth/backup-otp/page.tsx:59
|
||||
msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication."
|
||||
@ -520,7 +520,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283
|
||||
msgid "Errors"
|
||||
msgstr ""
|
||||
msgstr "Помилки"
|
||||
|
||||
#: apps/client/src/pages/home/sections/support/index.tsx:78
|
||||
msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!"
|
||||
@ -545,7 +545,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/hero/index.tsx:40
|
||||
msgid "Finally,"
|
||||
msgstr ""
|
||||
msgstr "Нарешті,"
|
||||
|
||||
#: apps/client/src/components/ai-actions.tsx:90
|
||||
msgid "Fix Spelling & Grammar"
|
||||
@ -557,7 +557,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135
|
||||
msgid "Font Size"
|
||||
msgstr ""
|
||||
msgstr "Розмір шрифту"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109
|
||||
msgid "Font Subset"
|
||||
@ -586,7 +586,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40
|
||||
msgid "Format"
|
||||
msgstr ""
|
||||
msgstr "Формат"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49
|
||||
msgid "Found a bug, or have an idea for a new feature?"
|
||||
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:90
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
|
||||
msgid "Hidden"
|
||||
msgstr ""
|
||||
@ -686,7 +686,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>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -788,10 +788,10 @@ msgstr ""
|
||||
msgid "JSON"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
@ -823,7 +823,7 @@ msgid "Letter"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
||||
msgid "Level"
|
||||
msgstr ""
|
||||
|
||||
@ -852,7 +852,7 @@ msgstr ""
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83
|
||||
@ -900,7 +900,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||
msgid "March 2023 - Present"
|
||||
msgstr ""
|
||||
@ -914,13 +914,13 @@ msgid "MIT License"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:106
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:57
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:43
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||
msgid "Name"
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -993,7 +993,7 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:46
|
||||
#: apps/client/src/pages/auth/layout.tsx:47
|
||||
msgctxt "The user can either login with email/password, or continue with GitHub or Google."
|
||||
msgid "or continue with"
|
||||
msgstr ""
|
||||
@ -1030,7 +1030,7 @@ msgstr ""
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:75
|
||||
#: apps/client/src/pages/auth/layout.tsx:76
|
||||
msgid "Photograph by Patrick Tomasso"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1194,7 +1194,7 @@ msgstr ""
|
||||
msgid "Rounded"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1370,10 +1370,10 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
@ -1435,7 +1435,7 @@ msgstr ""
|
||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:127
|
||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||
msgstr ""
|
||||
|
||||
@ -1462,11 +1462,11 @@ msgstr ""
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39
|
||||
msgctxt "Name of the Award"
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
msgstr "Назва"
|
||||
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:195
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
msgstr "Назва"
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:106
|
||||
msgid "Toggle Page Break Line"
|
||||
@ -1531,7 +1531,7 @@ msgstr ""
|
||||
msgid "Unverified"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||
msgid "Update an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1597,15 +1597,15 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/home/sections/hero/index.tsx:26
|
||||
msgid "Version 4"
|
||||
msgstr ""
|
||||
msgstr "Версія 4"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51
|
||||
msgid "Views"
|
||||
msgstr ""
|
||||
msgstr "Перегляди"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:86
|
||||
msgid "Visible"
|
||||
msgstr ""
|
||||
msgstr "Видимий"
|
||||
|
||||
#: 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."
|
||||
@ -1613,32 +1613,32 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
msgstr "Вебсторінка"
|
||||
|
||||
#: apps/client/src/pages/home/sections/hero/index.tsx:34
|
||||
msgid "What's new in the latest version"
|
||||
msgstr ""
|
||||
msgstr "Що нового в останній версії"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:112
|
||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:88
|
||||
msgid "You can also enter your username."
|
||||
msgstr ""
|
||||
msgstr "Також ви можете ввести своє ім'я користувача."
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54
|
||||
msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume."
|
||||
@ -1659,7 +1659,7 @@ msgstr ""
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:49
|
||||
#: apps/client/src/pages/auth/forgot-password/page.tsx:54
|
||||
msgid "You've got mail!"
|
||||
msgstr ""
|
||||
msgstr "Ви отримали листа!"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52
|
||||
msgid "Your account and all your data has been deleted successfully. Goodbye!"
|
||||
@ -1679,13 +1679,13 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59
|
||||
msgid "Your password has been updated successfully."
|
||||
msgstr ""
|
||||
msgstr "Ваш пароль успішно оновлено."
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:80
|
||||
msgid "Zoom In"
|
||||
msgstr ""
|
||||
msgstr "Збільшити"
|
||||
|
||||
#: apps/client/src/pages/builder/_components/toolbar.tsx:86
|
||||
msgid "Zoom Out"
|
||||
msgstr ""
|
||||
msgstr "Зменшити"
|
||||
|
||||
|
||||
1691
apps/client/src/locales/uz-UZ/messages.po
Normal file
1691
apps/client/src/locales/uz-UZ/messages.po
Normal file
File diff suppressed because it is too large
Load Diff
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: vi\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-01-04 00:08\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:30\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Vietnamese\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
@ -24,7 +24,7 @@ msgstr "Bạn đã kích hoạt xác thực hai lớp thành công."
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:57
|
||||
msgid "{templatesCount} resume templates to choose from"
|
||||
msgstr ""
|
||||
msgstr "{templatesCount} mẫu sơ yếu lý lịch để lựa chọn"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:114
|
||||
msgid "{value, plural, one {Column} other {Columns}}"
|
||||
@ -87,16 +87,16 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:43
|
||||
msgid "A4"
|
||||
msgstr ""
|
||||
msgstr "Khổ giấy A4"
|
||||
|
||||
#. Helper text to let the user know what filetypes are accepted. {accept} can be .pdf or .json.
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:270
|
||||
msgid "Accepts only {accept} files"
|
||||
msgstr ""
|
||||
msgstr "Chỉ chấp nhận tệp {accept}"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:104
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
msgstr "Tài khoản"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:124
|
||||
msgid "Add a custom field"
|
||||
@ -150,7 +150,7 @@ msgstr ""
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:125
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr ""
|
||||
|
||||
@ -235,7 +235,7 @@ msgstr ""
|
||||
msgid "By the community, for the community."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
|
||||
@ -318,7 +318,7 @@ msgstr ""
|
||||
msgid "Copy to Clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
@ -328,7 +328,7 @@ msgstr ""
|
||||
msgid "Create a new account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
||||
msgid "Create a new item"
|
||||
msgstr ""
|
||||
|
||||
@ -377,15 +377,15 @@ msgstr ""
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:85
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||
msgid "Date or Date Range"
|
||||
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:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:157
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:134
|
||||
@ -398,11 +398,11 @@ msgstr ""
|
||||
msgid "Delete Account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:71
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
@ -462,7 +462,7 @@ msgstr ""
|
||||
msgid "Downloads"
|
||||
msgstr "Tải về"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:170
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:245
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:102
|
||||
@ -470,7 +470,7 @@ msgstr "Tải về"
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
msgid "Duplicate an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:90
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
|
||||
msgid "Hidden"
|
||||
msgstr ""
|
||||
@ -686,7 +686,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>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -788,10 +788,10 @@ msgstr ""
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
|
||||
msgid "Keywords"
|
||||
msgstr "Từ khóa"
|
||||
|
||||
@ -823,7 +823,7 @@ msgid "Letter"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
||||
msgid "Level"
|
||||
msgstr ""
|
||||
|
||||
@ -852,7 +852,7 @@ msgstr ""
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83
|
||||
@ -900,7 +900,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||
msgid "March 2023 - Present"
|
||||
msgstr ""
|
||||
@ -914,13 +914,13 @@ msgid "MIT License"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:106
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:57
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:43
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||
msgid "Name"
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr "Tên"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -993,7 +993,7 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:46
|
||||
#: apps/client/src/pages/auth/layout.tsx:47
|
||||
msgctxt "The user can either login with email/password, or continue with GitHub or Google."
|
||||
msgid "or continue with"
|
||||
msgstr ""
|
||||
@ -1030,7 +1030,7 @@ msgstr ""
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:75
|
||||
#: apps/client/src/pages/auth/layout.tsx:76
|
||||
msgid "Photograph by Patrick Tomasso"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1194,7 +1194,7 @@ msgstr ""
|
||||
msgid "Rounded"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1370,10 +1370,10 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
@ -1435,7 +1435,7 @@ msgstr ""
|
||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:127
|
||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||
msgstr ""
|
||||
|
||||
@ -1531,7 +1531,7 @@ msgstr ""
|
||||
msgid "Unverified"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||
msgid "Update an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr "Tên Người Dùng"
|
||||
@ -1613,11 +1613,11 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
@ -1629,10 +1629,10 @@ msgstr ""
|
||||
msgid "What's new in the latest version"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:112
|
||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: zh\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-01-06 00:08\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Chinese Simplified\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
@ -20,7 +20,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:169
|
||||
msgid "You have enabled two-factor authentication successfully."
|
||||
msgstr "您已成功启用双因素认证。"
|
||||
msgstr "您已成功启用双重身份认证。"
|
||||
|
||||
#: apps/client/src/pages/home/sections/features/index.tsx:57
|
||||
msgid "{templatesCount} resume templates to choose from"
|
||||
@ -48,7 +48,7 @@ msgstr "<0>社区花费了大量时间编写 Reactive Resume 的文档,我相
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146
|
||||
msgid "<0>Two-factor authentication is currently disabled.</0> You can enable it by adding an authenticator app to your account."
|
||||
msgstr "<0>目前双因素身份验证已禁用。</0>您可以将身份验证器应用程序添加到您的账户来启用。"
|
||||
msgstr "<0>现已禁用双重身份验证。</0>您可以将身份验证程序添加到您的账户来启用。"
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139
|
||||
msgid "<0>Two-factor authentication is enabled.</0> You will be asked to enter a code every time you sign in."
|
||||
@ -150,7 +150,7 @@ msgstr "任何人都可以通过此链接查看或下载简历。您可以在个
|
||||
msgid "API Key"
|
||||
msgstr "API Key"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:125
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr "您确定要删除此项目吗?"
|
||||
|
||||
@ -235,7 +235,7 @@ msgstr "构建于"
|
||||
msgid "By the community, for the community."
|
||||
msgstr "来自社区,服务社区。"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
|
||||
@ -318,7 +318,7 @@ msgstr "复制链接到简历"
|
||||
msgid "Copy to Clipboard"
|
||||
msgstr "复制到剪贴板"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||
msgid "Create"
|
||||
msgstr "创建"
|
||||
@ -328,7 +328,7 @@ msgstr "创建"
|
||||
msgid "Create a new account"
|
||||
msgstr "创建账户"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
||||
msgid "Create a new item"
|
||||
msgstr "创建新条目"
|
||||
|
||||
@ -377,15 +377,15 @@ msgstr "深色"
|
||||
msgid "Date"
|
||||
msgstr "日期"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:85
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||
msgid "Date or Date Range"
|
||||
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:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:157
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:134
|
||||
@ -398,11 +398,11 @@ msgstr "删除"
|
||||
msgid "Delete Account"
|
||||
msgstr "删除账户"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:71
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
||||
msgid "Description"
|
||||
msgstr "描述"
|
||||
|
||||
@ -462,7 +462,7 @@ msgstr "下载 PDF"
|
||||
msgid "Downloads"
|
||||
msgstr "下载"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:170
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:245
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:102
|
||||
@ -470,7 +470,7 @@ msgstr "下载"
|
||||
msgid "Duplicate"
|
||||
msgstr "复制"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
msgid "Duplicate an existing item"
|
||||
msgstr "复制现有项目"
|
||||
|
||||
@ -573,7 +573,7 @@ msgstr "例如,您可以在此处注明您发送给的公司或者职位描述
|
||||
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107
|
||||
msgid "Forget"
|
||||
msgstr "你好"
|
||||
msgstr "遗弃"
|
||||
|
||||
#: apps/client/src/pages/auth/login/page.tsx:120
|
||||
msgid "Forgot Password?"
|
||||
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr "在这里,您可以更新个人资料,定制个性化的体验。"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:90
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
|
||||
msgid "Hidden"
|
||||
msgstr "隐藏"
|
||||
@ -686,7 +686,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>."
|
||||
msgstr "我们十分欢迎用户对于 Reactive Resume 的反馈和支持。这是我们收到的一些信息,如果您有任何反馈,请随时发送邮件至 <0>{email}</0>。"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr "图标"
|
||||
|
||||
@ -788,10 +788,10 @@ msgstr "zhangsan@example.com"
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
|
||||
msgid "Keywords"
|
||||
msgstr "关键词"
|
||||
|
||||
@ -823,7 +823,7 @@ msgid "Letter"
|
||||
msgstr "信件"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
||||
msgid "Level"
|
||||
msgstr "等级"
|
||||
|
||||
@ -852,7 +852,7 @@ msgstr "LinkedIn、JSON 简历等"
|
||||
msgid "List"
|
||||
msgstr "列表"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83
|
||||
@ -900,7 +900,7 @@ msgstr "2023 年 3 月"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||
msgid "March 2023 - Present"
|
||||
msgstr "2023 年 3 月至今"
|
||||
@ -914,13 +914,13 @@ msgid "MIT License"
|
||||
msgstr "MIT 许可证"
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:106
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:57
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:43
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||
msgid "Name"
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr "名称"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr "网络"
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr "网络"
|
||||
msgid "New Password"
|
||||
msgstr "新密码"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr "没找到结果"
|
||||
|
||||
@ -993,7 +993,7 @@ msgstr "集成 OpenAI"
|
||||
msgid "Options"
|
||||
msgstr "设置"
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:46
|
||||
#: apps/client/src/pages/auth/layout.tsx:47
|
||||
msgctxt "The user can either login with email/password, or continue with GitHub or Google."
|
||||
msgid "or continue with"
|
||||
msgstr "通过以下方式继续"
|
||||
@ -1030,7 +1030,7 @@ msgstr "每份简历的个人注释"
|
||||
msgid "Phone"
|
||||
msgstr "电话"
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:75
|
||||
#: apps/client/src/pages/auth/layout.tsx:76
|
||||
msgid "Photograph by Patrick Tomasso"
|
||||
msgstr "摄影:帕特里克-托马索"
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr "位置"
|
||||
msgid "Powered by"
|
||||
msgstr "技术支持:"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr "由 <0>Simple Icons</0> 支持"
|
||||
|
||||
@ -1194,7 +1194,7 @@ msgstr "物美价廉。"
|
||||
msgid "Rounded"
|
||||
msgstr "圆角"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
|
||||
@ -1222,7 +1222,7 @@ msgstr "搜索字体子集"
|
||||
msgid "Search for a font variant"
|
||||
msgstr "搜索字体变体"
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr "搜索语言"
|
||||
|
||||
@ -1370,10 +1370,10 @@ msgstr "已存储"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
@ -1435,7 +1435,7 @@ msgstr "主题"
|
||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||
msgstr "连接浏览器时出现错误。请确保谷歌浏览器正在运行并可连接。"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:127
|
||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||
msgstr "单击浮动工具栏中的撤消按钮即可恢复此操作。"
|
||||
|
||||
@ -1531,7 +1531,7 @@ msgstr "解锁简历将允许您再次对其进行更改。"
|
||||
msgid "Unverified"
|
||||
msgstr "未验证"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||
msgid "Update an existing item"
|
||||
msgstr "更新现有项目"
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr "用户没有关联的“秘密”记录。请在 GitHub 上报告此问题。"
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr "用户名"
|
||||
@ -1613,11 +1613,11 @@ msgstr "我们验证您的电子邮件地址只是为了确保在您忘记密码
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
@ -1629,10 +1629,10 @@ msgstr "网站"
|
||||
msgid "What's new in the latest version"
|
||||
msgstr "最新版本的新功能"
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:112
|
||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||
msgstr "您可以通过用逗号或回车分隔来添加多个关键字。"
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Language: zh\n"
|
||||
"Project-Id-Version: reactive-resume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-01-11 00:08\n"
|
||||
"PO-Revision-Date: 2024-03-22 10:29\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Chinese Traditional\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
@ -150,7 +150,7 @@ msgstr ""
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:115
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:125
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr ""
|
||||
|
||||
@ -235,7 +235,7 @@ msgstr ""
|
||||
msgid "By the community, for the community."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:155
|
||||
#: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:135
|
||||
@ -318,7 +318,7 @@ msgstr ""
|
||||
msgid "Copy to Clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:168
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:243
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
@ -328,7 +328,7 @@ msgstr ""
|
||||
msgid "Create a new account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:156
|
||||
msgid "Create a new item"
|
||||
msgstr ""
|
||||
|
||||
@ -377,15 +377,15 @@ msgstr ""
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:85
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:110
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:72
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:80
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67
|
||||
msgid "Date or Date Range"
|
||||
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:134
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:157
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:148
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:134
|
||||
@ -398,11 +398,11 @@ msgstr ""
|
||||
msgid "Delete Account"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:71
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:58
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:66
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:63
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
@ -462,7 +462,7 @@ msgstr ""
|
||||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:170
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:245
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:132
|
||||
#: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:102
|
||||
@ -470,7 +470,7 @@ msgstr ""
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158
|
||||
msgid "Duplicate an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -655,7 +655,7 @@ msgid "Here, you can update your profile to customize and personalize your exper
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:90
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185
|
||||
msgid "Hidden"
|
||||
msgstr ""
|
||||
@ -686,7 +686,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>."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:96
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
@ -788,10 +788,10 @@ msgstr ""
|
||||
msgid "JSON"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:149
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:63
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:130
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:107
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
@ -823,7 +823,7 @@ msgid "Letter"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:77
|
||||
msgid "Level"
|
||||
msgstr ""
|
||||
|
||||
@ -852,7 +852,7 @@ msgstr ""
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:99
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83
|
||||
@ -900,7 +900,7 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:82
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69
|
||||
msgid "March 2023 - Present"
|
||||
msgstr ""
|
||||
@ -914,13 +914,13 @@ msgid "MIT License"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:106
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:40
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:57
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:48
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:36
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:44
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:52
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:41
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:49
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:43
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152
|
||||
msgid "Name"
|
||||
@ -931,7 +931,7 @@ msgctxt "Name of the Certification"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:53
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "New Password"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:43
|
||||
#: apps/client/src/components/locale-combobox.tsx:45
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@ -993,7 +993,7 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:46
|
||||
#: apps/client/src/pages/auth/layout.tsx:47
|
||||
msgctxt "The user can either login with email/password, or continue with GitHub or Google."
|
||||
msgid "or continue with"
|
||||
msgstr ""
|
||||
@ -1030,7 +1030,7 @@ msgstr ""
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/layout.tsx:75
|
||||
#: apps/client/src/pages/auth/layout.tsx:76
|
||||
msgid "Photograph by Patrick Tomasso"
|
||||
msgstr ""
|
||||
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
msgid "Powered by"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:115
|
||||
msgid "Powered by <0>Simple Icons</0>"
|
||||
msgstr ""
|
||||
|
||||
@ -1194,7 +1194,7 @@ msgstr ""
|
||||
msgid "Rounded"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:169
|
||||
#: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:244
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:125
|
||||
@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Search for a font variant"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/components/locale-combobox.tsx:41
|
||||
#: apps/client/src/components/locale-combobox.tsx:42
|
||||
msgid "Search for a language"
|
||||
msgstr ""
|
||||
|
||||
@ -1370,10 +1370,10 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:123
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:138
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:114
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:108
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:95
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109
|
||||
@ -1435,7 +1435,7 @@ msgstr ""
|
||||
msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable."
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:127
|
||||
msgid "This action can be reverted by clicking on the undo button in the floating toolbar."
|
||||
msgstr ""
|
||||
|
||||
@ -1531,7 +1531,7 @@ msgstr ""
|
||||
msgid "Unverified"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147
|
||||
#: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:157
|
||||
msgid "Update an existing item"
|
||||
msgstr ""
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgid "User does not have an associated 'secrets' record. Please report this iss
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/auth/register/page.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
@ -1613,11 +1613,11 @@ msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:109
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:113
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:124
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:100
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:86
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82
|
||||
#: 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/references.tsx:67
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95
|
||||
@ -1629,10 +1629,10 @@ msgstr ""
|
||||
msgid "What's new in the latest version"
|
||||
msgstr ""
|
||||
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:154
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:68
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:135
|
||||
#: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:112
|
||||
msgid "You can add multiple keywords by separating them with a comma or pressing enter."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -14,7 +14,7 @@ export const SocialAuth = () => {
|
||||
{providers.includes("github") && (
|
||||
<Button asChild size="lg" className="w-full !bg-[#222] !text-white hover:!bg-[#222]/80">
|
||||
<a href="/api/auth/github">
|
||||
<GithubLogo className="mr-3 h-4 w-4" />
|
||||
<GithubLogo className="mr-3 size-4" />
|
||||
{t`GitHub`}
|
||||
</a>
|
||||
</Button>
|
||||
@ -27,7 +27,7 @@ export const SocialAuth = () => {
|
||||
className="w-full !bg-[#4285F4] !text-white hover:!bg-[#4285F4]/80"
|
||||
>
|
||||
<a href="/api/auth/google">
|
||||
<GoogleLogo className="mr-3 h-4 w-4" />
|
||||
<GoogleLogo className="mr-3 size-4" />
|
||||
{t`Google`}
|
||||
</a>
|
||||
</Button>
|
||||
|
||||
@ -23,10 +23,11 @@ export const AuthLayout = () => {
|
||||
const hideDivider = !providers.includes("email") || providers.length === 1;
|
||||
|
||||
return (
|
||||
// eslint-disable-next-line tailwindcss/enforces-shorthand -- size-screen not implemented yet
|
||||
<div className="flex h-screen w-screen">
|
||||
<div className="relative flex w-full flex-col justify-center gap-y-8 px-12 sm:mx-auto sm:basis-[420px] sm:px-0 lg:basis-[480px] lg:px-12">
|
||||
<div className="flex items-center justify-between">
|
||||
<Link to="/" className="h-24 w-24">
|
||||
<Link to="/" className="size-24">
|
||||
<Logo className="-ml-3" size={96} />
|
||||
</Link>
|
||||
|
||||
|
||||
@ -12,11 +12,13 @@ import {
|
||||
FormMessage,
|
||||
Input,
|
||||
} from "@reactive-resume/ui";
|
||||
import { useForm } from "react-hook-form";
|
||||
import { ControllerRenderProps, useForm } from "react-hook-form";
|
||||
import { z } from "zod";
|
||||
|
||||
import { SectionDialog } from "../sections/shared/section-dialog";
|
||||
import { URLInput } from "../sections/shared/url-input";
|
||||
import { useDebounceValue } from "usehooks-ts";
|
||||
import { useCallback } from "react";
|
||||
|
||||
const formSchema = profileSchema;
|
||||
|
||||
@ -28,6 +30,18 @@ export const ProfilesDialog = () => {
|
||||
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 (
|
||||
<SectionDialog<FormValues> id="profiles" form={form} defaultValues={defaultProfile}>
|
||||
<div className="grid grid-cols-1 gap-4 sm:grid-cols-2">
|
||||
@ -82,15 +96,18 @@ export const ProfilesDialog = () => {
|
||||
<FormLabel htmlFor="iconSlug">{t`Icon`}</FormLabel>
|
||||
<FormControl>
|
||||
<div className="flex items-center gap-x-2">
|
||||
<Avatar className="h-8 w-8 bg-white">
|
||||
{field.value && (
|
||||
<Avatar className="size-8 bg-white">
|
||||
{iconSrc && (
|
||||
<AvatarImage
|
||||
className="p-1.5"
|
||||
src={`https://cdn.simpleicons.org/${field.value}`}
|
||||
src={iconSrc}
|
||||
/>
|
||||
)}
|
||||
</Avatar>
|
||||
<Input {...field} id="iconSlug" placeholder="linkedin" />
|
||||
<Input {...field} id="iconSlug" placeholder="linkedin" onChange={(event) => {
|
||||
field.onChange(event)
|
||||
handleIconChange(event)
|
||||
}} />
|
||||
</div>
|
||||
</FormControl>
|
||||
<FormMessage />
|
||||
|
||||
@ -43,7 +43,7 @@ export const LeftSidebar = () => {
|
||||
return (
|
||||
<div className="flex bg-secondary-accent/30">
|
||||
<div className="hidden basis-12 flex-col items-center justify-between bg-secondary-accent/30 py-4 sm:flex">
|
||||
<Button asChild size="icon" variant="ghost" className="h-8 w-8 rounded-full">
|
||||
<Button asChild size="icon" variant="ghost" className="size-8 rounded-full">
|
||||
<Link to="/dashboard">
|
||||
<Icon size={14} />
|
||||
</Link>
|
||||
|
||||
@ -93,7 +93,7 @@ export const PictureOptions = () => {
|
||||
>
|
||||
<Tooltip content={t`Square`}>
|
||||
<ToggleGroupItem value="square">
|
||||
<div className="h-3 w-3 border border-foreground" />
|
||||
<div className="size-3 border border-foreground" />
|
||||
</ToggleGroupItem>
|
||||
</Tooltip>
|
||||
|
||||
@ -136,19 +136,19 @@ export const PictureOptions = () => {
|
||||
>
|
||||
<Tooltip content={t`Square`}>
|
||||
<ToggleGroupItem value="square">
|
||||
<div className="h-3 w-3 border border-foreground" />
|
||||
<div className="size-3 border border-foreground" />
|
||||
</ToggleGroupItem>
|
||||
</Tooltip>
|
||||
|
||||
<Tooltip content={t`Rounded`}>
|
||||
<ToggleGroupItem value="rounded">
|
||||
<div className="h-3 w-3 rounded-sm border border-foreground" />
|
||||
<div className="size-3 rounded-sm border border-foreground" />
|
||||
</ToggleGroupItem>
|
||||
</Tooltip>
|
||||
|
||||
<Tooltip content={t`Circle`}>
|
||||
<ToggleGroupItem value="circle">
|
||||
<div className="h-3 w-3 rounded-full border border-foreground" />
|
||||
<div className="size-3 rounded-full border border-foreground" />
|
||||
</ToggleGroupItem>
|
||||
</Tooltip>
|
||||
</ToggleGroup>
|
||||
|
||||
@ -50,7 +50,7 @@ export const PictureSection = () => {
|
||||
return (
|
||||
<div className="flex items-center gap-x-4">
|
||||
<div className="group relative cursor-pointer" onClick={onAvatarClick}>
|
||||
<Avatar className="h-14 w-14 bg-secondary">
|
||||
<Avatar className="size-14 bg-secondary">
|
||||
<AvatarImage src={picture.url} />
|
||||
</Avatar>
|
||||
|
||||
|
||||
@ -71,7 +71,7 @@ export const SectionIcon = ({ id, name, icon, ...props }: SectionIconProps) => {
|
||||
|
||||
return (
|
||||
<Tooltip side="right" content={name ?? section.name}>
|
||||
<Button size="icon" variant="ghost" className="h-8 w-8 rounded-full" {...props}>
|
||||
<Button size="icon" variant="ghost" className="size-8 rounded-full" {...props}>
|
||||
{icon ?? getSectionIcon(id, { size: 14 })}
|
||||
</Button>
|
||||
</Tooltip>
|
||||
|
||||
@ -242,7 +242,7 @@ export const LayoutSection = () => {
|
||||
<Button
|
||||
size="icon"
|
||||
variant="ghost"
|
||||
className="h-8 w-8"
|
||||
className="size-8"
|
||||
onClick={() => onRemovePage(pageIndex)}
|
||||
>
|
||||
<TrashSimple size={12} className="text-error" />
|
||||
|
||||
@ -30,11 +30,11 @@ export const ThemeSection = () => {
|
||||
setValue("metadata.theme.primary", color);
|
||||
}}
|
||||
className={cn(
|
||||
"flex h-6 w-6 cursor-pointer items-center justify-center rounded-full ring-primary ring-offset-1 ring-offset-background transition-shadow hover:ring-1",
|
||||
"flex size-6 cursor-pointer items-center justify-center rounded-full ring-primary ring-offset-1 ring-offset-background transition-shadow hover:ring-1",
|
||||
theme.primary === color && "ring-1",
|
||||
)}
|
||||
>
|
||||
<div className="h-5 w-5 rounded-full" style={{ backgroundColor: color }} />
|
||||
<div className="size-5 rounded-full" style={{ backgroundColor: color }} />
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
@ -45,7 +45,7 @@ export const ThemeSection = () => {
|
||||
<Popover>
|
||||
<PopoverTrigger asChild>
|
||||
<div
|
||||
className="absolute inset-y-0 left-3 my-2.5 h-4 w-4 cursor-pointer rounded-full ring-primary ring-offset-2 ring-offset-background transition-shadow hover:ring-1"
|
||||
className="absolute inset-y-0 left-3 my-2.5 size-4 cursor-pointer rounded-full ring-primary ring-offset-2 ring-offset-background transition-shadow hover:ring-1"
|
||||
style={{ backgroundColor: theme.primary }}
|
||||
/>
|
||||
</PopoverTrigger>
|
||||
@ -75,11 +75,11 @@ export const ThemeSection = () => {
|
||||
<Popover>
|
||||
<PopoverTrigger asChild>
|
||||
<div
|
||||
className="absolute inset-y-0 left-3 my-2.5 h-4 w-4 cursor-pointer rounded-full ring-primary ring-offset-2 ring-offset-background transition-shadow hover:ring-1"
|
||||
className="absolute inset-y-0 left-3 my-2.5 size-4 cursor-pointer rounded-full ring-primary ring-offset-2 ring-offset-background transition-shadow hover:ring-1"
|
||||
style={{ backgroundColor: theme.background }}
|
||||
/>
|
||||
</PopoverTrigger>
|
||||
<PopoverContent asChild className="rounded-lg border-none bg-transparent p-0">
|
||||
<PopoverContent className="rounded-lg border-none bg-transparent p-0">
|
||||
<HexColorPicker
|
||||
color={theme.background}
|
||||
onChange={(color) => {
|
||||
@ -105,11 +105,11 @@ export const ThemeSection = () => {
|
||||
<Popover>
|
||||
<PopoverTrigger asChild>
|
||||
<div
|
||||
className="absolute inset-y-0 left-3 my-2.5 h-4 w-4 cursor-pointer rounded-full ring-primary ring-offset-2 ring-offset-background transition-shadow hover:ring-1"
|
||||
className="absolute inset-y-0 left-3 my-2.5 size-4 cursor-pointer rounded-full ring-primary ring-offset-2 ring-offset-background transition-shadow hover:ring-1"
|
||||
style={{ backgroundColor: theme.text }}
|
||||
/>
|
||||
</PopoverTrigger>
|
||||
<PopoverContent asChild className="rounded-lg border-none bg-transparent p-0">
|
||||
<PopoverContent className="rounded-lg border-none bg-transparent p-0">
|
||||
<HexColorPicker
|
||||
color={theme.text}
|
||||
onChange={(color) => {
|
||||
|
||||
@ -66,7 +66,7 @@ type SectionIconProps = ButtonProps & {
|
||||
|
||||
export const SectionIcon = ({ id, name, icon, ...props }: SectionIconProps) => (
|
||||
<Tooltip side="left" content={name}>
|
||||
<Button size="icon" variant="ghost" className="h-8 w-8 rounded-full" {...props}>
|
||||
<Button size="icon" variant="ghost" className="size-8 rounded-full" {...props}>
|
||||
{icon ?? getSectionIcon(id, { size: 14 })}
|
||||
</Button>
|
||||
</Tooltip>
|
||||
|
||||
@ -21,7 +21,7 @@ const ActiveIndicator = ({ className }: Props) => (
|
||||
initial={{ opacity: 0, x: -20 }}
|
||||
animate={{ opacity: 1, x: 0 }}
|
||||
className={cn(
|
||||
"h-1.5 w-1.5 animate-pulse rounded-full bg-info shadow-[0_0_12px] shadow-info",
|
||||
"size-1.5 animate-pulse rounded-full bg-info shadow-[0_0_12px] shadow-info",
|
||||
className,
|
||||
)}
|
||||
/>
|
||||
@ -98,7 +98,7 @@ export const Sidebar = ({ setOpen }: SidebarProps) => {
|
||||
return (
|
||||
<div className="flex h-full flex-col gap-y-4">
|
||||
<div className="ml-12 flex justify-center lg:ml-0">
|
||||
<Button asChild size="icon" variant="ghost" className="h-10 w-10 p-0">
|
||||
<Button asChild size="icon" variant="ghost" className="size-10 p-0">
|
||||
<Link to="/">
|
||||
<Icon size={24} className="mx-auto hidden lg:block" />
|
||||
</Link>
|
||||
|
||||
@ -72,7 +72,7 @@ type ValidationResult =
|
||||
export const ImportDialog = () => {
|
||||
const { toast } = useToast();
|
||||
const { isOpen, close } = useDialog("import");
|
||||
const { importResume, loading, error: importError } = useImportResume();
|
||||
const { importResume, loading } = useImportResume();
|
||||
|
||||
const [validationResult, setValidationResult] = useState<ValidationResult | null>(null);
|
||||
|
||||
@ -182,11 +182,11 @@ export const ImportDialog = () => {
|
||||
}
|
||||
|
||||
close();
|
||||
} catch (error) {
|
||||
} catch (error: unknown) {
|
||||
toast({
|
||||
variant: "error",
|
||||
title: t`Oops, the server returned an error.`,
|
||||
description: importError?.message,
|
||||
description: error instanceof Error ? error.message : undefined,
|
||||
});
|
||||
}
|
||||
};
|
||||
@ -256,7 +256,7 @@ export const ImportDialog = () => {
|
||||
<FormControl>
|
||||
<Input
|
||||
type="file"
|
||||
key={accept}
|
||||
key={`${accept}-${filetype}`}
|
||||
accept={accept}
|
||||
onChange={(event) => {
|
||||
if (!event.target.files || !event.target.files.length) return;
|
||||
@ -291,7 +291,7 @@ export const ImportDialog = () => {
|
||||
|
||||
<DialogFooter>
|
||||
<AnimatePresence presenceAffectsLayout>
|
||||
{(!validationResult ?? false) && (
|
||||
{(!validationResult || false) && (
|
||||
<Button type="button" onClick={onValidate}>
|
||||
{t`Validate`}
|
||||
</Button>
|
||||
|
||||
@ -87,7 +87,7 @@ export const ResumeCard = ({ resume }: Props) => {
|
||||
animate={{ opacity: 1 }}
|
||||
loading="lazy"
|
||||
alt={resume.title}
|
||||
className="h-full w-full object-cover"
|
||||
className="size-full object-cover"
|
||||
src={`${url}?cache=${new Date().getTime()}`}
|
||||
/>
|
||||
)}
|
||||
|
||||
@ -19,12 +19,12 @@ export const BaseListItem = ({ title, description, start, end, className, onClic
|
||||
>
|
||||
<div className="flex w-full items-center justify-between">
|
||||
<div className="flex items-center space-x-4">
|
||||
<div className="flex h-5 w-5 items-center justify-center">{start}</div>
|
||||
<div className="flex size-5 items-center justify-center">{start}</div>
|
||||
<h4 className="w-[220px] truncate font-medium lg:w-[320px]">{title}</h4>
|
||||
<p className="hidden text-xs opacity-75 sm:block">{description}</p>
|
||||
</div>
|
||||
|
||||
{end && <div className="flex h-5 w-5 items-center justify-center">{end}</div>}
|
||||
{end && <div className="flex size-5 items-center justify-center">{end}</div>}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
|
||||
@ -36,11 +36,11 @@ export const ResumesPage = () => {
|
||||
</motion.h1>
|
||||
|
||||
<TabsList>
|
||||
<TabsTrigger value="grid" className="h-8 w-8 p-0 sm:h-8 sm:w-auto sm:px-4">
|
||||
<TabsTrigger value="grid" className="size-8 p-0 sm:h-8 sm:w-auto sm:px-4">
|
||||
<SquaresFour />
|
||||
<span className="ml-2 hidden sm:block">{t`Grid`}</span>
|
||||
</TabsTrigger>
|
||||
<TabsTrigger value="list" className="h-8 w-8 p-0 sm:h-8 sm:w-auto sm:px-4">
|
||||
<TabsTrigger value="list" className="size-8 p-0 sm:h-8 sm:w-auto sm:px-4">
|
||||
<List />
|
||||
<span className="ml-2 hidden sm:block">{t`List`}</span>
|
||||
</TabsTrigger>
|
||||
|
||||
@ -178,7 +178,7 @@ export const TwoFactorDialog = () => {
|
||||
<FormItem>
|
||||
<FormControl>
|
||||
<div className="space-y-4">
|
||||
<QRCodeSVG value={field.value!} size={256} className="mx-auto" />
|
||||
<QRCodeSVG value={field.value ?? ""} size={256} className="mx-auto" />
|
||||
<Input readOnly {...field} className="opacity-75" />
|
||||
</div>
|
||||
</FormControl>
|
||||
|
||||
23
apps/client/src/pages/home/components/donation-banner.tsx
Normal file
23
apps/client/src/pages/home/components/donation-banner.tsx
Normal file
@ -0,0 +1,23 @@
|
||||
/* eslint-disable lingui/no-unlocalized-strings */
|
||||
|
||||
import { HandHeart } from "@phosphor-icons/react";
|
||||
import { motion } from "framer-motion";
|
||||
|
||||
export const DonationBanner = () => {
|
||||
return (
|
||||
<a href="https://opencollective.com/Reactive-Resume" target="_blank" rel="noreferrer">
|
||||
<motion.div
|
||||
whileHover={{ height: 48 }}
|
||||
initial={{ opacity: 0, y: -50, height: 32 }}
|
||||
animate={{ opacity: 1, y: 0, transition: { duration: 0.3 } }}
|
||||
className="flex w-screen items-center justify-center gap-x-2 bg-zinc-800 text-xs font-bold leading-relaxed text-zinc-50"
|
||||
>
|
||||
<HandHeart weight="bold" size={14} className="shrink-0" />
|
||||
<span>
|
||||
If this project has helped you, please consider donating to Reactive Resume as we're
|
||||
running out of server resources with the increasing number of users.
|
||||
</span>
|
||||
</motion.div>
|
||||
</a>
|
||||
);
|
||||
};
|
||||
@ -23,7 +23,24 @@ export const Footer = () => (
|
||||
<Copyright className="mt-6" />
|
||||
</div>
|
||||
|
||||
<div className="relative col-start-4">
|
||||
<div className="relative col-start-4 flex flex-col items-end justify-end">
|
||||
<div className="mb-14">
|
||||
<a href="https://www.digitalocean.com/?utm_medium=opensource&utm_source=Reactive-Resume">
|
||||
<img
|
||||
src="https://opensource.nyc3.cdn.digitaloceanspaces.com/attribution/assets/PoweredByDO/DO_Powered_by_Badge_black.svg"
|
||||
alt="Powered by DigitalOcean"
|
||||
className="block dark:hidden"
|
||||
width="150px"
|
||||
/>
|
||||
<img
|
||||
src="https://opensource.nyc3.cdn.digitaloceanspaces.com/attribution/assets/PoweredByDO/DO_Powered_by_Badge_white.svg"
|
||||
alt="Powered by DigitalOcean"
|
||||
className="hidden dark:block"
|
||||
width="150px"
|
||||
/>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div className="absolute bottom-0 right-0 lg:space-x-2">
|
||||
<LocaleSwitch />
|
||||
<ThemeSwitch />
|
||||
|
||||
@ -3,7 +3,7 @@ import { Link } from "react-router-dom";
|
||||
|
||||
import { Logo } from "@/client/components/logo";
|
||||
|
||||
import { ProductHuntBanner } from "./product-hunt-banner";
|
||||
import { DonationBanner } from "./donation-banner";
|
||||
|
||||
export const Header = () => (
|
||||
<motion.header
|
||||
@ -11,7 +11,7 @@ export const Header = () => (
|
||||
initial={{ opacity: 0, y: -50 }}
|
||||
animate={{ opacity: 1, y: 0, transition: { delay: 0.3, duration: 0.3 } }}
|
||||
>
|
||||
<ProductHuntBanner />
|
||||
<DonationBanner />
|
||||
|
||||
<div className="bg-gradient-to-b from-background to-transparent py-3">
|
||||
<div className="container flex items-center justify-between">
|
||||
|
||||
@ -1,31 +0,0 @@
|
||||
/* eslint-disable lingui/no-unlocalized-strings */
|
||||
|
||||
import { RocketLaunch } from "@phosphor-icons/react";
|
||||
import dayjs from "dayjs";
|
||||
import { motion } from "framer-motion";
|
||||
|
||||
export const ProductHuntBanner = () => {
|
||||
const timezonePST = "America/Los_Angeles";
|
||||
|
||||
const startTime = dayjs.tz("2023-11-24 00:01", timezonePST);
|
||||
const endTime = dayjs.tz("2023-11-25 00:00", timezonePST);
|
||||
const currentTime = dayjs().tz(timezonePST);
|
||||
|
||||
const isLaunchDay = currentTime.isAfter(startTime) && currentTime.isBefore(endTime);
|
||||
|
||||
if (!isLaunchDay) return null;
|
||||
|
||||
return (
|
||||
<a href="https://www.producthunt.com/posts/reactive-resume-v4" target="_blank" rel="noreferrer">
|
||||
<motion.div
|
||||
initial={{ opacity: 0, y: -50, height: 32 }}
|
||||
animate={{ opacity: 1, y: 0, transition: { delay: 0.9, duration: 0.3 } }}
|
||||
whileHover={{ height: 48 }}
|
||||
className="flex w-screen items-center justify-center gap-x-1.5 bg-orange-600 text-xs font-bold leading-relaxed text-orange-50"
|
||||
>
|
||||
<RocketLaunch weight="bold" size={12} />
|
||||
<span>Support Reactive Resume on Product Hunt today!</span>
|
||||
</motion.div>
|
||||
</a>
|
||||
);
|
||||
};
|
||||
@ -2,7 +2,7 @@ export const Decoration = {
|
||||
Grid: () => (
|
||||
<svg
|
||||
aria-hidden="true"
|
||||
className="absolute inset-0 -z-10 h-full w-full stroke-foreground/10 opacity-60 [mask-image:radial-gradient(100%_100%_at_top_right,white,transparent)] dark:opacity-40"
|
||||
className="absolute inset-0 -z-10 size-full stroke-foreground/10 opacity-60 [mask-image:radial-gradient(100%_100%_at_top_right,white,transparent)] dark:opacity-40"
|
||||
>
|
||||
<defs>
|
||||
<pattern
|
||||
|
||||
@ -9,9 +9,9 @@ type Statistic = {
|
||||
|
||||
export const StatisticsSection = () => {
|
||||
const stats: Statistic[] = [
|
||||
{ name: t`GitHub Stars`, value: 12800 },
|
||||
{ name: t`Users Signed Up`, value: 300000 },
|
||||
{ name: t`Resumes Generated`, value: 400000 },
|
||||
{ name: t`GitHub Stars`, value: 19500 },
|
||||
{ name: t`Users Signed Up`, value: 500000 },
|
||||
{ name: t`Resumes Generated`, value: 700000 },
|
||||
];
|
||||
|
||||
return (
|
||||
|
||||
@ -18,12 +18,8 @@ export const LocaleProvider = ({ children }: Props) => {
|
||||
const userLocale = useAuthStore((state) => state.user?.locale);
|
||||
|
||||
useEffect(() => {
|
||||
const detectedLocale = detect(
|
||||
fromUrl("locale"),
|
||||
fromStorage("locale"),
|
||||
userLocale,
|
||||
defaultLocale,
|
||||
)!;
|
||||
const detectedLocale =
|
||||
detect(fromUrl("locale"), fromStorage("locale"), userLocale, defaultLocale) ?? defaultLocale;
|
||||
|
||||
// Activate the locale only if it's supported
|
||||
if (languages.some((lang) => lang.locale === detectedLocale)) {
|
||||
|
||||
@ -10,7 +10,7 @@ export const findResumeStatisticsById = async (data: { id: string }) => {
|
||||
return response.data;
|
||||
};
|
||||
|
||||
export const useResumeStatistics = (id: string, enabled: boolean = false) => {
|
||||
export const useResumeStatistics = (id: string, enabled = false) => {
|
||||
const {
|
||||
error,
|
||||
isPending: loading,
|
||||
|
||||
1
apps/client/src/vite-env.d.ts
vendored
1
apps/client/src/vite-env.d.ts
vendored
@ -2,6 +2,7 @@
|
||||
|
||||
declare const appVersion: string;
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-empty-interface
|
||||
interface ImportMetaEnv {}
|
||||
|
||||
interface ImportMeta {
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
|
||||
import { lingui } from "@lingui/vite-plugin";
|
||||
import { nxViteTsPaths } from "@nx/vite/plugins/nx-tsconfig-paths.plugin";
|
||||
import react from "@vitejs/plugin-react-swc";
|
||||
import react from "@vitejs/plugin-react";
|
||||
import { defineConfig, searchForWorkspaceRoot, splitVendorChunkPlugin } from "vite";
|
||||
|
||||
export default defineConfig({
|
||||
@ -32,7 +32,9 @@ export default defineConfig({
|
||||
|
||||
plugins: [
|
||||
react({
|
||||
plugins: [["@lingui/swc-plugin", {}]],
|
||||
babel: {
|
||||
plugins: ["macros"],
|
||||
},
|
||||
}),
|
||||
lingui(),
|
||||
nxViteTsPaths(),
|
||||
|
||||
@ -48,7 +48,7 @@ export class AuthController {
|
||||
private readonly utils: UtilsService,
|
||||
) {}
|
||||
|
||||
private async exchangeToken(id: string, email: string, isTwoFactorAuth: boolean = false) {
|
||||
private async exchangeToken(id: string, email: string, isTwoFactorAuth = false) {
|
||||
try {
|
||||
const payload = payloadSchema.parse({ id, isTwoFactorAuth });
|
||||
|
||||
@ -67,8 +67,8 @@ export class AuthController {
|
||||
private async handleAuthenticationResponse(
|
||||
user: UserWithSecrets,
|
||||
response: Response,
|
||||
isTwoFactorAuth: boolean = false,
|
||||
redirect: boolean = false,
|
||||
isTwoFactorAuth = false,
|
||||
redirect = false,
|
||||
) {
|
||||
let status = "authenticated";
|
||||
|
||||
|
||||
@ -31,10 +31,12 @@ export class GitHubStrategy extends PassportStrategy(Strategy, "github") {
|
||||
|
||||
let user: User | null = null;
|
||||
|
||||
if (!email) throw new BadRequestException();
|
||||
if (!email || !username) throw new BadRequestException();
|
||||
|
||||
try {
|
||||
const user = await this.userService.findOneByIdentifier(email);
|
||||
const user =
|
||||
(await this.userService.findOneByIdentifier(email)) ||
|
||||
(await this.userService.findOneByIdentifier(username));
|
||||
|
||||
if (!user) throw new UnauthorizedException();
|
||||
|
||||
|
||||
@ -48,52 +48,42 @@ export class PrinterService {
|
||||
}
|
||||
|
||||
async printResume(resume: ResumeDto) {
|
||||
return this.utils.getCachedOrSet(
|
||||
`user:${resume.userId}:storage:resumes:${resume.id}`,
|
||||
async () => {
|
||||
const start = performance.now();
|
||||
const start = performance.now();
|
||||
|
||||
const url = await retry(() => this.generateResume(resume), {
|
||||
retries: 3,
|
||||
randomize: true,
|
||||
onRetry: (_, attempt) => {
|
||||
this.logger.log(`Retrying to print resume #${resume.id}, attempt #${attempt}`);
|
||||
},
|
||||
});
|
||||
|
||||
const duration = Number(performance.now() - start).toFixed(0);
|
||||
const numPages = resume.data.metadata.layout.length;
|
||||
|
||||
this.logger.debug(`Chrome took ${duration}ms to print ${numPages} page(s)`);
|
||||
|
||||
return url;
|
||||
const url = await retry(() => this.generateResume(resume), {
|
||||
retries: 3,
|
||||
randomize: true,
|
||||
onRetry: (_, attempt) => {
|
||||
this.logger.log(`Retrying to print resume #${resume.id}, attempt #${attempt}`);
|
||||
},
|
||||
);
|
||||
});
|
||||
|
||||
const duration = Number(performance.now() - start).toFixed(0);
|
||||
const numPages = resume.data.metadata.layout.length;
|
||||
|
||||
this.logger.debug(`Chrome took ${duration}ms to print ${numPages} page(s)`);
|
||||
|
||||
return url;
|
||||
}
|
||||
|
||||
async printPreview(resume: ResumeDto) {
|
||||
return this.utils.getCachedOrSet(
|
||||
`user:${resume.userId}:storage:previews:${resume.id}`,
|
||||
async () => {
|
||||
const start = performance.now();
|
||||
const start = performance.now();
|
||||
|
||||
const url = await retry(() => this.generatePreview(resume), {
|
||||
retries: 3,
|
||||
randomize: true,
|
||||
onRetry: (_, attempt) => {
|
||||
this.logger.log(
|
||||
`Retrying to generate preview of resume #${resume.id}, attempt #${attempt}`,
|
||||
);
|
||||
},
|
||||
});
|
||||
|
||||
const duration = Number(performance.now() - start).toFixed(0);
|
||||
|
||||
this.logger.debug(`Chrome took ${duration}ms to generate preview`);
|
||||
|
||||
return url;
|
||||
const url = await retry(() => this.generatePreview(resume), {
|
||||
retries: 3,
|
||||
randomize: true,
|
||||
onRetry: (_, attempt) => {
|
||||
this.logger.log(
|
||||
`Retrying to generate preview of resume #${resume.id}, attempt #${attempt}`,
|
||||
);
|
||||
},
|
||||
);
|
||||
});
|
||||
|
||||
const duration = Number(performance.now() - start).toFixed(0);
|
||||
|
||||
this.logger.debug(`Chrome took ${duration}ms to generate preview`);
|
||||
|
||||
return url;
|
||||
}
|
||||
|
||||
async generateResume(resume: ResumeDto) {
|
||||
|
||||
@ -115,7 +115,7 @@ export class ResumeController {
|
||||
|
||||
@Patch(":id/lock")
|
||||
@UseGuards(TwoFactorGuard)
|
||||
lock(@User() user: UserEntity, @Param("id") id: string, @Body("set") set: boolean = true) {
|
||||
lock(@User() user: UserEntity, @Param("id") id: string, @Body("set") set = true) {
|
||||
return this.resumeService.lock(user.id, id, set);
|
||||
}
|
||||
|
||||
|
||||
@ -54,10 +54,10 @@ export class ResumeService {
|
||||
},
|
||||
});
|
||||
|
||||
await Promise.all([
|
||||
this.redis.del(`user:${userId}:resumes`),
|
||||
this.redis.set(`user:${userId}:resume:${resume.id}`, JSON.stringify(resume)),
|
||||
]);
|
||||
// await Promise.all([
|
||||
// this.redis.del(`user:${userId}:resumes`),
|
||||
// this.redis.set(`user:${userId}:resume:${resume.id}`, JSON.stringify(resume)),
|
||||
// ]);
|
||||
|
||||
return resume;
|
||||
}
|
||||
@ -75,37 +75,24 @@ export class ResumeService {
|
||||
},
|
||||
});
|
||||
|
||||
await Promise.all([
|
||||
this.redis.del(`user:${userId}:resumes`),
|
||||
this.redis.set(`user:${userId}:resume:${resume.id}`, JSON.stringify(resume)),
|
||||
]);
|
||||
// await Promise.all([
|
||||
// this.redis.del(`user:${userId}:resumes`),
|
||||
// this.redis.set(`user:${userId}:resume:${resume.id}`, JSON.stringify(resume)),
|
||||
// ]);
|
||||
|
||||
return resume;
|
||||
}
|
||||
|
||||
findAll(userId: string) {
|
||||
return this.utils.getCachedOrSet(`user:${userId}:resumes`, () =>
|
||||
this.prisma.resume.findMany({
|
||||
where: { userId },
|
||||
orderBy: { updatedAt: "desc" },
|
||||
}),
|
||||
);
|
||||
return this.prisma.resume.findMany({ where: { userId }, orderBy: { updatedAt: "desc" } });
|
||||
}
|
||||
|
||||
findOne(id: string, userId?: string) {
|
||||
if (userId) {
|
||||
return this.utils.getCachedOrSet(`user:${userId}:resume:${id}`, () =>
|
||||
this.prisma.resume.findUniqueOrThrow({
|
||||
where: { userId_id: { userId, id } },
|
||||
}),
|
||||
);
|
||||
return this.prisma.resume.findUniqueOrThrow({ where: { userId_id: { userId, id } } });
|
||||
}
|
||||
|
||||
return this.utils.getCachedOrSet(`user:public:resume:${id}`, () =>
|
||||
this.prisma.resume.findUniqueOrThrow({
|
||||
where: { id },
|
||||
}),
|
||||
);
|
||||
return this.prisma.resume.findUniqueOrThrow({ where: { id } });
|
||||
}
|
||||
|
||||
async findOneStatistics(userId: string, id: string) {
|
||||
@ -149,12 +136,12 @@ export class ResumeService {
|
||||
where: { userId_id: { userId, id } },
|
||||
});
|
||||
|
||||
await Promise.all([
|
||||
this.redis.set(`user:${userId}:resume:${id}`, JSON.stringify(resume)),
|
||||
this.redis.del(`user:${userId}:resumes`),
|
||||
this.redis.del(`user:${userId}:storage:resumes:${id}`),
|
||||
this.redis.del(`user:${userId}:storage:previews:${id}`),
|
||||
]);
|
||||
// await Promise.all([
|
||||
// this.redis.set(`user:${userId}:resume:${id}`, JSON.stringify(resume)),
|
||||
// this.redis.del(`user:${userId}:resumes`),
|
||||
// this.redis.del(`user:${userId}:storage:resumes:${id}`),
|
||||
// this.redis.del(`user:${userId}:storage:previews:${id}`),
|
||||
// ]);
|
||||
|
||||
return resume;
|
||||
} catch (error) {
|
||||
@ -171,10 +158,10 @@ export class ResumeService {
|
||||
where: { userId_id: { userId, id } },
|
||||
});
|
||||
|
||||
await Promise.all([
|
||||
this.redis.set(`user:${userId}:resume:${id}`, JSON.stringify(resume)),
|
||||
this.redis.del(`user:${userId}:resumes`),
|
||||
]);
|
||||
// await Promise.all([
|
||||
// this.redis.set(`user:${userId}:resume:${id}`, JSON.stringify(resume)),
|
||||
// this.redis.del(`user:${userId}:resumes`),
|
||||
// ]);
|
||||
|
||||
return resume;
|
||||
}
|
||||
@ -182,8 +169,8 @@ export class ResumeService {
|
||||
async remove(userId: string, id: string) {
|
||||
await Promise.all([
|
||||
// Remove cached keys
|
||||
this.redis.del(`user:${userId}:resumes`),
|
||||
this.redis.del(`user:${userId}:resume:${id}`),
|
||||
// this.redis.del(`user:${userId}:resumes`),
|
||||
// this.redis.del(`user:${userId}:resume:${id}`),
|
||||
|
||||
// Remove files in storage, and their cached keys
|
||||
this.storageService.deleteObject(userId, "resumes", id),
|
||||
|
||||
1
compose-dev.yml
Symbolic link
1
compose-dev.yml
Symbolic link
@ -0,0 +1 @@
|
||||
./tools/compose/development.yml
|
||||
1
compose.yml
Symbolic link
1
compose.yml
Symbolic link
@ -0,0 +1 @@
|
||||
./tools/compose/simple.yml
|
||||
@ -9,7 +9,7 @@
|
||||
"access": "public"
|
||||
},
|
||||
"dependencies": {
|
||||
"@swc/helpers": "~0.5.2",
|
||||
"@swc/helpers": "~0.5.6",
|
||||
"nestjs-zod": "^3.0.0",
|
||||
"@reactive-resume/utils": "*",
|
||||
"@reactive-resume/schema": "*"
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user